From 9ce601aa8da545306f3d9ab20373a71e66e0d297 Mon Sep 17 00:00:00 2001 From: spasolreisa Date: Thu, 16 Apr 2026 14:26:52 +0800 Subject: [PATCH] initial --- .gitignore | 45 + .metadata | 30 + README.md | 17 + analysis_options.yaml | 28 + android/.gitignore | 14 + android/app/build.gradle.kts | 44 + android/app/src/debug/AndroidManifest.xml | 7 + android/app/src/main/AndroidManifest.xml | 48 + .../java/org/ast/unionapp/MainActivity.java | 6 + .../res/drawable-v21/launch_background.xml | 12 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values-night/styles.xml | 18 + android/app/src/main/res/values/styles.xml | 18 + android/app/src/profile/AndroidManifest.xml | 7 + android/build.gradle.kts | 25 + android/gradle.properties | 2 + .../gradle/wrapper/gradle-wrapper.properties | 5 + android/settings.gradle.kts | 26 + ios/.gitignore | 34 + ios/Flutter/AppFrameworkInfo.plist | 24 + ios/Flutter/Debug.xcconfig | 2 + ios/Flutter/Release.xcconfig | 2 + ios/Podfile | 43 + ios/Runner.xcodeproj/project.pbxproj | 620 +++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 101 + .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + ios/Runner/AppDelegate.swift | 16 + .../AppIcon.appiconset/Contents.json | 122 ++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 295 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 450 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 282 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 462 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 704 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 406 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 586 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 862 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 1674 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 762 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 1226 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 1418 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + ios/Runner/Base.lproj/LaunchScreen.storyboard | 37 + ios/Runner/Base.lproj/Main.storyboard | 26 + ios/Runner/Info.plist | 77 + ios/Runner/Runner-Bridging-Header.h | 1 + ios/Runner/SceneDelegate.swift | 6 + ios/RunnerTests/RunnerTests.swift | 12 + lib/home_screen.dart | 89 + lib/main.dart | 61 + lib/model/song_model.dart | 80 + lib/model/user_model.dart | 561 ++++++ lib/pages/home/home_page.dart | 430 +++++ lib/pages/map_page.dart | 248 +++ lib/pages/score/score_page.dart | 1351 ++++++++++++++ lib/pages/scorelist.dart | 15 + lib/pages/setting_page.dart | 31 + lib/pages/songlistpage.dart | 15 + lib/pages/user/login_page.dart | 317 ++++ lib/pages/user/userpage.dart | 1626 +++++++++++++++++ lib/providers/user_provider.dart | 196 ++ lib/service/recommendation_helper.dart | 0 lib/service/song_service.dart | 107 ++ lib/service/user_service.dart | 286 +++ lib/tool/encryption_util.dart | 50 + lib/tool/gradientText.dart | 117 ++ linux/.gitignore | 1 + linux/CMakeLists.txt | 128 ++ linux/flutter/CMakeLists.txt | 88 + linux/flutter/generated_plugin_registrant.cc | 15 + linux/flutter/generated_plugin_registrant.h | 15 + linux/flutter/generated_plugins.cmake | 25 + linux/runner/CMakeLists.txt | 26 + linux/runner/main.cc | 6 + linux/runner/my_application.cc | 148 ++ linux/runner/my_application.h | 21 + macos/.gitignore | 7 + macos/Flutter/Flutter-Debug.xcconfig | 2 + macos/Flutter/Flutter-Release.xcconfig | 2 + macos/Flutter/GeneratedPluginRegistrant.swift | 20 + macos/Podfile | 42 + macos/Podfile.lock | 48 + macos/Runner.xcodeproj/project.pbxproj | 801 ++++++++ .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 99 + .../contents.xcworkspacedata | 10 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + macos/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 68 + .../AppIcon.appiconset/app_icon_1024.png | Bin 0 -> 102994 bytes .../AppIcon.appiconset/app_icon_128.png | Bin 0 -> 5680 bytes .../AppIcon.appiconset/app_icon_16.png | Bin 0 -> 520 bytes .../AppIcon.appiconset/app_icon_256.png | Bin 0 -> 14142 bytes .../AppIcon.appiconset/app_icon_32.png | Bin 0 -> 1066 bytes .../AppIcon.appiconset/app_icon_512.png | Bin 0 -> 36406 bytes .../AppIcon.appiconset/app_icon_64.png | Bin 0 -> 2218 bytes macos/Runner/Base.lproj/MainMenu.xib | 343 ++++ macos/Runner/Configs/AppInfo.xcconfig | 14 + macos/Runner/Configs/Debug.xcconfig | 2 + macos/Runner/Configs/Release.xcconfig | 2 + macos/Runner/Configs/Warnings.xcconfig | 13 + macos/Runner/DebugProfile.entitlements | 16 + macos/Runner/Info.plist | 32 + macos/Runner/MainFlutterWindow.swift | 15 + macos/Runner/Release.entitlements | 8 + macos/RunnerTests/RunnerTests.swift | 12 + pubspec.lock | 946 ++++++++++ pubspec.yaml | 102 ++ temp.json | 1 + test/widget_test.dart | 30 + web/favicon.png | Bin 0 -> 917 bytes web/icons/Icon-192.png | Bin 0 -> 5292 bytes web/icons/Icon-512.png | Bin 0 -> 8252 bytes web/icons/Icon-maskable-192.png | Bin 0 -> 5594 bytes web/icons/Icon-maskable-512.png | Bin 0 -> 20998 bytes web/index.html | 46 + web/manifest.json | 35 + windows/.gitignore | 17 + windows/CMakeLists.txt | 108 ++ windows/flutter/CMakeLists.txt | 109 ++ .../flutter/generated_plugin_registrant.cc | 20 + windows/flutter/generated_plugin_registrant.h | 15 + windows/flutter/generated_plugins.cmake | 27 + windows/runner/CMakeLists.txt | 40 + windows/runner/Runner.rc | 121 ++ windows/runner/flutter_window.cpp | 71 + windows/runner/flutter_window.h | 33 + windows/runner/main.cpp | 43 + windows/runner/resource.h | 16 + windows/runner/resources/app_icon.ico | Bin 0 -> 33772 bytes windows/runner/runner.exe.manifest | 14 + windows/runner/utils.cpp | 65 + windows/runner/utils.h | 19 + windows/runner/win32_window.cpp | 288 +++ windows/runner/win32_window.h | 102 ++ 151 files changed, 11467 insertions(+) create mode 100644 .gitignore create mode 100644 .metadata create mode 100644 README.md create mode 100644 analysis_options.yaml create mode 100644 android/.gitignore create mode 100644 android/app/build.gradle.kts create mode 100644 android/app/src/debug/AndroidManifest.xml create mode 100644 android/app/src/main/AndroidManifest.xml create mode 100644 android/app/src/main/java/org/ast/unionapp/MainActivity.java create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 android/app/src/main/res/drawable/launch_background.xml create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 android/app/src/main/res/values-night/styles.xml create mode 100644 android/app/src/main/res/values/styles.xml create mode 100644 android/app/src/profile/AndroidManifest.xml create mode 100644 android/build.gradle.kts create mode 100644 android/gradle.properties create mode 100644 android/gradle/wrapper/gradle-wrapper.properties create mode 100644 android/settings.gradle.kts create mode 100644 ios/.gitignore create mode 100644 ios/Flutter/AppFrameworkInfo.plist create mode 100644 ios/Flutter/Debug.xcconfig create mode 100644 ios/Flutter/Release.xcconfig create mode 100644 ios/Podfile create mode 100644 ios/Runner.xcodeproj/project.pbxproj create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner/AppDelegate.swift create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 ios/Runner/Base.lproj/Main.storyboard create mode 100644 ios/Runner/Info.plist create mode 100644 ios/Runner/Runner-Bridging-Header.h create mode 100644 ios/Runner/SceneDelegate.swift create mode 100644 ios/RunnerTests/RunnerTests.swift create mode 100644 lib/home_screen.dart create mode 100644 lib/main.dart create mode 100644 lib/model/song_model.dart create mode 100644 lib/model/user_model.dart create mode 100644 lib/pages/home/home_page.dart create mode 100644 lib/pages/map_page.dart create mode 100644 lib/pages/score/score_page.dart create mode 100644 lib/pages/scorelist.dart create mode 100644 lib/pages/setting_page.dart create mode 100644 lib/pages/songlistpage.dart create mode 100644 lib/pages/user/login_page.dart create mode 100644 lib/pages/user/userpage.dart create mode 100644 lib/providers/user_provider.dart create mode 100644 lib/service/recommendation_helper.dart create mode 100644 lib/service/song_service.dart create mode 100644 lib/service/user_service.dart create mode 100644 lib/tool/encryption_util.dart create mode 100644 lib/tool/gradientText.dart create mode 100644 linux/.gitignore create mode 100644 linux/CMakeLists.txt create mode 100644 linux/flutter/CMakeLists.txt create mode 100644 linux/flutter/generated_plugin_registrant.cc create mode 100644 linux/flutter/generated_plugin_registrant.h create mode 100644 linux/flutter/generated_plugins.cmake create mode 100644 linux/runner/CMakeLists.txt create mode 100644 linux/runner/main.cc create mode 100644 linux/runner/my_application.cc create mode 100644 linux/runner/my_application.h create mode 100644 macos/.gitignore create mode 100644 macos/Flutter/Flutter-Debug.xcconfig create mode 100644 macos/Flutter/Flutter-Release.xcconfig create mode 100644 macos/Flutter/GeneratedPluginRegistrant.swift create mode 100644 macos/Podfile create mode 100644 macos/Podfile.lock create mode 100644 macos/Runner.xcodeproj/project.pbxproj create mode 100644 macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 macos/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 macos/Runner/AppDelegate.swift create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png create mode 100644 macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png create mode 100644 macos/Runner/Base.lproj/MainMenu.xib create mode 100644 macos/Runner/Configs/AppInfo.xcconfig create mode 100644 macos/Runner/Configs/Debug.xcconfig create mode 100644 macos/Runner/Configs/Release.xcconfig create mode 100644 macos/Runner/Configs/Warnings.xcconfig create mode 100644 macos/Runner/DebugProfile.entitlements create mode 100644 macos/Runner/Info.plist create mode 100644 macos/Runner/MainFlutterWindow.swift create mode 100644 macos/Runner/Release.entitlements create mode 100644 macos/RunnerTests/RunnerTests.swift create mode 100644 pubspec.lock create mode 100644 pubspec.yaml create mode 100644 temp.json create mode 100644 test/widget_test.dart create mode 100644 web/favicon.png create mode 100644 web/icons/Icon-192.png create mode 100644 web/icons/Icon-512.png create mode 100644 web/icons/Icon-maskable-192.png create mode 100644 web/icons/Icon-maskable-512.png create mode 100644 web/index.html create mode 100644 web/manifest.json create mode 100644 windows/.gitignore create mode 100644 windows/CMakeLists.txt create mode 100644 windows/flutter/CMakeLists.txt create mode 100644 windows/flutter/generated_plugin_registrant.cc create mode 100644 windows/flutter/generated_plugin_registrant.h create mode 100644 windows/flutter/generated_plugins.cmake create mode 100644 windows/runner/CMakeLists.txt create mode 100644 windows/runner/Runner.rc create mode 100644 windows/runner/flutter_window.cpp create mode 100644 windows/runner/flutter_window.h create mode 100644 windows/runner/main.cpp create mode 100644 windows/runner/resource.h create mode 100644 windows/runner/resources/app_icon.ico create mode 100644 windows/runner/runner.exe.manifest create mode 100644 windows/runner/utils.cpp create mode 100644 windows/runner/utils.h create mode 100644 windows/runner/win32_window.cpp create mode 100644 windows/runner/win32_window.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3820a95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.build/ +.buildlog/ +.history +.svn/ +.swiftpm/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins-dependencies +.pub-cache/ +.pub/ +/build/ +/coverage/ + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..c842be5 --- /dev/null +++ b/.metadata @@ -0,0 +1,30 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa + base_revision: 2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa + - platform: macos + create_revision: 2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa + base_revision: 2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/README.md b/README.md new file mode 100644 index 0000000..adcdfa9 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# unionapp + +mai chu app + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Learn Flutter](https://docs.flutter.dev/get-started/learn-flutter) +- [Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Flutter learning resources](https://docs.flutter.dev/reference/learning-resources) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..0d29021 --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,28 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at https://dart.dev/lints. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..be3943c --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,14 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts new file mode 100644 index 0000000..d8bb59e --- /dev/null +++ b/android/app/build.gradle.kts @@ -0,0 +1,44 @@ +plugins { + id("com.android.application") + id("kotlin-android") + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. + id("dev.flutter.flutter-gradle-plugin") +} + +android { + namespace = "org.ast.unionapp" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_17.toString() + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId = "org.ast.unionapp" + // You can update the following values to match your application needs. + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.getByName("debug") + } + } +} + +flutter { + source = "../.." +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..b5de554 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/java/org/ast/unionapp/MainActivity.java b/android/app/src/main/java/org/ast/unionapp/MainActivity.java new file mode 100644 index 0000000..5e4b88c --- /dev/null +++ b/android/app/src/main/java/org/ast/unionapp/MainActivity.java @@ -0,0 +1,6 @@ +package org.ast.unionapp; + +import io.flutter.embedding.android.FlutterActivity; + +public class MainActivity extends FlutterActivity { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c GIT binary patch literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 GIT binary patch literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle.kts b/android/build.gradle.kts new file mode 100644 index 0000000..3d87d7d --- /dev/null +++ b/android/build.gradle.kts @@ -0,0 +1,25 @@ +allprojects { + repositories { + google() + mavenCentral() + maven { url = uri("https://storage.googleapis.com/download.flutter.io") } + } +} + +val newBuildDir: Directory = + rootProject.layout.buildDirectory + .dir("../../build") + .get() +rootProject.layout.buildDirectory.value(newBuildDir) + +subprojects { + val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) + project.layout.buildDirectory.value(newSubprojectBuildDir) +} +subprojects { + project.evaluationDependsOn(":app") +} + +tasks.register("clean") { + delete(rootProject.layout.buildDirectory) +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..fbee1d8 --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e4ef43f --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip diff --git a/android/settings.gradle.kts b/android/settings.gradle.kts new file mode 100644 index 0000000..ca7fe06 --- /dev/null +++ b/android/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + val flutterSdkPath = + run { + val properties = java.util.Properties() + file("local.properties").inputStream().use { properties.load(it) } + val flutterSdkPath = properties.getProperty("flutter.sdk") + require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } + flutterSdkPath + } + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id("dev.flutter.flutter-plugin-loader") version "1.0.0" + id("com.android.application") version "8.11.1" apply false + id("org.jetbrains.kotlin.android") version "2.2.20" apply false +} + +include(":app") diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..391a902 --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..ec97fc6 --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..c4855bf --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000..620e46e --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,43 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '13.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a77c703 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,620 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..e3773d4 --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..c30b367 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,16 @@ +import Flutter +import UIKit + +@main +@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) { + GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..797d452e458972bab9d994556c8305db4c827017 GIT binary patch literal 406 zcmV;H0crk;P))>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed2d933e1120817fe9182483a228007b18ab6ae GIT binary patch literal 450 zcmV;z0X_bSP)iGWQ_5NJQ_~rNh*z)}eT%KUb z`7gNk0#AwF^#0T0?hIa^`~Ck;!}#m+_uT050aTR(J!bU#|IzRL%^UsMS#KsYnTF*!YeDOytlP4VhV?b} z%rz_<=#CPc)tU1MZTq~*2=8~iZ!lSa<{9b@2Jl;?IEV8)=fG217*|@)CCYgFze-x? zIFODUIA>nWKpE+bn~n7;-89sa>#DR>TSlqWk*!2hSN6D~Qb#VqbP~4Fk&m`@1$JGr zXPIdeRE&b2Thd#{MtDK$px*d3-Wx``>!oimf%|A-&-q*6KAH)e$3|6JV%HX{Hig)k suLT-RhftRq8b9;(V=235Wa|I=027H2wCDra;{X5v07*qoM6N<$f;9x^2LJ#7 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..4cd7b0099ca80c806f8fe495613e8d6c69460d76 GIT binary patch literal 282 zcmV+#0p(^bcu7P-R4C8Q z&e;xxFbF_Vrezo%_kH*OKhshZ6BFpG-Y1e10`QXJKbND7AMQ&cMj60B5TNObaZxYybcN07*qoM6N<$g3m;S%K!iX literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..fe730945a01f64a61e2235dbe3f45b08f7729182 GIT binary patch literal 462 zcmV;<0WtoGP)-}iV`2<;=$?g5M=KQbZ{F&YRNy7Nn@%_*5{gvDM0aKI4?ESmw z{NnZg)A0R`+4?NF_RZexyVB&^^ZvN!{I28tr{Vje;QNTz`dG&Jz0~Ek&f2;*Z7>B|cg}xYpxEFY+0YrKLF;^Q+-HreN0P{&i zK~zY`?b7ECf-n?@;d<&orQ*Q7KoR%4|C>{W^h6@&01>0SKS`dn{Q}GT%Qj_{PLZ_& zs`MFI#j-(>?bvdZ!8^xTwlY{qA)T4QLbY@j(!YJ7aXJervHy6HaG_2SB`6CC{He}f zHVw(fJWApwPq!6VY7r1w-Fs)@ox~N+q|w~e;JI~C4Vf^@d>Wvj=fl`^u9x9wd9 zR%3*Q+)t%S!MU_`id^@&Y{y7-r98lZX0?YrHlfmwb?#}^1b{8g&KzmkE(L>Z&)179 zp<)v6Y}pRl100G2FL_t(o!|l{-Q-VMg#&MKg7c{O0 z2wJImOS3Gy*Z2Qifdv~JYOp;v+U)a|nLoc7hNH;I$;lzDt$}rkaFw1mYK5_0Q(Sut zvbEloxON7$+HSOgC9Z8ltuC&0OSF!-mXv5caV>#bc3@hBPX@I$58-z}(ZZE!t-aOG zpjNkbau@>yEzH(5Yj4kZiMH32XI!4~gVXNnjAvRx;Sdg^`>2DpUEwoMhTs_st8pKG z(%SHyHdU&v%f36~uERh!bd`!T2dw;z6PrOTQ7Vt*#9F2uHlUVnb#ev_o^fh}Dzmq} zWtlk35}k=?xj28uO|5>>$yXadTUE@@IPpgH`gJ~Ro4>jd1IF|(+IX>8M4Ps{PNvmI zNj4D+XgN83gPt_Gm}`Ybv{;+&yu-C(Grdiahmo~BjG-l&mWM+{e5M1sm&=xduwgM9 z`8OEh`=F3r`^E{n_;%9weN{cf2%7=VzC@cYj+lg>+3|D|_1C@{hcU(DyQG_BvBWe? zvTv``=%b1zrol#=R`JB)>cdjpWt&rLJgVp-t?DREyuq1A%0Z4)6_WsQ7{nzjN zo!X zGXV)2i3kcZIL~_j>uIKPK_zib+3T+Nt3Mb&Br)s)UIaA}@p{wDda>7=Q|mGRp7pqY zkJ!7E{MNz$9nOwoVqpFb)}$IP24Wn2JJ=Cw(!`OXJBr45rP>>AQr$6c7slJWvbpNW z@KTwna6d?PP>hvXCcp=4F;=GR@R4E7{4VU^0p4F>v^#A|>07*qoM6N<$f*5nx ACIA2c literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..502f463a9bc882b461c96aadf492d1729e49e725 GIT binary patch literal 586 zcmV-Q0=4~#P)+}#`wDE{8-2Mebf5<{{PqV{TgVcv*r8?UZ3{-|G?_}T*&y;@cqf{ z{Q*~+qr%%p!1pS*_Uicl#q9lc(D`!D`LN62sNwq{oYw(Wmhk)k<@f$!$@ng~_5)Ru z0Z)trIA5^j{DIW^c+vT2%lW+2<(RtE2wR;4O@)Tm`Xr*?A(qYoM}7i5Yxw>D(&6ou zxz!_Xr~yNF+waPe00049Nkl*;a!v6h%{rlvIH#gW3s8p;bFr=l}mRqpW2h zw=OA%hdyL~z+UHOzl0eKhEr$YYOL-c-%Y<)=j?(bzDweB7{b+%_ypvm_cG{SvM=DK zhv{K@m>#Bw>2W$eUI#iU)Wdgs8Y3U+A$Gd&{+j)d)BmGKx+43U_!tik_YlN)>$7G! zhkE!s;%oku3;IwG3U^2kw?z+HM)jB{@zFhK8P#KMSytSthr+4!c(5c%+^UBn`0X*2 zy3(k600_CSZj?O$Qu%&$;|TGUJrptR(HzyIx>5E(2r{eA(<6t3e3I0B)7d6s7?Z5J zZ!rtKvA{MiEBm&KFtoifx>5P^Z=vl)95XJn()aS5%ad(s?4-=Tkis9IGu{`Fy8r+H07*qoM6N<$f20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec303439225b78712f49115768196d8d76f6790 GIT binary patch literal 862 zcmV-k1EKthP)20Z)wqMt%V?S?~D#06};F zA3KcL`Wb+>5ObvgQIG&ig8(;V04hz?@cqy3{mSh8o!|U|)cI!1_+!fWH@o*8vh^CU z^ws0;(c$gI+2~q^tO#GDHf@=;DncUw00J^eL_t(&-tE|HQ`%4vfZ;WsBqu-$0nu1R zq^Vj;p$clf^?twn|KHO+IGt^q#a3X?w9dXC@*yxhv&l}F322(8Y1&=P&I}~G@#h6; z1CV9ecD9ZEe87{{NtI*)_aJ<`kJa z?5=RBtFF50s;jQLFil-`)m2wrb=6h(&brpj%nG_U&ut~$?8Rokzxi8zJoWr#2dto5 zOX_URcc<1`Iky+jc;A%Vzx}1QU{2$|cKPom2Vf1{8m`vja4{F>HS?^Nc^rp}xo+Nh zxd}eOm`fm3@MQC1< zIk&aCjb~Yh%5+Yq0`)D;q{#-Uqlv*o+Oor zE!I71Z@ASH3grl8&P^L0WpavHoP|UX4e?!igT`4?AZk$hu*@%6WJ;zDOGlw7kj@ zY5!B-0ft0f?Lgb>C;$Ke07*qoM6N<$f~t1N9smFU literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f5fea27c705180eb716271f41b582e76dcbd90 GIT binary patch literal 1674 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..0467bf12aa4d28f374bb26596605a46dcbb3e7c8 GIT binary patch literal 1418 zcmV;51$Fv~P)q zKfU)WzW*n(@|xWGCA9ScMt*e9`2kdxPQ&&>|-UCa7_51w+ zLUsW@ZzZSW0y$)Hp~e9%PvP|a03ks1`~K?q{u;6NC8*{AOqIUq{CL&;p56Lf$oQGq z^={4hPQv)y=I|4n+?>7Fim=dxt1 z2H+Dm+1+fh+IF>G0SjJMkQQre1x4|G*Z==(Ot&kCnUrL4I(rf(ucITwmuHf^hXiJT zkdTm&kdTm&kdTm&kdP`esgWG0BcWCVkVZ&2dUwN`cgM8QJb`Z7Z~e<&Yj2(}>Tmf` zm1{eLgw!b{bXkjWbF%dTkTZEJWyWOb##Lfw4EK2}<0d6%>AGS{po>WCOy&f$Tay_> z?NBlkpo@s-O;0V%Y_Xa-G#_O08q5LR*~F%&)}{}r&L%Sbs8AS4t7Y0NEx*{soY=0MZExqA5XHQkqi#4gW3 zqODM^iyZl;dvf)-bOXtOru(s)Uc7~BFx{w-FK;2{`VA?(g&@3z&bfLFyctOH!cVsF z7IL=fo-qBndRUm;kAdXR4e6>k-z|21AaN%ubeVrHl*<|s&Ax@W-t?LR(P-24A5=>a z*R9#QvjzF8n%@1Nw@?CG@6(%>+-0ASK~jEmCV|&a*7-GKT72W<(TbSjf)&Eme6nGE z>Gkj4Sq&2e+-G%|+NM8OOm5zVl9{Z8Dd8A5z3y8mZ=4Bv4%>as_{9cN#bm~;h>62( zdqY93Zy}v&c4n($Vv!UybR8ocs7#zbfX1IY-*w~)p}XyZ-SFC~4w>BvMVr`dFbelV{lLL0bx7@*ZZdebr3`sP;? zVImji)kG)(6Juv0lz@q`F!k1FE;CQ(D0iG$wchPbKZQELlsZ#~rt8#90Y_Xh&3U-< z{s<&cCV_1`^TD^ia9!*mQDq& zn2{r`j};V|uV%_wsP!zB?m%;FeaRe+X47K0e+KE!8C{gAWF8)lCd1u1%~|M!XNRvw zvtqy3iz0WSpWdhn6$hP8PaRBmp)q`#PCA`Vd#Tc$@f1tAcM>f_I@bC)hkI9|o(Iqv zo}Piadq!j76}004RBio<`)70k^`K1NK)q>w?p^C6J2ZC!+UppiK6&y3Kmbv&O!oYF z34$0Z;QO!JOY#!`qyGH<3Pd}Pt@q*A0V=3SVtWKRR8d8Z&@)3qLPA19LPA19LPEUC YUoZo%k(ykuW&i*H07*qoM6N<$f+CH{y8r+H literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..24000c4 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,77 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Unionapp + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + unionapp + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneClassName + UIWindowScene + UISceneConfigurationName + flutter + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + UIApplicationSupportsIndirectInputEvents + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + + + NSLocationWhenInUseUsageDescription + 我们需要获取您的位置以显示地图和地址。 + NSLocationAlwaysAndWhenInUseUsageDescription + 我们需要获取您的位置以显示地图和地址。 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + \ No newline at end of file diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/ios/Runner/SceneDelegate.swift b/ios/Runner/SceneDelegate.swift new file mode 100644 index 0000000..b9ce8ea --- /dev/null +++ b/ios/Runner/SceneDelegate.swift @@ -0,0 +1,6 @@ +import Flutter +import UIKit + +class SceneDelegate: FlutterSceneDelegate { + +} diff --git a/ios/RunnerTests/RunnerTests.swift b/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/lib/home_screen.dart b/lib/home_screen.dart new file mode 100644 index 0000000..c49bf48 --- /dev/null +++ b/lib/home_screen.dart @@ -0,0 +1,89 @@ +import 'package:flutter/material.dart'; +import 'package:glass_liquid_navbar/glass_liquid_navbar.dart'; +import 'package:unionapp/pages/score/score_page.dart'; +import 'package:unionapp/pages/user/userpage.dart'; +import 'pages/home/home_page.dart'; +import 'pages/map_page.dart'; +import 'pages/setting_page.dart'; + +class HomeScreen extends StatefulWidget { + const HomeScreen({super.key}); + + @override + State createState() => _HomeScreenState(); +} + +class _HomeScreenState extends State { + int _currentIndex = 0; + + // ✅ 定义切换 Tab 的方法 + void _switchTab(int index) { + setState(() { + _currentIndex = index; + }); + } + + final List _pages = []; + + @override + void initState() { + super.initState(); + // ✅ 初始化时传入回调函数,这样子页面可以调用它来切换 Tab + _pages.addAll([ + HomePage(onSwitchTab: _switchTab), + ScorePage(), + MapPage(), + UserPage(), + SettingPage(), + ]); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + extendBody: true, + body: IndexedStack( + index: _currentIndex, + children: _pages, + ), + bottomNavigationBar: LiquidGlassNavbar( + currentIndex: _currentIndex, + onTap: (index) { + _switchTab(index); + }, + floatingOffset: 17, + animationDuration: const Duration(milliseconds: 200), + enableHaptics: true, + showLabels: true, + isFullWidth: false, + items: const [ + LiquidNavItem( + icon: Icons.home_rounded, + activeIcon: Icons.home_filled, + label: '首页', + ), + LiquidNavItem( + icon: Icons.score, + activeIcon: Icons.score_outlined, + label: '成绩', + ), + LiquidNavItem( + icon: Icons.map, + activeIcon: Icons.map_outlined, + label: '地图', + ), + LiquidNavItem( + icon: Icons.person_rounded, + activeIcon: Icons.person_pin, + label: '我的', + ), + LiquidNavItem( + icon: Icons.settings_rounded, + activeIcon: Icons.settings_applications_rounded, + label: '设置', + ), + ], + ), + ); + } +} \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..06fddfe --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,61 @@ +import 'package:flutter/material.dart'; +import 'package:unionapp/providers/user_provider.dart'; +import 'home_screen.dart'; // 1. 导入我们写好的主界面 +import 'package:provider/provider.dart'; + + +void main() async { + WidgetsFlutterBinding.ensureInitialized(); + final userProvider = UserProvider.instance; + await userProvider.initUser(); + + runApp( + ChangeNotifierProvider.value( + value: userProvider, + child: const MaterialApp(home: MyApp()), + ), + ); +} +class MyApp extends StatelessWidget { + const MyApp({super.key}); + + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Glass Nav Demo', + // 2. 配置主题 + theme: ThemeData( + useMaterial3: true, + + // 🔑 关键点:背景色不能是纯白或不透明的纯色 + // 建议设置一个浅灰色或带渐变的背景,这样玻璃效果才明显 + scaffoldBackgroundColor: const Color(0xFFF0F2F5), + + colorScheme: ColorScheme.fromSeed( + seedColor: Colors.blue, + brightness: Brightness.light, + ), + ), + + // 3. 配置暗色模式主题(可选,但推荐) + darkTheme: ThemeData( + useMaterial3: true, + // 暗色模式下,背景深一点,玻璃效果会更像“磨砂黑玻璃” + scaffoldBackgroundColor: const Color(0xFF121212), + colorScheme: ColorScheme.fromSeed( + seedColor: Colors.blue, + brightness: Brightness.dark, + ), + ), + + // 4. 跟随系统自动切换亮/暗模式 + themeMode: ThemeMode.system, + + // 5. 设置首页为 HomeScreen + home: const HomeScreen(), + + // 去掉默认的 debug 标签(可选) + debugShowCheckedModeBanner: false, + ); + } +} \ No newline at end of file diff --git a/lib/model/song_model.dart b/lib/model/song_model.dart new file mode 100644 index 0000000..4e0f4c2 --- /dev/null +++ b/lib/model/song_model.dart @@ -0,0 +1,80 @@ +class SongModel { + final int id; + final String title; + final String artist; + final Map? utTitle; // 可选,根据不同版本标题可能不同 + final List albums; + final bool hasDx; + final bool hasSd; + final bool hasUt; + final String genre; + final int bpm; + final String releaseDate; + final String from; + + // 难度详情映射 key通常是 "0"(Basic), "1"(Advanced) 等,或者 ut 的特殊id + final Map? dxLevels; + final Map? sdLevels; + final Map? utLevels; + + SongModel({ + required this.id, + required this.title, + required this.artist, + this.utTitle, + required this.albums, + required this.hasDx, + required this.hasSd, + required this.hasUt, + required this.genre, + required this.bpm, + required this.releaseDate, + required this.from, + this.dxLevels, + this.sdLevels, + this.utLevels, + }); + + factory SongModel.fromJson(Map json) { + return SongModel( + id: json['id'] ?? 0, + title: json['title'] ?? 'Unknown', + artist: json['artist'] ?? 'Unknown', + utTitle: json['utTitle'], + albums: List.from(json['albums'] ?? []), + hasDx: json['hasDx'] ?? false, + hasSd: json['hasSd'] ?? false, + hasUt: json['hasUt'] ?? false, + genre: json['genre'] ?? '', + bpm: json['bpm'] ?? 0, + releaseDate: json['releaseDate'] ?? '', + from: json['from'] ?? '', + dxLevels: json['dx'], + sdLevels: json['sd'], + utLevels: json['ut'], + ); + } +} + +// 用于存储本地缓存的版本信息 +class SongCacheInfo { + final int songSize; + final String version; + final DateTime lastUpdate; + + SongCacheInfo({required this.songSize, required this.version, required this.lastUpdate}); + + Map toJson() => { + 'songSize': songSize, + 'version': version, + 'lastUpdate': lastUpdate.millisecondsSinceEpoch, + }; + + factory SongCacheInfo.fromJson(Map json) { + return SongCacheInfo( + songSize: json['songSize'] ?? 0, + version: json['version'] ?? '', + lastUpdate: DateTime.fromMillisecondsSinceEpoch(json['lastUpdate'] ?? 0), + ); + } +} \ No newline at end of file diff --git a/lib/model/user_model.dart b/lib/model/user_model.dart new file mode 100644 index 0000000..ad32101 --- /dev/null +++ b/lib/model/user_model.dart @@ -0,0 +1,561 @@ +import 'dart:convert'; + +class UserModel { + final String? id; + final String? name; + final int? userId; + final String? teamId; + + final String? email; + final String? password; + final String? twoFactorKey; + final String? apiKey; + final String? apiBindKey; + final int? protectRole; + final int? risks; + + final String? mcName; + final Map? userName2userId; + final String? lxKey; + final String? dfUsername; + final String? dfPassword; + final int? nuoId; + final String? botId; + final String? spasolBotId; + final String? githubId; + + final int? rating; + final int? ratingMax; + final int? iconId; + final int? plateId; + final List? plateIds; + final int? frameId; + final List? charaSlots; + final String? qiandaoDay; + final String? inviter; + final List>? successLogoutTime; + final int? lastLoginTime; + final List? friendIds; + final String? bio; + final String? friendBio; + final String? sex; + final bool? isDisagreeRecommend; + final bool? isDisagreeFriend; + + final int? points; + final int? planPoints; + final List? cardIds; + final List? userCards; + final List? tags; + + final bool? useBeta; + final bool? useNuo; + final String? useServer; + final int? useB50Type; + + final Map? userHot; + final Map? chatInGroupNumbers; + final int? sc; + final Map? id2pcNuo; + + final Map? mai2links; + final Map? key2KeychipEn; + final Map? key2key2KeychipEn; + final String? mai2link; + + final RegionData? userRegion; + + final String? rinUsernameOrEmail; + final String? rinPassword; + final dynamic rinChusanUser; + + final List? segaCards; + + final Map? placeList; + final String? lastKeyChip; + final String? token; + final Map? timesRegionData; + + final Map? yearTotal; + final Map? yearTotalComment; + + final Map? userCollCardMap; + final Map>? collName2musicIds; + final bool? ai; + + final int? pkScore; + final String? pkScoreStr; + final int? pkScoreReality; + final int? pkUserId; + final int? limitPkTimestamp; + final int? hasAcceptPk; + final int? pkPlayNum; + final bool? pkWin; + + final dynamic userData; + final int? banState; + + UserModel({ + this.id, + this.name, + this.userId, + this.teamId, + this.email, + this.password, + this.twoFactorKey, + this.apiKey, + this.apiBindKey, + this.protectRole, + this.risks, + this.mcName, + this.userName2userId, + this.lxKey, + this.dfUsername, + this.dfPassword, + this.nuoId, + this.botId, + this.spasolBotId, + this.githubId, + this.rating, + this.ratingMax, + this.iconId, + this.plateId, + this.plateIds, + this.frameId, + this.charaSlots, + this.qiandaoDay, + this.inviter, + this.successLogoutTime, + this.lastLoginTime, + this.friendIds, + this.bio, + this.friendBio, + this.sex, + this.isDisagreeRecommend, + this.isDisagreeFriend, + this.points, + this.planPoints, + this.cardIds, + this.userCards, + this.tags, + this.useBeta, + this.useNuo, + this.useServer, + this.useB50Type, + this.userHot, + this.chatInGroupNumbers, + this.sc, + this.id2pcNuo, + this.mai2links, + this.key2KeychipEn, + this.key2key2KeychipEn, + this.mai2link, + this.userRegion, + this.rinUsernameOrEmail, + this.rinPassword, + this.rinChusanUser, + this.segaCards, + this.placeList, + this.lastKeyChip, + this.token, + this.timesRegionData, + this.yearTotal, + this.yearTotalComment, + this.userCollCardMap, + this.collName2musicIds, + this.ai, + this.pkScore, + this.pkScoreStr, + this.pkScoreReality, + this.pkUserId, + this.limitPkTimestamp, + this.hasAcceptPk, + this.pkPlayNum, + this.pkWin, + this.userData, + this.banState, + }); + + // ====================== 你要的 TOJSON 完整写好了 ====================== + Map toJson() { + return { + 'id': id, + 'name': name, + 'userId': userId, + 'teamId': teamId, + 'email': email, + 'password': password, + 'twoFactorKey': twoFactorKey, + 'apiKey': apiKey, + 'apiBindKey': apiBindKey, + 'protectRole': protectRole, + 'risks': risks, + 'mcName': mcName, + 'userName2userId': userName2userId, + 'lxKey': lxKey, + 'df_username': dfUsername, + 'df_password': dfPassword, + 'nuoId': nuoId, + 'botId': botId, + 'spasolBotId': spasolBotId, + 'githubId': githubId, + 'rating': rating, + 'rating_max': ratingMax, + 'iconId': iconId, + 'plateId': plateId, + 'plateIds': plateIds, + 'frameId': frameId, + 'charaSlots': charaSlots, + 'qiandaoDay': qiandaoDay, + 'inviter': inviter, + 'successLogoutTime': successLogoutTime, + 'lastLoginTime': lastLoginTime, + 'friendIds': friendIds, + 'bio': bio, + 'friend_bio': friendBio, + 'sex': sex, + 'isDisagreeRecommend': isDisagreeRecommend, + 'isDisagreeFriend': isDisagreeFriend, + 'points': points, + 'plan_points': planPoints, + 'cardIds': cardIds, + 'userCards': userCards?.map((e) => e.toJson()).toList(), + 'tags': tags, + 'useBeta': useBeta, + 'useNuo': useNuo, + 'useServer': useServer, + 'useB50Type': useB50Type, + 'userHot': userHot, + 'chatInGroupNumbers': chatInGroupNumbers, + 'sc': sc, + 'id2pcNuo': id2pcNuo, + 'mai2links': mai2links, + 'key2KeychipEn': key2KeychipEn, + 'key2key2KeychipEn': key2key2KeychipEn, + 'mai2link': mai2link, + 'userRegion': userRegion?.toJson(), + 'rin_usernameOrEmail': rinUsernameOrEmail, + 'rin_password': rinPassword, + 'rinChusanUser': rinChusanUser, + 'segaCards': segaCards?.map((e) => e.toJson()).toList(), + 'placeList': placeList, + 'lastKeyChip': lastKeyChip, + 'token': token, + 'timesRegionData': timesRegionData?.map((k, v) => MapEntry(k, v.toJson())), + 'yearTotal': yearTotal, + 'yearTotal_comment': yearTotalComment, + 'userCollCardMap': userCollCardMap?.map((k, v) => MapEntry(k, v.toJson())), + 'collName2musicIds': collName2musicIds, + 'ai': ai, + 'pkScore': pkScore, + 'pkScoreStr': pkScoreStr, + 'pk_score_reality': pkScoreReality, + 'pk_userId': pkUserId, + 'limit_pk_timestamp': limitPkTimestamp, + 'has_accept_pk': hasAcceptPk, + 'pk_play_num': pkPlayNum, + 'pk_win': pkWin, + 'userData': userData, + 'banState': banState, + }; + } + + factory UserModel.fromJson(Map json) { + return UserModel( + id: json['id'], + name: json['name'], + userId: json['userId'], + teamId: json['teamId'], + email: json['email'], + password: json['password'], + twoFactorKey: json['twoFactorKey'], + apiKey: json['apiKey'], + apiBindKey: json['apiBindKey'], + protectRole: json['protectRole'], + risks: json['risks'], + mcName: json['mcName'], + userName2userId: _mapStringInt(json['userName2userId']), + lxKey: json['lxKey'], + dfUsername: json['df_username'], + dfPassword: json['df_password'], + nuoId: json['nuoId'], + botId: json['botId'], + spasolBotId: json['spasolBotId'], + githubId: json['githubId'], + rating: json['rating'], + ratingMax: json['rating_max'], + iconId: json['iconId'], + plateId: json['plateId'], + plateIds: _listInt(json['plateIds']), + frameId: json['frameId'], + charaSlots: _listInt(json['charaSlots']), + qiandaoDay: json['qiandaoDay'], + inviter: json['inviter'], + successLogoutTime: _listListInt(json['successLogoutTime']), + lastLoginTime: json['lastLoginTime'], + friendIds: _listString(json['friendIds']), + bio: json['bio'], + friendBio: json['friend_bio'], + sex: json['sex'], + isDisagreeRecommend: json['isDisagreeRecommend'], + isDisagreeFriend: json['isDisagreeFriend'], + points: json['points'], + planPoints: json['plan_points'], + cardIds: _listString(json['cardIds']), + userCards: _listCard(json['userCards']), + tags: _listString(json['tags']), + useBeta: json['useBeta'], + useNuo: json['useNuo'], + useServer: json['useServer'], + useB50Type: json['useB50Type'], + userHot: _mapStringInt(json['userHot']), + chatInGroupNumbers: _mapStringInt(json['chatInGroupNumbers']), + sc: json['sc'], + id2pcNuo: _mapStringInt(json['id2pcNuo']), + mai2links: _mapStringString(json['mai2links']), + key2KeychipEn: _mapStringString(json['key2KeychipEn']), + key2key2KeychipEn: _mapStringString(json['key2key2KeychipEn']), + mai2link: json['mai2link'], + userRegion: json['userRegion'] != null ? RegionData.fromJson(json['userRegion']) : null, + rinUsernameOrEmail: json['rin_usernameOrEmail'], + rinPassword: json['rin_password'], + rinChusanUser: json['rinChusanUser'], + segaCards: _listSegaCard(json['segaCards']), + placeList: _mapStringInt(json['placeList']), + lastKeyChip: json['lastKeyChip'], + token: json['token'], + timesRegionData: _mapStringRegionData(json['timesRegionData']), + yearTotal: _mapStringString(json['yearTotal']), + yearTotalComment: _mapStringString(json['yearTotal_comment']), + userCollCardMap: _mapStringUserCollCard(json['userCollCardMap']), + collName2musicIds: _mapStringListString(json['collName2musicIds']), + ai: json['ai'], + pkScore: json['pkScore'], + pkScoreStr: json['pkScoreStr'], + pkScoreReality: json['pk_score_reality'], + pkUserId: json['pk_userId'], + limitPkTimestamp: json['limit_pk_timestamp'], + hasAcceptPk: json['has_accept_pk'], + pkPlayNum: json['pk_play_num'], + pkWin: json['pk_win'], + userData: json['userData'], + banState: json['banState'], + ); + } + + static List? _listInt(dynamic data) { + if (data is List) return List.from(data); + return null; + } + + static List? _listString(dynamic data) { + if (data is List) return List.from(data); + return null; + } + + static List>? _listListInt(dynamic data) { + if (data is List) { + return data.map((e) => _listInt(e)).whereType>().toList(); + } + return null; + } + + static List? _listCard(dynamic data) { + if (data is List) return data.map((e) => Card.fromJson(e)).toList(); + return null; + } + + static List? _listSegaCard(dynamic data) { + if (data is List) return data.map((e) => SegaCard.fromJson(e)).toList(); + return null; + } + + static Map? _mapStringInt(dynamic data) { + if (data is Map) { + return Map.from(data).map((k, v) => MapEntry(k.toString(), v as int)); + } + return null; + } + + static Map? _mapStringString(dynamic data) { + if (data is Map) { + return Map.from(data).map((k, v) => MapEntry(k.toString(), v.toString())); + } + return null; + } + + static Map>? _mapStringListString(dynamic data) { + if (data is Map) { + return Map.from(data).map((k, v) { + return MapEntry(k.toString(), _listString(v) ?? []); + }); + } + return null; + } + + static Map? _mapStringRegionData(dynamic data) { + if (data is Map) { + return Map.from(data).map((k, v) { + return MapEntry(k.toString(), RegionData.fromJson(v)); + }); + } + return null; + } + + static Map? _mapStringUserCollCard(dynamic data) { + if (data is Map) { + return Map.from(data).map((k, v) { + return MapEntry(k.toString(), UserCollCard.fromJson(v)); + }); + } + return null; + } +} + +// ============================== +// 1. UserCollCard +// ============================== +class UserCollCard { + final int? titleId; + final int? plateId; + final int? frameId; + final int? iconId; + final List? charaIds; + final dynamic userData; + + UserCollCard({ + this.titleId, + this.plateId, + this.frameId, + this.iconId, + this.charaIds, + this.userData, + }); + + factory UserCollCard.fromJson(Map json) { + return UserCollCard( + titleId: json['titleId'], + plateId: json['plateId'], + frameId: json['frameId'], + iconId: json['iconId'], + charaIds: UserModel._listInt(json['charaIds']), + userData: json['userData'], + ); + } + + Map toJson() { + return { + 'titleId': titleId, + 'plateId': plateId, + 'frameId': frameId, + 'iconId': iconId, + 'charaIds': charaIds, + 'userData': userData, + }; + } +} + +// ============================== +// 2. SegaCard +// ============================== +class SegaCard { + final String? type; + final String? segaId; + final String? password; + + SegaCard({ + this.type, + this.segaId, + this.password, + }); + + factory SegaCard.fromJson(Map json) { + return SegaCard( + type: json['type'], + segaId: json['segaId'], + password: json['password'], + ); + } + + Map toJson() { + return { + 'type': type, + 'segaId': segaId, + 'password': password, + }; + } +} + +// ============================== +// 3. Card +// ============================== +class Card { + final String? username; + final int? iconId; + final String? uid; + final int? plateId; + final int? charaId; + final int? rating; + + Card({ + this.username, + this.iconId, + this.uid, + this.plateId, + this.charaId, + this.rating, + }); + + factory Card.fromJson(Map json) { + return Card( + username: json['username'], + iconId: json['iconId'], + uid: json['uid'], + plateId: json['plateId'], + charaId: json['charaId'], + rating: json['rating'], + ); + } + + Map toJson() { + return { + 'username': username, + 'iconId': iconId, + 'uid': uid, + 'plateId': plateId, + 'charaId': charaId, + 'rating': rating, + }; + } +} + +// ============================== +// 4. RegionData +// ============================== +class RegionData { + final String? province; + final int? playCount; + final String? created; + + RegionData({ + this.province, + this.playCount, + this.created, + }); + + factory RegionData.fromJson(Map json) { + return RegionData( + province: json['province'], + playCount: json['playCount'], + created: json['created'], + ); + } + + Map toJson() { + return { + 'province': province, + 'playCount': playCount, + 'created': created, + }; + } +} \ No newline at end of file diff --git a/lib/pages/home/home_page.dart b/lib/pages/home/home_page.dart new file mode 100644 index 0000000..80c6353 --- /dev/null +++ b/lib/pages/home/home_page.dart @@ -0,0 +1,430 @@ +import 'package:flutter/material.dart'; +import '../../tool/gradientText.dart'; +// 注意:如果 UserPage, SongListPage 等只是作为内部卡片展示,不需要再 import 用于 Navigator push +// 但如果其他卡片还需要跳转,保留 import 即可 +import '../user/userpage.dart'; +import '../songlistpage.dart'; +import '../scorelist.dart'; +import 'package:provider/provider.dart'; +import '../../providers/user_provider.dart'; + +class HomePage extends StatelessWidget { + // ✅ 1. 添加回调函数参数 + final Function(int)? onSwitchTab; + + const HomePage({super.key, this.onSwitchTab}); + + @override + Widget build(BuildContext context) { + final userProvider = context.watch(); + + return Scaffold( + backgroundColor: Colors.transparent, + body: SafeArea( + child: SingleChildScrollView( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // ====================== 顶部 Header ====================== + SizedBox( + width: double.infinity, + height: 100, + child: Stack( + children: [ + const Padding( + padding: EdgeInsets.only(left: 30, top: 60), + child: Text( + "Tool", + style: TextStyle(fontSize: 32, fontWeight: FontWeight.bold), + ), + ), + Positioned( + right: 20, + top: 25, + child: Row( + children: [ + GradientText( + data: userProvider.username, + style: const TextStyle(fontSize: 19, fontWeight: FontWeight.bold), + gradientLayers: [ + GradientLayer( + gradient: const LinearGradient( + colors: [Colors.pinkAccent, Colors.orangeAccent], + ), + blendMode: BlendMode.srcIn, + ), + ], + ), + const SizedBox(width: 8), + ClipRRect( + borderRadius: BorderRadius.circular(0), // 修正语法错误,原代码可能有误 + child: SizedBox( + width: 54, + height: 54, + child: userProvider.avatarUrl.isNotEmpty + ? Image.network( + userProvider.avatarUrl, + fit: BoxFit.cover, + ) + : Container( + color: Colors.grey[200], + child: const Icon(Icons.person, size: 30), + ), + ), + ) + ], + ), + ), + ], + ), + ), + const SizedBox(height: 30), + + // ====================== 横向卡片区域 ====================== + SizedBox( + height: 180, + child: SingleChildScrollView( + scrollDirection: Axis.horizontal, + padding: const EdgeInsets.symmetric(horizontal: 25, vertical: 10).copyWith(bottom: 30), + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + + // ✅ 2. 修改:用户中心 -> 切换到 Tab 3 (UserPage) + _buildCardWithTitle( + context: context, + title: "用户中心", + icon: Icons.person_outline, + // 不再传递 targetPage,而是传递 targetIndex + targetIndex: 3, + gradient: const LinearGradient( + colors: [Colors.black, Colors.grey], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + shadowColor: Colors.black38, + ), + const SizedBox(width: 20), + + // 歌曲列表 (保持原有跳转逻辑或自行定义) + _buildCardWithTitle( + context: context, + title: "歌曲列表", + icon: Icons.music_note_outlined, + targetPage: const SongListPage(), // 假设这个还是用 Push 跳转 + gradient: const LinearGradient( + colors: [Color(0xFFff9a9e), Color(0xFFfecfef)], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + shadowColor: const Color(0xFFff9a9e).withOpacity(0.6), + ), + const SizedBox(width: 20), + + // ✅ 3. 修改:成绩管理 -> 切换到 Tab 1 (ScorePage) + _buildCardWithTitle( + context: context, + title: "成绩管理", + icon: Icons.score, + targetIndex: 1, + gradient: const LinearGradient( + colors: [Color(0xFF84fab0), Color(0xFF8fd3f4)], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + shadowColor: const Color(0xFF84fab0).withOpacity(0.6), + ), + const SizedBox(width: 20), + + // 娱乐功能 + _buildCardWithTitle( + context: context, + title: "娱乐功能", + icon: Icons.kebab_dining_sharp, + targetPage: const ScoreListPage(), + gradient: const LinearGradient( + colors: [Colors.lightBlueAccent, Colors.blueAccent], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + shadowColor: Colors.lightBlue.withOpacity(0.6), + ), + const SizedBox(width: 20), + + // 评分列表 + _buildCardWithTitle( + context: context, + title: "评分列表", + icon: Icons.star, + targetPage: const ScoreListPage(), + gradient: const LinearGradient( + colors: [Colors.redAccent, Colors.pinkAccent], + begin: Alignment.topLeft, + end: Alignment.bottomRight, + ), + shadowColor: Colors.red.withOpacity(0.6), + ), + const SizedBox(width: 20), + ], + ), + ), + ), + + // ====================== 海报 ====================== + // 假设 PosterImage 是你自定义的一个 Widget + const PosterImage(imageUrl: 'https://cdn.godserver.cn/post/post%20unionapp1.png'), + const SizedBox(height: 20), + + // ====================== 新增:用户数据展示卡片 ====================== + const _UserInfoCard(), + const SizedBox(height: 30), + ], + ), + ), + ), + ); + } + + // ✅ 4. 修改构建方法,支持 targetIndex 和 targetPage 两种模式 + Widget _buildCardWithTitle({ + required BuildContext context, + required String title, + required IconData icon, + int? targetIndex, // 新增:如果是切换 Tab,传这个 + Widget? targetPage, // 保留:如果是页面跳转,传这个 + required LinearGradient gradient, + required Color shadowColor, + }) { + return Column( + mainAxisSize: MainAxisSize.min, + children: [ + GestureDetector( + onTap: () { + if (targetIndex != null && onSwitchTab != null) { + // ✅ 执行 Tab 切换 + onSwitchTab!(targetIndex); + } else if (targetPage != null) { + // ✅ 执行页面跳转 + Navigator.push( + context, + MaterialPageRoute(builder: (context) => targetPage), + ); + } + }, + child: _buildCustomCardBody( + gradient: gradient, + shadowColor: shadowColor, + icon: icon, + ), + ), + const SizedBox(height: 12), + Text( + title, + style: const TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + letterSpacing: 0.5, + ), + textAlign: TextAlign.center, + ), + ], + ); + } + + Widget _buildCustomCardBody({ + required LinearGradient gradient, + required Color shadowColor, + required IconData icon, + }) { + return Container( + width: 100, + height: 100, + decoration: BoxDecoration( + gradient: gradient, + borderRadius: BorderRadius.circular(24), + boxShadow: [ + BoxShadow( + color: shadowColor, + blurRadius: 15, + spreadRadius: 3, + offset: const Offset(4, 6), + ), + ], + ), + child: Center( + child: Container( + padding: const EdgeInsets.all(10), + decoration: BoxDecoration( + color: Colors.white.withOpacity(0.25), + shape: BoxShape.circle, + ), + child: Icon( + icon, + size: 36, + color: Colors.white, + ), + ), + ), + ); + } +} + +// ====================== 新增:用户数据卡片组件 ====================== +class _UserInfoCard extends StatelessWidget { + const _UserInfoCard(); + + @override + Widget build(BuildContext context) { + final userProvider = Provider.of(context); + + return Padding( + // 内边距和海报完全一致,保证同宽 + padding: const EdgeInsets.symmetric(horizontal: 17.0), + child: Container( + width: double.infinity, + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(10), + color: Colors.white.withOpacity(0.8), + boxShadow: [ + BoxShadow( + color: Colors.pink.shade100, + blurRadius: 4, + offset: const Offset(0, 6), + spreadRadius: 1, + ), + ], + ), + padding: const EdgeInsets.all(20), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + // 标题 + const Text( + "当前用户信息", + style: TextStyle( + fontSize: 18, + color: Colors.purpleAccent, + fontWeight: FontWeight.bold, + ), + ), + const Divider(height: 5, thickness: 1), + const SizedBox(height: 6), + + // 用户信息行 + Row( + children: [ + // 头像 + ClipRRect( + borderRadius: BorderRadius.circular(0), + child: SizedBox( + width: 60, + height: 60, + child: userProvider.avatarUrl.isNotEmpty + ? Image.network( + userProvider.avatarUrl, + fit: BoxFit.cover, + ) + : Container( + color: Colors.grey[200], + child: const Icon(Icons.person, size: 30), + ), + ), + ), + const SizedBox(width: 18), + + // 文字信息 + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + GradientText( + data:"用户名:${userProvider.username}", + style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold), + gradientLayers: [ + GradientLayer( + gradient: const LinearGradient( + colors: [Colors.blueAccent, Colors.green], + ), + blendMode: BlendMode.srcIn, + ), + ], + ), + + const SizedBox(height: 6), + Text( + userProvider.username == "未登录" + ? "状态:未登录" + : "状态:已登录", + style: TextStyle( + fontSize: 14, + color: userProvider.username == "未登录" + ? Colors.red + : Colors.green, + ), + ), + ], + ), + ), + ], + ), + ], + ), + ), + ); + } +} + +class PosterImage extends StatelessWidget { + final String imageUrl; + + const PosterImage({Key? key, required this.imageUrl}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 20.0), + child: ConstrainedBox( + constraints: const BoxConstraints( + maxWidth: 800, + ), + child: Container( + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(8), + boxShadow: [ + BoxShadow( + color: Colors.purpleAccent.withOpacity(0.14), + blurRadius: 12, + offset: const Offset(0, 10), + spreadRadius: 10, + ), + ], + ), + child: ClipRRect( + borderRadius: BorderRadius.circular(8), + child: Image.network( + imageUrl, + fit: BoxFit.cover, + loadingBuilder: (context, child, loadingProgress) { + if (loadingProgress == null) return child; + return Center( + child: CircularProgressIndicator( + value: loadingProgress.expectedTotalBytes != null + ? loadingProgress.cumulativeBytesLoaded / + loadingProgress.expectedTotalBytes! + : null, + ), + ); + }, + errorBuilder: (context, error, stackTrace) { + return const Center( + child: Icon(Icons.broken_image, size: 50, color: Colors.grey), + ); + }, + ), + ), + ), + ), + ); + } +} + diff --git a/lib/pages/map_page.dart b/lib/pages/map_page.dart new file mode 100644 index 0000000..ce313cf --- /dev/null +++ b/lib/pages/map_page.dart @@ -0,0 +1,248 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:geocoding/geocoding.dart'; + +class MapPage extends StatefulWidget { + const MapPage({super.key}); + + @override + State createState() => _MapPageState(); +} + +class _MapPageState extends State { + // 默认中心点(北京) + LatLng _currentPosition = const LatLng(39.9042, 116.4074); + String _address = "正在加载地址..."; + bool _isLoading = false; + + // 地图控制器 + final MapController _mapController = MapController(); + + @override + void initState() { + super.initState(); + _getCurrentLocation(); + } + + // 1. 获取当前位置并解析地址 + Future _getCurrentLocation() async { + setState(() { + _isLoading = true; + _address = "正在检查权限..."; + }); + + try { + // 1. 检查服务是否开启 + bool serviceEnabled = await Geolocator.isLocationServiceEnabled(); + if (!serviceEnabled) { + setState(() { + _address = "请在系统设置中开启‘定位服务’总开关"; + _isLoading = false; + }); + return; + } + + // 2. 检查权限 + LocationPermission permission = await Geolocator.checkPermission(); + + // 如果权限被拒绝,尝试请求 + if (permission == LocationPermission.denied) { + setState(() { + _address = "正在请求权限..."; + }); + + // 🔑 注意:macOS 上这行可能不会弹窗,而是直接返回 denied + permission = await Geolocator.requestPermission(); + + if (permission == LocationPermission.denied) { + setState(() { + _address = "权限被拒绝。请去【系统设置->隐私->定位】中手动开启本App权限。"; + _isLoading = false; + }); + return; + } + } + + if (permission == LocationPermission.deniedForever) { + setState(() { + _address = "权限被永久拒绝,请在系统设置中手动开启。"; + _isLoading = false; + }); + return; + } + + // 3. 获取位置 + setState(() { + _address = "正在获取坐标..."; + }); + + // 🔑 添加超时限制,防止卡死 + Position position = await Geolocator.getCurrentPosition( + desiredAccuracy: LocationAccuracy.high, + timeLimit: const Duration(seconds: 15), + ).timeout( + const Duration(seconds: 15), + onTimeout: () { + throw Exception("定位超时,请检查网络连接或移动到有信号的地方"); + }, + ); + + LatLng newPos = LatLng(position.latitude, position.longitude); + _mapController.move(newPos, 15.0); + + setState(() { + _currentPosition = newPos; + }); + + await _getAddressFromLatLng(newPos); + + } catch (e) { + debugPrint("定位错误详情: $e"); + setState(() { + _address = "定位失败: ${e.toString()}"; + _isLoading = false; + }); + } + } + // 2. 逆地理编码:经纬度 -> 文字地址 + Future _getAddressFromLatLng(LatLng position) async { + try { + List placemarks = await placemarkFromCoordinates( + position.latitude, + position.longitude, + ); + + if (placemarks.isNotEmpty) { + Placemark place = placemarks[0]; + setState(() { + // 组合地址:省 + 市 + 区 + 街道 + _address = "${place.street ?? ""}, ${place.locality ?? ""}, ${place.administrativeArea ?? ""}"; + }); + } + } catch (e) { + setState(() { + _address = "地址解析失败"; + }); + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + backgroundColor: Colors.transparent, // 保持透明,透出玻璃效果 + body: Stack( + children: [ + // --- 底层:地图 --- + // --- 底层:地图 --- + FlutterMap( + mapController: _mapController, + options: MapOptions( + initialCenter: _currentPosition, + initialZoom: 13.0, + // 🔑 添加交互标志,确保地图能响应鼠标拖拽 + interactionOptions: const InteractionOptions( + flags: InteractiveFlag.all, + ), + ), + children: [ + TileLayer( + // ✅ 替换为 CartoDB 浅色主题(速度快,无需Key) + urlTemplate: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', + subdomains: ['a', 'b', 'c', 'd'], + userAgentPackageName: 'com.example.app', + // 🔑 添加错误监听,看看是不是还有网络问题 + errorTileCallback: (tile, error, stackTrace) { + debugPrint('地图瓦片加载错误: $error'); + }, + ), + MarkerLayer( + markers: [ + Marker( + width: 80.0, + height: 80.0, + point: _currentPosition, + child: const Icon( + Icons.location_pin, + color: Colors.red, + size: 40, + ), + ), + ], + ), + ], + ), + + // --- 顶层:UI 控件 --- + + // 1. 顶部地址卡片 (玻璃风格) + Positioned( + top: 50, + left: 20, + right: 20, + child: Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: Colors.white.withOpacity(0.85), // 半透明白 + borderRadius: BorderRadius.circular(16), + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.1), + blurRadius: 10, + offset: const Offset(0, 5), + ), + ], + ), + child: Row( + children: [ + const Icon(Icons.place, color: Colors.blueAccent), + const SizedBox(width: 10), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text( + "当前位置", + style: TextStyle(fontSize: 12, color: Colors.grey), + ), + const SizedBox(height: 4), + Text( + _address, + style: const TextStyle( + fontSize: 16, + fontWeight: FontWeight.bold, + color: Colors.black87, + ), + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + ], + ), + ), + if (_isLoading) + const SizedBox( + width: 20, + height: 20, + child: CircularProgressIndicator(strokeWidth: 2), + ), + ], + ), + ), + ), + + // 2. 右下角定位按钮 + Positioned( + bottom: 100, // 留出底部导航栏的空间 + right: 20, + child: FloatingActionButton( + onPressed: _getCurrentLocation, + backgroundColor: Colors.white, + child: const Icon(Icons.my_location, color: Colors.blue), + ), + ), + ], + ), + ); + } +} \ No newline at end of file diff --git a/lib/pages/score/score_page.dart b/lib/pages/score/score_page.dart new file mode 100644 index 0000000..1bd2aed --- /dev/null +++ b/lib/pages/score/score_page.dart @@ -0,0 +1,1351 @@ +import 'dart:io'; +import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; +import '../../model/song_model.dart'; +import '../../providers/user_provider.dart'; +import '../../service/song_service.dart'; +import '../../service/user_service.dart'; +import 'package:share_plus/share_plus.dart'; +import 'package:dio/dio.dart'; +import 'package:path_provider/path_provider.dart'; + +class ScorePage extends StatefulWidget { + const ScorePage({Key? key}) : super(key: key); + + @override + State createState() => _ScorePageState(); +} + +class _ScorePageState extends State with SingleTickerProviderStateMixin { + bool _isLoading = true; + bool _isRefreshing = false; + String _errorMessage = ''; + + List _allSongs = []; + Map _songMap = {}; + List _userMusicList = []; + + // --- 搜索与筛选状态 --- + String _searchQuery = ''; + int? _filterLevelType; + int? _filterRank; + bool _isAdvancedFilterExpanded = false; + double? _minAchievement; + late final TextEditingController _minAchievementController; + String? _filterFromVersion; + String? _filterGenre; + double? _selectedMinLevel; + double? _selectedMaxLevel; + int? _filterComboStatus; + int? _filterSyncStatus; + + static const List _levelOptions = [ + 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 5.5, + 6.0, 6.5, 7.0, 7.5, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, + 11.0, 11.5, 12.0, 12.5, + 13.0, 13.1, 13.2, 13.3, 13.4, 13.5, 13.6, 13.7, 13.8, 13.9, + 14.0, 14.1, 14.2, 14.3, 14.4, 14.5, 14.6, 14.7, 14.8, 14.9, + 15.0, + ]; + + late FixedExtentScrollController _minLevelScrollController; + late FixedExtentScrollController _maxLevelScrollController; + Set _availableVersions = {}; + Set _availableGenres = {}; + late AnimationController _animationController; + late Animation _animation; + + String get _currentDataSource => UserProvider.instance.scoreDataSource; + String? get _currentSegaId => UserProvider.instance.selectedSegaId; + String? get _currentCnUserName => UserProvider.instance.selectedCnUserName; // 新增 + + @override + void initState() { + super.initState(); + _animationController = AnimationController( + vsync: this, + duration: const Duration(milliseconds: 300), + ); + _animation = CurvedAnimation( + parent: _animationController, + curve: Curves.easeInOut, + ); + + _minAchievementController = TextEditingController(); + _minLevelScrollController = FixedExtentScrollController(initialItem: 0); + _maxLevelScrollController = FixedExtentScrollController(initialItem: _levelOptions.length - 1); + + UserProvider.instance.addListener(_onProviderChanged); + _loadData(isInitialLoad: true); + } + + void _onProviderChanged() { + if (mounted) { + _loadData(isInitialLoad: true); + } + } + + @override + void dispose() { + UserProvider.instance.removeListener(_onProviderChanged); + _minAchievementController.dispose(); + _minLevelScrollController.dispose(); + _maxLevelScrollController.dispose(); + _animationController.dispose(); + super.dispose(); + } + + String _normalizeString(String? str) { + if (str == null) return ''; + return str.replaceAll(' ', '').replaceAll('\u3000', '').toLowerCase(); + } + + int _normalizeSongId(int musicId) { + if (musicId < 10000) return musicId; + if (musicId >= 100000) { + int candidate = musicId - 100000; + if (candidate > 0 && candidate < 10000) return candidate; + return musicId % 10000; + } + if (musicId >= 10000 && musicId < 100000) { + return musicId % 10000; + } + return musicId; + } + + Map _getSongDisplayInfo(int musicId) { + int standardId = _normalizeSongId(musicId); + SongModel? song = _songMap[standardId]; + String? displayTitle; + + if (song == null) song = _songMap[musicId]; + if (song == null && musicId >= 10000) song = _songMap[musicId - 10000]; + + if (song != null) { + if (musicId >= 100000 && song.utTitle != null) { + if (song.utTitle is String) { + displayTitle = song.utTitle as String; + } else if (song.utTitle is Map) { + final map = song.utTitle as Map; + displayTitle = map['ultra'] ?? map['tera'] ?? map.values.first.toString(); + } + } + displayTitle ??= song.title; + } else { + displayTitle = "Unknown Song ($musicId)"; + } + + return {'song': song, 'title': displayTitle, 'standardId': standardId}; + } + + String _getCoverUrl(int musicId) { + int displayId = musicId % 10000; + if (musicId >= 16000 && musicId <= 20000) { + String idStr = displayId.toString().padLeft(6, '0'); + return "https://u.mai2.link/jacket/UI_Jacket_$idStr.jpg"; + } else { + return "https://cdn.godserver.cn/resource/static/mai/cover/$displayId.png"; + } + } + + /// 【核心修改】加载数据逻辑 + Future _loadData({bool isInitialLoad = false}) async { + if (isInitialLoad) { + setState(() { _isLoading = true; }); + } else { + setState(() { _isRefreshing = true; }); + } + + try { + final userProvider = UserProvider.instance; + final token = userProvider.token; + if (token == null) throw "未登录,请先登录"; + + // 1. 获取歌曲元数据 + if (_allSongs.isEmpty || isInitialLoad) { + final songs = await SongService.getAllSongs(); + _allSongs = songs; + _songMap = {for (var song in songs) song.id: song}; + _availableVersions = songs.map((s) => s.from).where((v) => v.isNotEmpty).toSet(); + _availableGenres = songs.map((s) => s.genre).where((g) => g.isNotEmpty).toSet(); + } + + // 2. 获取用户成绩数据 + if (_currentDataSource == 'sega') { + // --- Sega ID 模式 --- + final segaId = _currentSegaId; + if (segaId == null || segaId.isEmpty) { + throw "请选择一个有效的 Sega ID"; + } + final rawData = await UserService.getSegaRatingData(token, segaId); + + final segaId2chartlist = rawData['segaId2chartlist'] as Map?; + List rawDetails = []; + if (segaId2chartlist != null && segaId2chartlist.containsKey(segaId)) { + final dynamic content = segaId2chartlist[segaId]; + if (content is List) { + rawDetails = content; + } + } + + Map> groupedByMusicId = {}; + for (var detail in rawDetails) { + if (detail is Map && detail.containsKey('musicId')) { + int mId = detail['musicId']; + if (!groupedByMusicId.containsKey(mId)) { + groupedByMusicId[mId] = []; + } + groupedByMusicId[mId]!.add(detail); + } + } + + _userMusicList = groupedByMusicId.entries.map((entry) { + return { + 'userMusicDetailList': entry.value, + 'referenceMusicId': entry.key + }; + }).toList(); + + } else { + // --- 国服模式 --- + // 【修改点】传递选中的用户名 + final scoreData = await SongService.getUserAllScores(token,name: _currentCnUserName); + + if (scoreData.containsKey('userScoreAll_')) { + _userMusicList = scoreData['userScoreAll_']['userMusicList'] ?? []; + } else if (scoreData.containsKey('userMusicList')) { + _userMusicList = scoreData['userMusicList'] ?? []; + } else { + _userMusicList = []; + } + } + + setState(() { _errorMessage = ''; }); + + } catch (e) { + debugPrint("❌ Load Data Error: $e"); + if (isInitialLoad) { + setState(() { _errorMessage = e.toString(); }); + } else { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text("刷新失败: $e"), duration: const Duration(seconds: 2)), + ); + } + } + } finally { + if (mounted) { + setState(() { + _isLoading = false; + _isRefreshing = false; + }); + } + } + } + + /// 【核心修改】获取过滤并排序后的列表 + List get _filteredMusicList { + bool isNoFilter = _searchQuery.isEmpty && + _filterLevelType == null && + _filterRank == null && + _filterFromVersion == null && + _filterGenre == null && + _selectedMinLevel == null && + _selectedMaxLevel == null && + _minAchievement == null && + _filterComboStatus == null && + _filterSyncStatus == null; + + List result; + + if (isNoFilter) { + result = List.from(_userMusicList); + } else { + final normalizedQuery = _normalizeString(_searchQuery); + double? minAchVal = _minAchievement; + + result = _userMusicList.where((group) { + final details = group['userMusicDetailList'] as List? ?? []; + if (details.isEmpty) return false; + + final firstDetail = details[0]; + final int rawMusicId = firstDetail['musicId']; + + final info = _getSongDisplayInfo(rawMusicId); + final SongModel? song = info['song'] as SongModel?; + + if (_searchQuery.isNotEmpty) { + bool matchesSearch = false; + final int stdId = info['standardId'] as int; + final String idSearchStr = "$rawMusicId $stdId"; + if (idSearchStr.contains(_searchQuery)) matchesSearch = true; + + String titleToSearch = info['title'] as String; + if (song == null && firstDetail.containsKey('musicName')) { + titleToSearch = firstDetail['musicName'] ?? titleToSearch; + } + final String normTitle = _normalizeString(titleToSearch); + if (normTitle.contains(normalizedQuery)) matchesSearch = true; + + final String normArtist = _normalizeString(song?.artist); + if (!matchesSearch && normArtist.contains(normalizedQuery)) matchesSearch = true; + + if (!matchesSearch && song != null) { + for (var alias in song.albums) { + if (_normalizeString(alias).contains(normalizedQuery)) { + matchesSearch = true; + break; + } + } + } + + if (!matchesSearch && firstDetail.containsKey('alias')) { + final dynamic aliasData = firstDetail['alias']; + if (aliasData is List) { + for (var a in aliasData) { + if (a != null && _normalizeString(a.toString()).contains(normalizedQuery)) { + matchesSearch = true; + break; + } + } + } + } + + if (!matchesSearch) return false; + } + + if (song != null) { + if (_filterFromVersion != null && song.from != _filterFromVersion) return false; + if (_filterGenre != null && song.genre != _filterGenre) return false; + } else { + if (_filterFromVersion != null || _filterGenre != null) { + return false; + } + } + + bool hasMatchingDetail = details.any((detail) { + if (_filterLevelType != null && detail['level'] != _filterLevelType) return false; + if (_filterRank != null && detail['scoreRank'] != _filterRank) return false; + + double currentLevel = (detail['level_info'] ?? 0).toDouble(); + if (_selectedMinLevel != null && currentLevel < _selectedMinLevel!) return false; + if (_selectedMaxLevel != null && currentLevel > _selectedMaxLevel!) return false; + + double currentAch = (detail['achievement'] ?? 0).toDouble(); + if (minAchVal != null) { + if (currentAch / 10000 < minAchVal) return false; + } + + if (_filterComboStatus != null && detail['comboStatus'] != _filterComboStatus) return false; + if (_filterSyncStatus != null && detail['syncStatus'] != _filterSyncStatus) return false; + + return true; + }); + + return hasMatchingDetail; + }).toList(); + } + + result.sort((a, b) { + final detailsA = a['userMusicDetailList'] as List? ?? []; + final detailsB = b['userMusicDetailList'] as List? ?? []; + + int maxRatingA = 0; + for (var d in detailsA) { + int r = d['rating'] ?? 0; + if (r > maxRatingA) maxRatingA = r; + } + + int maxRatingB = 0; + for (var d in detailsB) { + int r = d['rating'] ?? 0; + if (r > maxRatingB) maxRatingB = r; + } + + return maxRatingB.compareTo(maxRatingA); + }); + + return result; + } + + void _resetFilters() { + setState(() { + _searchQuery = ''; + _filterLevelType = null; + _filterRank = null; + _filterFromVersion = null; + _filterGenre = null; + _selectedMinLevel = null; + _selectedMaxLevel = null; + _minAchievement = null; + _filterComboStatus = null; + _filterSyncStatus = null; + }); + _minAchievementController.clear(); + _minLevelScrollController.jumpToItem(0); + _maxLevelScrollController.jumpToItem(_levelOptions.length - 1); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text("我的成绩"), + actions: [ + if (_isRefreshing) + const Padding( + padding: EdgeInsets.all(8.0), + child: SizedBox(width: 20, height: 20, child: CircularProgressIndicator(strokeWidth: 2)), + ) + else + IconButton(icon: const Icon(Icons.refresh), onPressed: () => _loadData(isInitialLoad: false)) + ], + ), + body: Column( + children: [ + _buildDataSourceSelector(), + _buildFilterBar(), + Expanded( + child: Container( + child: _buildBody(), + ), + ), + ], + ), + ); + } + + /// 【核心修改】构建数据源选择器,支持国服多账号 + Widget _buildDataSourceSelector() { + final userProvider = UserProvider.instance; + final isSegaMode = userProvider.scoreDataSource == 'sega'; + + // 国服相关数据 + final cnUserNames = userProvider.availableCnUserNames; + final currentCnUserName = userProvider.selectedCnUserName; + + // Sega相关数据 + final segaCards = userProvider.availableSegaCards; + final currentSegaId = userProvider.selectedSegaId; + + return Container( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8), + color: Theme.of(context).cardColor, + child: Row( + children: [ + const Text("数据源:", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 14)), + const SizedBox(width: 8), + Expanded( + child: ToggleButtons( + isSelected: [!isSegaMode, isSegaMode], + onPressed: (index) async { + final newSource = index == 0 ? 'cn' : 'sega'; + await userProvider.setScoreDataSource(newSource); + }, + borderRadius: BorderRadius.circular(8), + selectedBorderColor: Theme.of(context).primaryColor, + selectedColor: Colors.white, + fillColor: Colors.deepPurple, + color: Colors.grey, + constraints: const BoxConstraints(minHeight: 30, minWidth: 70), + children: const [ + Text("国服"), + Text("INTL/JP"), + ], + ), + ), + const SizedBox(width: 8), + Expanded( + flex: 1, + child: DropdownButtonHideUnderline( + child: DropdownButtonFormField( + // 如果是 Sega 模式,显示 SegaID;如果是国服模式,显示用户名 + value: isSegaMode + ? currentSegaId + : (currentCnUserName != null && currentCnUserName.isNotEmpty ? currentCnUserName : null), decoration: InputDecoration( + hintText: isSegaMode ? "选择卡片" : "选择账号", + border: OutlineInputBorder(borderRadius: BorderRadius.circular(8)), + contentPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 0), + isDense: false, + ), + items: isSegaMode + ? segaCards.map((card) { + return DropdownMenuItem( + value: card.segaId, + child: Text(card.segaId ?? "Unknown ID", overflow: TextOverflow.ellipsis), + ); + }).toList() + : [ + // 国服选项:第一个是“全部/默认”,其余是具体用户名 + const DropdownMenuItem( + value: null, + child: Text("全部/默认", overflow: TextOverflow.ellipsis), + ), + ...cnUserNames.map((name) { + return DropdownMenuItem( + value: name, + child: Text(name, overflow: TextOverflow.ellipsis), + ); + }).toList() + ], + onChanged: (val) async { + if (isSegaMode) { + await userProvider.setSelectedSegaId(val); + } else { + await userProvider.setSelectedCnUserName(val); + } + }, + ), + ), + ), + ], + ), + ); + } + + Widget _buildFilterBar() { + return Container( + color: Theme.of(context).cardColor, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Padding( + padding: const EdgeInsets.fromLTRB(12, 8, 12, 8), + child: Row( + children: [ + Expanded( + child: TextField( + decoration: InputDecoration( + hintText: "搜歌名/别名/艺术家/ID...", + prefixIcon: const Icon(Icons.search), + border: OutlineInputBorder(borderRadius: BorderRadius.circular(25)), + contentPadding: const EdgeInsets.symmetric(vertical: 0, horizontal: 16), + isDense: true, + ), + onChanged: (val) { setState(() { _searchQuery = val; }); }, + ), + ), + IconButton( + icon: Icon(_isAdvancedFilterExpanded ? Icons.expand_less : Icons.expand_more), + onPressed: () { + setState(() { + _isAdvancedFilterExpanded = !_isAdvancedFilterExpanded; + if (_isAdvancedFilterExpanded) { + _animationController.forward(); + } else { + _animationController.reverse(); + } + }); + }, + ), + if (_hasActiveFilters()) + IconButton( + icon: const Icon(Icons.clear, color: Colors.redAccent), + onPressed: _resetFilters, + ) + ], + ), + ), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4), + child: Row( + children: [ + Expanded( + child: _buildDropdown( + label: "难度", + value: _filterLevelType, + items: const [ + DropdownMenuItem(value: null, child: Text("全部")), + DropdownMenuItem(value: 0, child: Text("Basic")), + DropdownMenuItem(value: 1, child: Text("Advanced")), + DropdownMenuItem(value: 2, child: Text("Expert")), + DropdownMenuItem(value: 3, child: Text("Master")), + DropdownMenuItem(value: 4, child: Text("Re:Master")), + ], + onChanged: (val) => setState(() => _filterLevelType = val), + ), + ), + const SizedBox(width: 8), + Expanded( + child: _buildDropdown( + label: "评级", + value: _filterRank, + items: const [ + DropdownMenuItem(value: null, child: Text("全部")), + DropdownMenuItem(value: 13, child: Text("SSS+")), + DropdownMenuItem(value: 12, child: Text("SSS")), + DropdownMenuItem(value: 10, child: Text("SS")), + DropdownMenuItem(value: 8, child: Text("S")), + DropdownMenuItem(value: 5, child: Text("A")), + ], + onChanged: (val) => setState(() => _filterRank = val), + ), + ), + ], + ), + ), + SizeTransition( + sizeFactor: _animation, + axisAlignment: -1.0, + child: Container( + padding: const EdgeInsets.all(12), + decoration: BoxDecoration( + color: Colors.grey.withAlpha(20), + border: Border(top: BorderSide(color: Colors.grey.shade300)), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Expanded( + child: _buildDropdown( + label: "版本", + value: _filterFromVersion, + items: [ + const DropdownMenuItem(value: null, child: Text("全部")), + ..._availableVersions.map((v) => DropdownMenuItem(value: v, child: Text(v))).toList() + ], + onChanged: (val) => setState(() => _filterFromVersion = val), + ), + ), + const SizedBox(width: 8), + Expanded( + child: _buildDropdown( + label: "流派", + value: _filterGenre, + items: [ + const DropdownMenuItem(value: null, child: Text("全部")), + ..._availableGenres.map((g) => DropdownMenuItem(value: g, child: Text(g))).toList() + ], + onChanged: (val) => setState(() => _filterGenre = val), + ), + ), + ], + ), + const SizedBox(height: 8), + InkWell( + onTap: _showLevelPickerDialog, + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 12), + decoration: BoxDecoration( + border: Border.all(color: Colors.grey.shade400), + borderRadius: BorderRadius.circular(4), + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text("定数范围", style: TextStyle(fontWeight: FontWeight.bold)), + Text(_getLevelRangeText(), style: TextStyle(color: Colors.grey[600], fontSize: 14)), + const Icon(Icons.arrow_drop_down, color: Colors.grey), + ], + ), + ), + ), + const SizedBox(height: 8), + TextField( + controller: _minAchievementController, + decoration: const InputDecoration( + labelText: "最小达成率 (%)", + isDense: true, + contentPadding: EdgeInsets.symmetric(horizontal: 8, vertical: 8), + ), + keyboardType: const TextInputType.numberWithOptions(decimal: true), + onChanged: (val) { + setState(() { + if (val.isEmpty) { + _minAchievement = null; + } else { + _minAchievement = double.tryParse(val); + } + }); + }, + ), + const SizedBox(height: 8), + Row( + children: [ + Expanded( + child: _buildDropdown( + label: "Combo", + value: _filterComboStatus, + items: const [ + DropdownMenuItem(value: null, child: Text("全部")), + DropdownMenuItem(value: 0, child: Text("无")), + DropdownMenuItem(value: 1, child: Text("FC")), + DropdownMenuItem(value: 2, child: Text("FC+")), + DropdownMenuItem(value: 3, child: Text("AP")), + DropdownMenuItem(value: 4, child: Text("AP+")), + ], + onChanged: (val) => setState(() => _filterComboStatus = val), + ), + ), + const SizedBox(width: 8), + Expanded( + child: _buildDropdown( + label: "Sync", + value: _filterSyncStatus, + items: const [ + DropdownMenuItem(value: null, child: Text("全部")), + DropdownMenuItem(value: 0, child: Text("无")), + DropdownMenuItem(value: 1, child: Text("FS")), + DropdownMenuItem(value: 2, child: Text("FS+")), + DropdownMenuItem(value: 3, child: Text("FDX")), + DropdownMenuItem(value: 4, child: Text("FDX+")), + DropdownMenuItem(value: 5, child: Text("Sync")), + ], + onChanged: (val) => setState(() => _filterSyncStatus = val), + ), + ), + ], + ), + ], + ), + ), + ), + ], + ), + ); + } + + void _showLevelPickerDialog() { + int targetMinIndex = 0; + if (_selectedMinLevel != null) { + int idx = _levelOptions.indexOf(_selectedMinLevel!); + if (idx != -1) targetMinIndex = idx; + } + int targetMaxIndex = _levelOptions.length - 1; + if (_selectedMaxLevel != null) { + int idx = _levelOptions.indexOf(_selectedMaxLevel!); + if (idx != -1) targetMaxIndex = idx; + } + + showModalBottomSheet( + context: context, + shape: const RoundedRectangleBorder( + borderRadius: BorderRadius.vertical(top: Radius.circular(16)), + ), + builder: (context) { + WidgetsBinding.instance.addPostFrameCallback((_) { + _minLevelScrollController.jumpToItem(targetMinIndex); + _maxLevelScrollController.jumpToItem(targetMaxIndex); + }); + + return Container( + height: 300, + padding: const EdgeInsets.only(top: 16), + child: Column( + children: [ + Padding( + padding: const EdgeInsets.symmetric(horizontal: 16), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + TextButton( + onPressed: () { + setState(() { + _selectedMinLevel = null; + _selectedMaxLevel = null; + }); + Navigator.pop(context); + }, + child: const Text("重置", style: TextStyle(color: Colors.red)), + ), + const Text("选择定数范围", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), + TextButton( + onPressed: () { + final minIndex = _minLevelScrollController.selectedItem; + final maxIndex = _maxLevelScrollController.selectedItem; + double minVal = _levelOptions[minIndex]; + double maxVal = _levelOptions[maxIndex]; + if (minVal > maxVal) { + final temp = minVal; + minVal = maxVal; + maxVal = temp; + } + setState(() { + _selectedMinLevel = minVal; + _selectedMaxLevel = maxVal; + }); + Navigator.pop(context); + }, + child: const Text("确定", style: TextStyle(fontWeight: FontWeight.bold)), + ), + ], + ), + ), + const Divider(), + Expanded( + child: Row( + children: [ + Expanded( + child: Column( + children: [ + const Padding(padding: EdgeInsets.only(bottom: 8), child: Text("最小定数", style: TextStyle(fontSize: 12, color: Colors.grey))), + Expanded( + child: CupertinoPicker( + scrollController: _minLevelScrollController, + itemExtent: 40, + onSelectedItemChanged: (index) {}, + children: _levelOptions.map((level) { + return Center( + child: Text( + level.toStringAsFixed(1), + style: const TextStyle(fontSize: 18,color: Colors.redAccent), + ), + ); + }).toList(), + ), + ), + ], + ), + ), + Expanded( + child: Column( + children: [ + const Padding(padding: EdgeInsets.only(bottom: 8), child: Text("最大定数", style: TextStyle(fontSize: 12, color: Colors.grey))), + Expanded( + child: CupertinoPicker( + scrollController: _maxLevelScrollController, + itemExtent: 40, + onSelectedItemChanged: (index) {}, + children: _levelOptions.map((level) { + return Center( + child: Text( + level.toStringAsFixed(1), + style: const TextStyle(fontSize: 18,color: Colors.green), + ), + ); + }).toList(), + ), + ), + ], + ), + ), + ], + ), + ), + ], + ), + ); + }, + ); + } + + String _getLevelRangeText() { + if (_selectedMinLevel == null && _selectedMaxLevel == null) { + return "全部"; + } + final min = _selectedMinLevel?.toStringAsFixed(1) ?? "1.0"; + final max = _selectedMaxLevel?.toStringAsFixed(1) ?? "15.0"; + return "$min ~ $max"; + } + + Widget _buildDropdown({ + required String label, + required dynamic value, + required List> items, + required ValueChanged onChanged, + }) { + return DropdownButtonFormField( + value: value, + isExpanded: true, + decoration: InputDecoration( + labelText: label, + border: const OutlineInputBorder(), + contentPadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 12), + isDense: false, + ), + style: Theme.of(context).textTheme.bodyMedium, + items: items.map((item) { + String textContent = ''; + if (item.child is Text) { + textContent = (item.child as Text).data ?? ''; + } else if (item.child is String) { + textContent = item.child as String; + } + return DropdownMenuItem( + value: item.value, + child: Container( + padding: const EdgeInsets.symmetric(vertical: 4.0), + child: Text( + textContent, + softWrap: true, + overflow: TextOverflow.visible, + style: Theme.of(context).textTheme.bodyMedium?.copyWith(height: 1.2), + ), + ), + ); + }).toList(), + onChanged: onChanged, + ); + } + + bool _hasActiveFilters() { + return _searchQuery.isNotEmpty || + _filterLevelType != null || + _filterRank != null || + _filterFromVersion != null || + _filterGenre != null || + _selectedMinLevel != null || + _selectedMaxLevel != null || + _minAchievement != null || + _filterComboStatus != null || + _filterSyncStatus != null; + } + + Widget _buildBody() { + if (_isLoading && _userMusicList.isEmpty) { + if (_allSongs.isEmpty) { + return const Center(child: CircularProgressIndicator()); + } + return const Center(child: CircularProgressIndicator()); + } + + if (_errorMessage.isNotEmpty && _userMusicList.isEmpty) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text(_errorMessage, style: const TextStyle(color: Colors.red)), + const SizedBox(height: 20), + ElevatedButton(onPressed: () => _loadData(isInitialLoad: true), child: const Text("重试")) + ], + ), + ); + } + + final filteredList = _filteredMusicList; + + if (filteredList.isEmpty) { + return const Center(child: Text("没有找到匹配的成绩")); + } + + final stats = _filterStats; + final songCount = stats['songCount'] as int; + final scoreCount = stats['scoreCount'] as int; + final maxRating = stats['maxRating'] as int; + + return Column( + children: [ + Padding( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6), + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8), + decoration: BoxDecoration( + color: Theme.of(context).cardColor, + borderRadius: BorderRadius.circular(8), + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceAround, + children: [ + Column( + children: [ + const Text("歌曲", style: TextStyle(color: Colors.grey, fontSize: 12)), + const SizedBox(height: 2), + Text("$songCount", style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), + ], + ), + Column( + children: [ + const Text("成绩", style: TextStyle(color: Colors.grey, fontSize: 12)), + const SizedBox(height: 2), + Text("$scoreCount", style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), + ], + ), + Column( + children: [ + const Text("最高Rating", style: TextStyle(color: Colors.grey, fontSize: 12)), + const SizedBox(height: 2), + Text("$maxRating", style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16)), + ], + ), + ], + ), + ), + ), + Expanded( + child: ListView.builder( + itemCount: filteredList.length, + cacheExtent: 500, + itemBuilder: (context, index) { + final musicGroup = filteredList[index]; + final details = musicGroup['userMusicDetailList'] as List? ?? []; + if (details.isEmpty) return const SizedBox.shrink(); + + final firstDetail = details[0]; + final int musicId = firstDetail['musicId']; + + final info = _getSongDisplayInfo(musicId); + final SongModel? songInfo = info['song'] as SongModel?; + + String rawTitle = info['title'] as String; + if (songInfo == null && firstDetail.containsKey('musicName')) { + rawTitle = firstDetail['musicName'] ?? rawTitle; + } + + final String displayTitle = "[$musicId] $rawTitle"; + final String artist = songInfo?.artist ?? (firstDetail['artist'] ?? 'Unknown Artist'); + final String coverUrl = _getCoverUrl(musicId); + + return Card( + margin: const EdgeInsets.symmetric(horizontal: 10, vertical: 6), + clipBehavior: Clip.antiAlias, + elevation: 6, + shadowColor: Colors.purpleAccent.withOpacity(0.3), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + child: ExpansionTile( + tilePadding: const EdgeInsets.symmetric(horizontal: 12, vertical: 4), + leading: GestureDetector( + onTap: () { + _shareImageViaSystem(coverUrl, rawTitle); + }, + child: ClipRRect( + borderRadius: BorderRadius.circular(4), + child: Stack( + children: [ + Image.network( + coverUrl, + width: 50, + height: 50, + fit: BoxFit.cover, + loadingBuilder: (context, child, loadingProgress) { + if (loadingProgress == null) return child; + return Container( + width: 50, + height: 50, + color: Colors.grey[200], + child: const Center( + child: SizedBox( + width: 15, + height: 15, + child: CircularProgressIndicator( + strokeWidth: 2))), + ); + }, + errorBuilder: (context, error, stackTrace) { + return Container( + width: 50, + height: 50, + color: Colors.grey[300], + child: const Icon(Icons.music_note, + color: Colors.grey), + ); + }, + ), + Positioned( + right: 0, + bottom: 0, + child: Container( + padding: const EdgeInsets.all(2), + decoration: BoxDecoration( + color: Colors.black.withOpacity(0.5), + borderRadius: const BorderRadius.only( + topLeft: Radius.circular(4), + ), + ), + child: const Icon( + Icons.share, + color: Colors.white, + size: 10, + ), + ), + ) + ], + ), + ), + ), + title: Text( + displayTitle, + style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16), + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + subtitle: Text( + artist, + maxLines: 1, + overflow: TextOverflow.ellipsis, + style: TextStyle(color: songInfo == null ? Colors.orange : null), + ), + children: details.map((detail) { + int comboStatus = detail['comboStatus'] ?? 0; + String comboText = ""; + Color comboColor = Colors.grey; + IconData? comboIcon; + + if (comboStatus == 1) { + comboText = "FC"; + comboColor = Colors.green; + comboIcon = Icons.star; + } else if (comboStatus == 2) { + comboText = "FC+"; + comboColor = Colors.green; + comboIcon = Icons.diamond; + } else if (comboStatus == 3) { + comboText = "AP"; + comboColor = Colors.deepOrange; + comboIcon = Icons.diamond; + }else if (comboStatus == 4) { + comboText = "AP+"; + comboColor = Colors.purpleAccent; + comboIcon = Icons.diamond; + } + + int syncStatus = detail['syncStatus'] ?? 0; + String syncText = ""; + Color syncColor = Colors.grey; + IconData? syncIcon; + + if (syncStatus == 1) { + syncText = "FS"; + syncColor = Colors.lightBlueAccent; + syncIcon = Icons.check_circle_outline; + } else if (syncStatus == 2) { + syncText = "FS+"; + syncColor = Colors.lightBlueAccent; + syncIcon = Icons.check_circle; + } else if (syncStatus == 3) { + syncText = "FDX"; + syncColor = Colors.orangeAccent; + syncIcon = Icons.check_circle; + } else if (syncStatus == 4) { + syncText = "FDX+"; + syncColor = Colors.orangeAccent; + syncIcon = Icons.auto_awesome; + } else if (syncStatus == 5) { + syncText = "Sync"; + syncColor = Colors.blueAccent; + syncIcon = Icons.auto_awesome; + } + + return ListTile( + contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), + title: Row( + children: [ + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + color: Colors.white70, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + _getLevelName(detail['level']), + style: TextStyle( + color: _getLevelColor(detail['level']), + fontWeight: FontWeight.bold, + fontSize: 12 + ), + ), + ), + const SizedBox(width: 8), + Text( + "Lv.${detail['level_info']}", + style: const TextStyle(fontSize: 14, color: Colors.grey, fontWeight: FontWeight.w500), + ), + ], + ), + subtitle: Padding( + padding: const EdgeInsets.only(top: 8.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Icon(Icons.play_circle_outline, size: 16, color: Colors.grey[600]), + const SizedBox(width: 4), + Text( + "Play: ${detail['playCount'] ?? 0}", + style: TextStyle(fontSize: 12, color: Colors.grey[700]), + ), + const SizedBox(width: 12), + Icon(Icons.score, size: 16, color: Colors.grey[600]), + const SizedBox(width: 4), + Text( + "DX: ${detail['deluxscoreMax'] ?? 0}", + style: TextStyle(fontSize: 12, color: Colors.grey[700]), + ), + const SizedBox(width: 12), + Icon(Icons.attach_file, size: 16, color: Colors.grey[600]), + const SizedBox(width: 4), + Text( + "Rating: ${detail['rating'] ?? 0}", + style: TextStyle(fontSize: 12, color: Colors.grey[700]), + ), + ], + ), + const SizedBox(height: 4), + Row( + children: [ + if (comboStatus > 0) + Container( + margin: const EdgeInsets.only(right: 8), + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(4), + border: Border.all(color: comboColor.withAlpha(100)), + ), + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + if (comboIcon != null) Icon(comboIcon, size: 12, color: comboColor), + if (comboIcon != null) const SizedBox(width: 2), + Text(comboText, style: TextStyle(fontSize: 14, color: comboColor, fontWeight: FontWeight.bold)), + ], + ), + ), + + if (syncStatus > 0) + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(4), + border: Border.all(color: syncColor.withAlpha(100)), + ), + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + if (syncIcon != null) Icon(syncIcon, size: 12, color: syncColor), + if (syncIcon != null) const SizedBox(width: 2), + Text(syncText, style: TextStyle(fontSize: 14, color: syncColor, fontWeight: FontWeight.bold)), + ], + ), + ), + ], + ), + ], + ), + ), + trailing: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.end, + children: [ + Text( + "${(detail['achievement'] / 10000).toStringAsFixed(4)}%", + style: const TextStyle(fontSize: 15, fontWeight: FontWeight.bold), + ), + const SizedBox(height: 4), + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + color: _getRankColor(detail['scoreRank']), + borderRadius: BorderRadius.circular(4), + ), + child: Text( + _getRankText(detail['scoreRank']), + style: const TextStyle(color: Colors.white, fontSize: 10, fontWeight: FontWeight.bold), + ), + ) + ], + ), + ); + }).toList(), + ), + ); + }, + ), + ), + ], + ); + } + + String _getLevelName(dynamic level) { + switch (level) { + case 0: return "BAS"; + case 1: return "ADV"; + case 2: return "EXP"; + case 3: return "MAS"; + case 4: return "ReM"; + default: return "Lv.$level"; + } + } + + Color _getLevelColor(dynamic level) { + if (level is int) { + switch (level) { + case 0: return Colors.green; + case 1: return Colors.yellow[700]!; + case 2: return Colors.red; + case 3: return Colors.purple; + case 4: return Colors.purpleAccent.withOpacity(0.4); + default: return Colors.black; + } + } + return Colors.black; + } + + Color _getRankColor(int rank) { + return Colors.blueGrey; + } + + String _getRankText(int rank) { + switch (rank) { + case 13: return "SSS+"; + case 12: return "SSS"; + case 11: return "SS+"; + case 10: return "SS"; + case 9: return "S+"; + case 8: return "S"; + case 7: return "AAA"; + case 6: return "AA"; + case 5: return "A"; + case 4: return "BBB"; + case 3: return "BB"; + case 2: return "B"; + case 1: return "C"; + default: return "D"; + } + } + + Map get _filterStats { + final list = _filteredMusicList; + int songCount = list.length; + int scoreCount = 0; + int maxRating = 0; + + for (var group in list) { + final details = group['userMusicDetailList'] as List? ?? []; + scoreCount += details.length; + for (var d in details) { + int r = d['rating'] ?? 0; + if (r > maxRating) maxRating = r; + } + } + + return { + 'songCount': songCount, + 'scoreCount': scoreCount, + 'maxRating': maxRating, + }; + } + + Future _shareImageViaSystem(String imageUrl, String title) async { + if (imageUrl.isEmpty) return; + try { + final dio = Dio(); + final response = await dio.get>( + imageUrl, + options: Options(responseType: ResponseType.bytes), + ); + if (response.data == null || response.data!.isEmpty) { + throw Exception("图片数据为空"); + } + final tempDir = await getTemporaryDirectory(); + final ext = imageUrl.endsWith('.jpg') || imageUrl.endsWith('.jpeg') ? 'jpg' : 'png'; + final fileName = 'shared_img_${DateTime.now().millisecondsSinceEpoch}.$ext'; + final file = File('${tempDir.path}/$fileName'); + await file.writeAsBytes(response.data!); + await Share.shareXFiles( + [XFile(file.path)], + text: "推荐歌曲:$title", + ); + } catch (e) { + debugPrint("分享失败: $e"); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text("分享失败: $e")), + ); + } + } + } +} \ No newline at end of file diff --git a/lib/pages/scorelist.dart b/lib/pages/scorelist.dart new file mode 100644 index 0000000..828dbc0 --- /dev/null +++ b/lib/pages/scorelist.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class ScoreListPage extends StatelessWidget { + const ScoreListPage({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text("评分列表")), + body: const Center( + child: Text("评分列表页面 - 可自由编写 UI", style: TextStyle(fontSize: 22)), + ), + ); + } +} \ No newline at end of file diff --git a/lib/pages/setting_page.dart b/lib/pages/setting_page.dart new file mode 100644 index 0000000..8a4a70e --- /dev/null +++ b/lib/pages/setting_page.dart @@ -0,0 +1,31 @@ +import 'package:flutter/material.dart'; + +class SettingPage extends StatelessWidget { + const SettingPage({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + // 注意:这里不需要 bottomNavigationBar 了,因为外层已经有了 + backgroundColor: Colors.transparent, // 关键:背景透明,透出玻璃效果 + body: CustomScrollView( + slivers: [ + SliverAppBar.large( + title: const Text('首页'), + floating: true, + backgroundColor: Colors.blueAccent.withOpacity(0.8), + ), + SliverList( + delegate: SliverChildBuilderDelegate( + (context, index) => ListTile( + title: Text('列表项 $index'), + leading: const Icon(Icons.article), + ), + childCount: 20, + ), + ), + ], + ), + ); + } +} \ No newline at end of file diff --git a/lib/pages/songlistpage.dart b/lib/pages/songlistpage.dart new file mode 100644 index 0000000..1855d87 --- /dev/null +++ b/lib/pages/songlistpage.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class SongListPage extends StatelessWidget { + const SongListPage({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text("歌曲列表")), + body: const Center( + child: Text("歌曲列表页面 - 可自由编写 UI", style: TextStyle(fontSize: 22)), + ), + ); + } +} \ No newline at end of file diff --git a/lib/pages/user/login_page.dart b/lib/pages/user/login_page.dart new file mode 100644 index 0000000..3b4e7a8 --- /dev/null +++ b/lib/pages/user/login_page.dart @@ -0,0 +1,317 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import '../../providers/user_provider.dart'; + +class LoginPage extends StatefulWidget { + const LoginPage({super.key}); + + @override + State createState() => _LoginPageState(); +} + +class _LoginPageState extends State { + bool isRegisterMode = false; + bool isLoading = false; + + final usernameController = TextEditingController(); + final passwordController = TextEditingController(); + final inviterController = TextEditingController(); + String errorMessage = ''; + + // 定义主题粉色 + static const _pinkColor = Color(0xFFFFC0D6); + + Future submit() async { + // 基本验证 + if (usernameController.text.trim().isEmpty || passwordController.text.trim().isEmpty) { + setState(() => errorMessage = '用户名和密码不能为空'); + return; + } + + setState(() { + isLoading = true; + errorMessage = ''; + }); + + final userProvider = Provider.of(context, listen: false); + + try { + if (isRegisterMode) { + await userProvider.register( + usernameController.text.trim(), + passwordController.text.trim(), + inviterController.text.trim(), + ); + } else { + await userProvider.login( + usernameController.text.trim(), + passwordController.text.trim(), + ); + } + + if (mounted) { + Navigator.of(context).pop(); + } + } catch (e) { + if (mounted) { + setState(() => errorMessage = e.toString().replaceAll('Exception: ', '')); + } + } finally { + if (mounted) { + setState(() => isLoading = false); + } + } + } + + @override + void dispose() { + usernameController.dispose(); + passwordController.dispose(); + inviterController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final theme = Theme.of(context); + final isDark = theme.brightness == Brightness.dark; + + return Scaffold( + backgroundColor: isDark ? Colors.black : Colors.white, + appBar: AppBar( + title: Text(isRegisterMode ? '创建账号' : '欢迎回来'), + centerTitle: true, + elevation: 0, + backgroundColor: Colors.transparent, + ), + body: Container( + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: isDark + ? [Colors.black, Colors.grey[900]!] + : [Colors.white, Colors.grey[50]!], + ), + ), + alignment: Alignment.center, + padding: const EdgeInsets.all(24), + child: Transform.translate( + offset: const Offset(0, -30), + child: SingleChildScrollView( + child: ConstrainedBox( + constraints: const BoxConstraints(maxWidth: 400), + child: Card( + elevation: 8, + shadowColor: _pinkColor.withOpacity(0.3), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(20), + ), + color: isDark ? Colors.grey[850] : Colors.white, + child: Padding( + padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 32), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + // 头像/图标区域 - 已修改为黑白粉主题 + Container( + padding: const EdgeInsets.all(20), + decoration: BoxDecoration( + color: _pinkColor.withOpacity(0.15), + shape: BoxShape.circle, + ), + child: Icon( + // 更换为更美观的人物头像类图标 + isRegisterMode ? Icons.person_add_rounded : Icons.person_rounded, + size: 48, + color: _pinkColor, + ), + ), + const SizedBox(height: 24), + + Text( + isRegisterMode ? '注册新账号' : '账号登录', + style: TextStyle( + fontSize: 24, + fontWeight: FontWeight.bold, + color: isDark ? Colors.white : Colors.black87, + ), + ), + const SizedBox(height: 8), + Text( + isRegisterMode ? '请填写以下信息' : '请输入您的凭证以继续', + style: TextStyle( + fontSize: 14, + color: isDark ? Colors.grey[400] : Colors.grey[600], + ), + textAlign: TextAlign.center, + ), + + const SizedBox(height: 24), + + if (errorMessage.isNotEmpty) + Container( + width: double.infinity, + padding: const EdgeInsets.all(12), + margin: const EdgeInsets.only(bottom: 16), + decoration: BoxDecoration( + color: Colors.red.withOpacity(0.1), + borderRadius: BorderRadius.circular(8), + border: Border.all(color: Colors.red.withOpacity(0.3)), + ), + child: Row( + children: [ + const Icon(Icons.error_outline, color: Colors.red, size: 20), + const SizedBox(width: 8), + Expanded( + child: Text( + errorMessage, + style: const TextStyle(color: Colors.red, fontSize: 13), + ), + ), + ], + ), + ), + + // 用户名输入框 + TextField( + controller: usernameController, + enabled: !isLoading, + decoration: InputDecoration( + labelText: '用户名', + prefixIcon: const Icon(Icons.person_outline, color: _pinkColor), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor), + ), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide(color: _pinkColor.withOpacity(0.5)), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor, width: 2), + ), + filled: true, + fillColor: isDark ? Colors.grey[800] : Colors.grey[50], + ), + ), + const SizedBox(height: 16), + + // 密码输入框 + TextField( + controller: passwordController, + obscureText: true, + enabled: !isLoading, + decoration: InputDecoration( + labelText: isRegisterMode ? '设置密码' : '密码 / TOTP验证码', + prefixIcon: const Icon(Icons.lock_outline, color: _pinkColor), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor), + ), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide(color: _pinkColor.withOpacity(0.5)), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor, width: 2), + ), + filled: true, + fillColor: isDark ? Colors.grey[800] : Colors.grey[50], + ), + ), + + if (isRegisterMode) ...[ + const SizedBox(height: 16), + TextField( + controller: inviterController, + enabled: !isLoading, + decoration: InputDecoration( + labelText: '邀请人 ID (可选)', + prefixIcon: const Icon(Icons.card_giftcard_outlined, color: _pinkColor), + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor), + ), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: BorderSide(color: _pinkColor.withOpacity(0.5)), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(12), + borderSide: const BorderSide(color: _pinkColor, width: 2), + ), + filled: true, + fillColor: isDark ? Colors.grey[800] : Colors.grey[50], + ), + ), + ], + + const SizedBox(height: 24), + + // 登录/注册按钮 + SizedBox( + width: double.infinity, + height: 50, + child: ElevatedButton( + onPressed: isLoading ? null : submit, + style: ElevatedButton.styleFrom( + backgroundColor: _pinkColor, + foregroundColor: Colors.black, + elevation: 2, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + child: isLoading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + valueColor: AlwaysStoppedAnimation(Colors.black), + ), + ) + : Text( + isRegisterMode ? '立即注册' : '登录', + style: const TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + ), + ), + + const SizedBox(height: 16), + + // 切换登录/注册 + TextButton( + onPressed: isLoading + ? null + : () { + setState(() { + isRegisterMode = !isRegisterMode; + errorMessage = ''; + }); + }, + child: Text( + isRegisterMode + ? '已有账号?去登录' + : '没有账号?去注册', + style: const TextStyle( + color: _pinkColor, + fontWeight: FontWeight.w500, + fontSize: 14, + ), + ), + ), + ], + ), + ), + ), + ), + ), + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/pages/user/userpage.dart b/lib/pages/user/userpage.dart new file mode 100644 index 0000000..6441514 --- /dev/null +++ b/lib/pages/user/userpage.dart @@ -0,0 +1,1626 @@ +import 'dart:math' as math; + +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:provider/provider.dart'; +import 'package:url_launcher/url_launcher.dart'; +import 'package:dio/dio.dart'; + +import '../../model/user_model.dart'; +import '../../providers/user_provider.dart'; +import 'login_page.dart'; + +class UserPage extends StatefulWidget { + const UserPage({super.key}); + + @override + State createState() => _UserPageState(); +} + +class _UserPageState extends State { + final _nameController = TextEditingController(); + final _emailController = TextEditingController(); + final _sexController = TextEditingController(); + final _bioController = TextEditingController(); + final _dfUserController = TextEditingController(); + final _dfPwdController = TextEditingController(); + final _lxKeyController = TextEditingController(); + static const _pinkColor = Color(0xFFFFC0D6); + + // 开关状态 + bool _isDisagreeRecommend = false; + bool _isDisagreeFriend = false; + Map? _radarData; + +// 获取雷达图方法 + Future _loadRadarData() async { + final provider = Provider.of(context, listen: false); + try { + final data = await provider.fetchRadarData("684a6ee7f62aed83538ded34"); + setState(() { + _radarData = data; + }); + if(mounted){ + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("雷达图数据加载成功 ✅")), + ); + } + } catch (e) { + if(mounted){ + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text("加载失败:$e")), + ); + } + } + } + @override + void initState() { + _loadRadarData; + super.initState(); + WidgetsBinding.instance.addPostFrameCallback((_) { + final provider = Provider.of(context, listen: false); + provider.fetchSexTags(); + }); + } + + @override + void didChangeDependencies() { + super.didChangeDependencies(); + final user = Provider.of(context).user; + _nameController.text = user?.name ?? ''; + _emailController.text = user?.email ?? ''; + _sexController.text = user?.sex ?? ''; + _bioController.text = user?.bio ?? ''; + _dfUserController.text = user?.dfUsername ?? ''; + _dfPwdController.text = user?.dfPassword ?? ''; + _lxKeyController.text = user?.lxKey ?? ''; + + // 初始化开关 + _isDisagreeRecommend = user?.isDisagreeRecommend ?? false; + _isDisagreeFriend = user?.isDisagreeFriend ?? false; + } + + @override + void dispose() { + _nameController.dispose(); + _emailController.dispose(); + _sexController.dispose(); + _bioController.dispose(); + _dfUserController.dispose(); + _dfPwdController.dispose(); + _lxKeyController.dispose(); + super.dispose(); + } + + // 2. 添加打开链接的方法 + Future _launchURL(String urlString) async { + final Uri url = Uri.parse(urlString); + if (!await launchUrl(url, mode: LaunchMode.externalApplication)) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('无法打开链接: $urlString')), + ); + } + } + } + + Future _verifyShuiyu() async { + final username = _dfUserController.text.trim(); + final password = _dfPwdController.text.trim(); + + // 1. 判空校验 + if (username.isEmpty || password.isEmpty) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("请输入水鱼用户名和密码")), + ); + return; + } + + // 2. 显示加载提示 + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text("正在验证水鱼账号..."), + duration: Duration(seconds: 1), + ), + ); + } + + try { + // 3. 创建Dio实例,发送POST请求 + final dio = Dio(); + final response = await dio.post( + 'https://maimai.diving-fish.com/api/maimaidxprober/login', + data: { + "username": username, + "password": password, + }, + // 可选:设置请求超时 + options: Options( + sendTimeout: const Duration(seconds: 10), + receiveTimeout: const Duration(seconds: 10), + ), + ); + + // 4. 解析返回结果 + final Map result = response.data; + + if (mounted) { + // 登录成功 + if (result['message'] == "登录成功") { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text("水鱼账号验证成功!"), + backgroundColor: Colors.green, + duration: Duration(seconds: 1), + ), + ); + // TODO: 验证成功后的逻辑(保存信息、跳转页面等) + } else { + // 账号密码错误 + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(result['message'] ?? "验证失败"), + duration: Duration(seconds: 1), + backgroundColor: Colors.red, + ), + ); + } + } + } on DioException catch (e) { + // 5. Dio网络错误处理(无网络、超时、服务器异常) + if (mounted) { + String errorMsg = "网络请求失败"; + if (e.type == DioExceptionType.connectionTimeout) { + errorMsg = "连接超时,请检查网络"; + } else if (e.type == DioExceptionType.receiveTimeout) { + errorMsg = "服务器响应超时"; + } else if (e.type == DioExceptionType.connectionError) { + errorMsg = "网络连接异常,请检查网络"; + } + + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(errorMsg), + backgroundColor: Colors.red, + ), + ); + } + } catch (e) { + // 其他未知错误 + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text("未知错误,请重试"), + backgroundColor: Colors.red, + duration: Duration(seconds: 1), + + ), + ); + } + } + } + + Future _verifyLuoxue() async { + final key = _lxKeyController.text.trim(); + + if (key.isEmpty) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("请输入落雪 lxKey")), + ); + return; + } + + try { + final dio = Dio(); + + // 发起请求 + final response = await dio.get( + 'https://maimai.lxns.net/api/v0/user/maimai/player', + options: Options( + headers: { + 'X-User-Token': key, + }, + ), + ); + + // ✅ 关键:解析外层响应 + 内层 data + final result = LuoxueResponse.fromJson(response.data); + + if (result.success && mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text("✅ 验证成功!玩家:${result.data.name}\nDX Rating:${result.data.rating}"), + ), + ); + + // 在这里可以使用完整的玩家数据 + // result.data.name + // result.data.rating + // result.data.friendCode + // result.data.trophy.name + } + } on DioException catch (e) { + String msg = "验证失败"; + if (e.response?.statusCode == 401) { + msg = "❌ lxKey 无效或已过期"; + } else if (e.type == DioExceptionType.connectionError) { + msg = "📶 网络连接失败"; + } + + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text(msg)), + ); + } + } + } + + void _showSexSelectDialog() { + final provider = Provider.of(context, listen: false); + final tags = provider.sexTags; + + showModalBottomSheet( + context: context, + isScrollControlled: true, + shape: const RoundedRectangleBorder( + borderRadius: BorderRadius.vertical(top: Radius.circular(16)), + ), + builder: (context) { + return Container( + padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 20), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Text( + "选择性别标签", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + const SizedBox(height: 16), + if (tags.isEmpty) + const Padding( + padding: EdgeInsets.all(20), + child: Text("暂无性别标签"), + ), + Wrap( + spacing: 8, + runSpacing: 8, + children: tags.map((tag) { + return ActionChip( + label: Text(tag), + onPressed: () { + _sexController.text = tag; + Navigator.pop(context); + }, + ); + }).toList(), + ), + const SizedBox(height: 30), + ], + ), + ); + }, + ); + } + + @override + Widget build(BuildContext context) { + final userProvider = Provider.of(context); + final UserModel? user = userProvider.user; + + if (user == null) { + return Scaffold( + appBar: AppBar(title: const Text("用户中心")), + body: Center( + + child: Transform.translate( + // Offset(水平, 垂直) + // 垂直向上:负值 + offset: const Offset(0, -40), // 往上移 10 像素 + child: _buildLoginCard( + onTap: () { + Navigator.push( + context, + MaterialPageRoute(builder: (_) => const LoginPage()), + ); + }, + ), + ) + ), + floatingActionButton: _buildFloatingBackButton(), + ); + } + + return Scaffold( + body: SingleChildScrollView( + padding: const EdgeInsets.symmetric(vertical: 24, horizontal: 20), + child: Center( + child: Container( + constraints: const BoxConstraints(maxWidth: 900), + child: Column( + children: [ + _buildProfileHeader(context, userProvider, user), + const SizedBox(height: 24), + + if (user.userCards != null && user.userCards!.isNotEmpty) + _buildUserCardSlider(userProvider, user), + const SizedBox(height: 24), + + _buildSectionCard([ + _buildItem("用户ID", user.id.toString()), + _buildEditableItem("用户名", _nameController), + _buildEditableItem("邮箱", _emailController), + _buildEditableSexItem(), + _buildEditableItem("个性签名", _bioController), + _buildItem("积分", user.points.toString()), + _buildItem("B50方案", user.useB50Type.toString()), + _buildCopyableItem(context, "API Key", user.apiKey), + _buildCopyableItem(context, "绑定 API Key", user.apiBindKey), + _buildItem("UserID", "****${user.userId.toString().substring(4)}"), + _buildItem("上次登录", _formatLastLoginTime(user.lastLoginTime)), + ]), + const SizedBox(height: 20), + + _buildScoreCheckerCard(user), + const SizedBox(height: 20), + + _buildSectionCard([ + _buildSwitchItem("禁止被推荐", _isDisagreeRecommend, (v) { + setState(() => _isDisagreeRecommend = v); + }), + _buildSwitchItem("禁止加好友", _isDisagreeFriend, (v) { + setState(() => _isDisagreeFriend = v); + }), + ]), + const SizedBox(height: 20), + + _buildSegaCard(user), + const SizedBox(height: 20), + _buildRadarChartSection(), + const SizedBox(height: 20), + + + + _buildSaveButton(userProvider), + const SizedBox(height: 12), + _buildLogoutButton(context, userProvider), + const SizedBox(height: 100), + + + ], + ), + ), + ), + ), + floatingActionButton: _buildFloatingBackButton(), + ); + } + + // 5. 修改 _buildScoreCheckerCard以添加按钮 + Widget _buildScoreCheckerCard(UserModel user) { + return _webCard( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text( + "第三方查分器绑定", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + const SizedBox(height: 16), + + // --- 水鱼部分 --- + const Text("水鱼查分器", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500)), + const SizedBox(height: 8), + TextField( + controller: _dfUserController, + decoration: const InputDecoration( + labelText: "用户名", + isDense: true, + border: OutlineInputBorder(), + ), + ), + const SizedBox(height: 8), + TextField( + controller: _dfPwdController, + obscureText: true, + decoration: const InputDecoration( + labelText: "密码", + isDense: true, + border: OutlineInputBorder(), + ), + ), + const SizedBox(height: 8), + // 水鱼操作按钮行 + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + TextButton.icon( + icon: const Icon(Icons.check_circle_outline, size: 18), + label: const Text("验证水鱼账号"), + onPressed: _verifyShuiyu, + ), + const SizedBox(width: 8), + TextButton.icon( + icon: const Icon(Icons.open_in_new, size: 18), + label: const Text("跳转水鱼官网"), + onPressed: () => _launchURL("https://www.diving-fish.com/"), // 替换为实际水鱼官网地址 + ), + ], + ), + + const SizedBox(height: 16), + + // --- 落雪部分 --- + const Text("落雪查分器", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500)), + const SizedBox(height: 8), + TextField( + controller: _lxKeyController, + decoration: const InputDecoration( + labelText: "lxKey", + isDense: true, + border: OutlineInputBorder(), + ), + ), + const SizedBox(height: 8), + // 落雪操作按钮行 + Row( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + TextButton.icon( + icon: const Icon(Icons.check_circle_outline, size: 18), + label: const Text("验证落雪账号"), + onPressed: _verifyLuoxue, + ), + const SizedBox(width: 8), + TextButton.icon( + icon: const Icon(Icons.open_in_new, size: 18), + label: const Text("跳转落雪官网"), + onPressed: () => _launchURL("https://maimai.lxns.net/"), // 替换为实际落雪官网地址 + ), + ], + ), + + const SizedBox(height: 16), + const Text("Mai2Links 账号", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500)), + const SizedBox(height: 8), + if (user.mai2links != null && user.mai2links!.isNotEmpty) + ...user.mai2links!.keys.map((name) { + final isUser = name.toLowerCase().contains("user"); + return Padding( + padding: const EdgeInsets.only(bottom: 6), + child: Row( + children: [ + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + color: isUser ? Colors.purpleAccent : Colors.green, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + isUser ? "用户账号" : "机台账号", + style: const TextStyle(color: Colors.white, fontSize: 12), + ), + ), + const SizedBox(width: 10), + Text("mai2Link用户 · $name"), + ], + ), + ); + }) + else + const Text("无mai2links绑定"), + const SizedBox(height: 20), + + const Text("国服多账号", style: TextStyle(fontSize: 15, fontWeight: FontWeight.w500)), + const SizedBox(height: 6), + if(user.userName2userId!=null && user.userName2userId!.isNotEmpty) + ...user.userName2userId!.keys.map((name) { + return Padding( + padding: const EdgeInsets.only(bottom: 6), + child: Row( + children: [ + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2), + decoration: BoxDecoration( + color: Colors.pinkAccent, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + "舞萌账号" , + style: const TextStyle(color: Colors.white, fontSize: 12), + ), + ), + const SizedBox(width: 10), + Text("国服用户 - $name"), + ], + ), + ); + }) + ], + ), + ); + } + + String _formatLastLoginTime(int? timestamp) { + if (timestamp == null || timestamp == 0) return "未登录"; + final date = DateTime.fromMillisecondsSinceEpoch(timestamp) + .toUtc() + .add(const Duration(hours: 8)); + return date.toString().substring(0, 19); + } + + Widget _buildEditableSexItem() { + return Padding( + padding: const EdgeInsets.symmetric(vertical: 7), + child: Row( + children: [ + const SizedBox(width: 120, child: Text("性别")), + Expanded( + child: TextField( + controller: _sexController, + decoration: InputDecoration( + isDense: true, + border: const UnderlineInputBorder(), + suffixIcon: IconButton( + icon: const Icon(Icons.arrow_drop_down, size: 20), + onPressed: _showSexSelectDialog, + ), + ), + enabled: true, + ), + ), + ], + ), + ); + } + + Widget _buildEditableItem(String label, TextEditingController controller) { + return Padding( + padding: const EdgeInsets.symmetric(vertical: 7), + child: Row( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + SizedBox(width: 120, child: Text(label)), + Expanded( + child: TextField( + controller: controller, + decoration: const InputDecoration( + isDense: true, + border: UnderlineInputBorder(), + ), + ), + ), + ], + ), + ); + } + + Future _refreshUserInfo() async { + final provider = Provider.of(context, listen: false); + await provider.initUser(); + final user = provider.user; + if (user != null) { + _nameController.text = user.name ?? ''; + _emailController.text = user.email ?? ''; + _sexController.text = user.sex ?? ''; + _bioController.text = user.bio ?? ''; + _dfUserController.text = user.dfUsername ?? ''; + _dfPwdController.text = user.dfPassword ?? ''; + _lxKeyController.text = user.lxKey ?? ''; + + setState(() { + _isDisagreeRecommend = user.isDisagreeRecommend ?? false; + _isDisagreeFriend = user.isDisagreeFriend ?? false; + }); + } + await provider.fetchSexTags(); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("用户信息已刷新 ✅")), + ); + } + } + + Widget _buildProfileHeader( + BuildContext context, UserProvider provider, UserModel user) { + final isDark = Theme.of(context).brightness == Brightness.dark; + return _webCard( + child: Row( + children: [ + ClipRRect( + borderRadius: BorderRadius.circular(8), + child: Image.network( + provider.avatarUrl, + width: 80, + height: 80, + fit: BoxFit.cover, + ), + ), + const SizedBox(width: 20), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + user.name ?? "Unknown", + style: const TextStyle(fontSize: 22, fontWeight: FontWeight.bold), + ), + const SizedBox(height: 6), + Text( + "Rating: ${user.rating ?? 0}", + style: TextStyle( + fontSize: 15, + color: isDark ? Colors.grey[400] : Colors.grey[600]), + ), + ], + ), + ), + ], + ), + ); + } + + Widget _buildFloatingBackButton() { + return Padding( + padding: const EdgeInsets.only(bottom: 100), + child: FloatingActionButton( + elevation: 6, + backgroundColor: Colors.black87, + onPressed: () async { + await _refreshUserInfo(); + if (mounted) { + Navigator.maybePop(context); + } + }, + child: const Icon(Icons.refresh, color: Colors.white), + ), + ); + } + + Widget _buildUserCardSlider(UserProvider provider, UserModel user) { + return _webCard( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text("用户卡牌", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600)), + const SizedBox(height: 12), + SizedBox( + height: 340, + child: PageView.builder( + itemCount: user.userCards!.length, + itemBuilder: (context, index) { + final card = user.userCards![index]; + return _buildSingleCard(card); + }, + ), + ), + ], + ), + ); + } + + Widget _buildSingleCard(dynamic card) { + final charaId = card.charaId?.toString().padLeft(6, '0') ?? "000000"; + final iconId = card.iconId?.toString().padLeft(6, '0') ?? "000000"; + + return Container( + margin: const EdgeInsets.symmetric(horizontal: 4), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(9), + image: DecorationImage( + image: NetworkImage( + "https://cdn.godserver.cn/resource/static/coll/Chara/UI_Chara_$charaId.png", + ), + fit: BoxFit.cover, + colorFilter: ColorFilter.mode( + Colors.black.withOpacity(0.4), BlendMode.darken), + ), + ), + child: Padding( + padding: const EdgeInsets.all(14), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.end, + children: [ + ClipRRect( + borderRadius: BorderRadius.circular(6), + child: Image.network( + "https://cdn.godserver.cn/resource/static/coll/Icon/UI_Icon_$iconId.png", + width: 50, + height: 50, + ), + ), + const SizedBox(height: 8), + Text( + card.username ?? "", + style: const TextStyle( + color: Colors.white, + fontSize: 16, + fontWeight: FontWeight.w600), + ), + Text("Rating: ${card.rating ?? 0}", + style: const TextStyle(color: Colors.white70)), + ], + ), + ), + ); + } + + Widget _buildSaveButton(UserProvider provider) { + return SizedBox( + width: double.infinity, + height: 50, + child: ElevatedButton( + style: ElevatedButton.styleFrom( + backgroundColor: Colors.greenAccent.shade400, + shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)), + ), + onPressed: () async { + final user = provider.user; + if (user == null) return; + + final newUser = UserModel( + id: user.id, + name: _nameController.text.trim(), + userId: user.userId, + teamId: user.teamId, + email: _emailController.text.trim(), + password: user.password, + twoFactorKey: user.twoFactorKey, + apiKey: user.apiKey, + apiBindKey: user.apiBindKey, + protectRole: user.protectRole, + risks: user.risks, + mcName: user.mcName, + userName2userId: user.userName2userId, + + lxKey: _lxKeyController.text.trim(), + dfUsername: _dfUserController.text.trim(), + dfPassword: _dfPwdController.text.trim(), + + nuoId: user.nuoId, + botId: user.botId, + spasolBotId: user.spasolBotId, + githubId: user.githubId, + rating: user.rating, + ratingMax: user.ratingMax, + iconId: user.iconId, + plateId: user.plateId, + plateIds: user.plateIds, + frameId: user.frameId, + charaSlots: user.charaSlots, + qiandaoDay: user.qiandaoDay, + inviter: user.inviter, + successLogoutTime: user.successLogoutTime, + lastLoginTime: user.lastLoginTime, + friendIds: user.friendIds, + bio: _bioController.text.trim(), + friendBio: user.friendBio, + sex: _sexController.text.trim(), + + // 开关已正确保存 + isDisagreeRecommend: _isDisagreeRecommend, + isDisagreeFriend: _isDisagreeFriend, + + points: user.points, + planPoints: user.planPoints, + cardIds: user.cardIds, + userCards: user.userCards, + tags: user.tags, + useBeta: user.useBeta, + useNuo: user.useNuo, + useServer: user.useServer, + useB50Type: user.useB50Type, + userHot: user.userHot, + chatInGroupNumbers: user.chatInGroupNumbers, + sc: user.sc, + id2pcNuo: user.id2pcNuo, + mai2links: user.mai2links, + key2KeychipEn: user.key2KeychipEn, + key2key2KeychipEn: user.key2key2KeychipEn, + mai2link: user.mai2link, + userRegion: user.userRegion, + rinUsernameOrEmail: user.rinUsernameOrEmail, + rinPassword: user.rinPassword, + rinChusanUser: user.rinChusanUser, + segaCards: user.segaCards, + placeList: user.placeList, + lastKeyChip: user.lastKeyChip, + token: user.token, + timesRegionData: user.timesRegionData, + yearTotal: user.yearTotal, + yearTotalComment: user.yearTotalComment, + userCollCardMap: user.userCollCardMap, + collName2musicIds: user.collName2musicIds, + ai: user.ai, + pkScore: user.pkScore, + pkScoreStr: user.pkScoreStr, + pkScoreReality: user.pkScoreReality, + pkUserId: user.pkUserId, + limitPkTimestamp: user.limitPkTimestamp, + hasAcceptPk: user.hasAcceptPk, + pkPlayNum: user.pkPlayNum, + pkWin: user.pkWin, + userData: user.userData, + banState: user.banState, + ); + + provider.updateUser(newUser); + + try { + await provider.saveUserInfo(); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("保存成功 ✅")), + ); + } + } catch (e) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text("保存失败:${e.toString()}")), + ); + } + } + }, + child: const Text( + "保存修改", + style: TextStyle(color: Colors.black87, fontSize: 16), + ), + ), + ); + } + + Widget _buildSegaCard(UserModel user) { + return _webCard( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text("SegaID 账号", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600)), + const SizedBox(height: 10), + if (user.segaCards != null && user.segaCards!.isNotEmpty) + ...user.segaCards!.map((card) { + return Padding( + padding: const EdgeInsets.only(bottom: 8), + child: Row( + children: [ + Container( + padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 3), + decoration: BoxDecoration( + color: (card.type ?? "intl") == "jp" ? Colors.purple : Colors.blue, + borderRadius: BorderRadius.circular(4), + ), + child: Text( + card.type == "jp" ? "日服" : "国际服", + style: const TextStyle(color: Colors.white, fontSize: 12), + ), + ), + const SizedBox(width: 10), + Text(card.segaId ?? ""), + ], + ), + ); + }), + if (user.segaCards == null || user.segaCards!.isEmpty) + const Text("暂无 SegaID"), + ], + ), + ); + } + + Widget _webCard({required Widget child}) { + return Builder( + builder: (context) { + final isDark = Theme.of(context).brightness == Brightness.dark; + return Container( + width: double.infinity, + decoration: BoxDecoration( + color: isDark ? Colors.grey[850] : Colors.white, + borderRadius: BorderRadius.circular(16), + border: Border.all( + color: isDark ? Colors.grey[700]! : Colors.grey[200]!, + width: 1), + boxShadow: [ + BoxShadow( + color: Colors.black12.withOpacity(isDark ? 0.3 : 0.08), + blurRadius: 12, + offset: const Offset(0, 2), + ), + BoxShadow( + color: Colors.greenAccent.withOpacity(0.2), + blurRadius: 15, + spreadRadius: 3, + offset: const Offset(0, 3), + ), + ], + ), + padding: const EdgeInsets.all(20), + child: child, + ); + }, + ); + } + + Widget _buildSectionCard(List children) { + return _webCard(child: Column(children: children)); + } + + Widget _buildCopyableItem( + BuildContext context, String label, String? value) { + return Padding( + padding: const EdgeInsets.symmetric(vertical: 5), + child: InkWell( + borderRadius: BorderRadius.circular(2), + onTap: () { + if (value == null || value.isEmpty) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text("暂无绑定 API Key"))); + return; + } + Clipboard.setData(ClipboardData(text: value)); + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text("已复制:$value"))); + }, + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox(width: 120, child: Text(label)), + Expanded( + child: Text( + value ?? "-", + style: const TextStyle( + fontSize: 12, + color: Colors.blueAccent, + decoration: TextDecoration.underline), + ), + ), + const SizedBox(width: 6), + const Icon(Icons.copy, size: 14, color: Colors.grey), + ], + ), + ), + ); + } + + Widget _buildItem(String label, String? value) { + return Padding( + padding: const EdgeInsets.symmetric(vertical: 7), + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + SizedBox(width: 120, child: Text(label)), + Expanded(child: Text(value ?? "-")), + ], + ), + ); + } + + Widget _buildSwitchItem(String title, bool value, ValueChanged onChanged) { + return SwitchListTile( + contentPadding: EdgeInsets.zero, + title: Text(title), + value: value, + onChanged: onChanged, + ); + } + + Widget _buildLogoutButton(BuildContext context, UserProvider provider) { + return SizedBox( + width: double.infinity, + height: 50, + child: ElevatedButton( + style: ElevatedButton.styleFrom( + backgroundColor: Colors.redAccent, + shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)), + ), + onPressed: () async { + await provider.logout(); + if (context.mounted) { + Navigator.maybePop(context); + } + }, + child: const Text("退出登录", + style: TextStyle(color: Colors.white, fontSize: 16)), + ), + ); + } + + Widget _buildLoginCard({required VoidCallback onTap}) { + return Builder( + builder: (context) { + final isDark = Theme.of(context).brightness == Brightness.dark; + final primaryColor = _pinkColor; + + return Container( + width: double.infinity, + constraints: const BoxConstraints(maxWidth: 400), + padding: const EdgeInsets.all(24), + decoration: BoxDecoration( + color: isDark ? Colors.grey[850] : Colors.white, + borderRadius: BorderRadius.circular(20), + border: Border.all( + color: isDark ? Colors.grey[700]! : Colors.grey[200]!, + width: 1, + ), + boxShadow: [ + BoxShadow( + color: Colors.pinkAccent.withOpacity(isDark ? 0.4 : 0.1), + blurRadius: 20, + spreadRadius: 10, + offset: const Offset(0, 10), + ), + ], + ), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + // 1. 头部图标与标题 + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: primaryColor.withOpacity(0.1), + shape: BoxShape.circle, + ), + child: Icon( + Icons.account_circle_outlined, + size: 48, + color: primaryColor, + ), + ), + const SizedBox(height: 16), + Text( + "加入Union", + style: TextStyle( + fontSize: 22, + fontWeight: FontWeight.bold, + color: isDark ? Colors.white : Colors.black87, + ), + ), + const SizedBox(height: 8), + Text( + "登录以解锁完整功能", + style: TextStyle( + fontSize: 14, + color: isDark ? Colors.grey[400] : Colors.grey[600], + ), + textAlign: TextAlign.center, + ), + + const SizedBox(height: 24), + + // 2. 登录好处列表 (Value Proposition) + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: isDark ? Colors.grey[800] : Colors.grey[50], + borderRadius: BorderRadius.circular(12), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + _buildBenefitItem( + icon: Icons.sync, + title: "多端数据同步", + desc: "水鱼/落雪查分器一键绑定", + isDark: isDark, + ), + const Divider(height: 16), + _buildBenefitItem( + icon: Icons.palette, + title: "无需其他查分器即可使用", + desc: "不依赖水鱼&落雪,同时支持日服与国际服全套服务", + isDark: isDark, + ), + const Divider(height: 16), + _buildBenefitItem( + icon: Icons.insights, + title: "深度数据分析", + desc: "查看 B50,Rating,歌曲详细推分 趋势与详情", + isDark: isDark, + ), + ], + ), + ), + + const SizedBox(height: 24), + + // 3. 登录按钮 + SizedBox( + width: double.infinity, + height: 50, + child: ElevatedButton( + onPressed: onTap, + style: ElevatedButton.styleFrom( + backgroundColor: primaryColor, + foregroundColor: Colors.white, + elevation: 0, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + child: const Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text( + "立即登录 / 注册", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + SizedBox(width: 8), + Icon(Icons.arrow_forward, size: 18), + ], + ), + ), + ), + ], + ), + ); + }, + ); + } + + // 辅助方法:构建单个权益项 + Widget _buildBenefitItem({ + required IconData icon, + required String title, + required String desc, + required bool isDark, + }) { + return Row( + children: [ + Icon(icon, size: 20, color: isDark ? Colors.grey[400] : Colors.grey[600]), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + title, + style: TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + color: isDark ? Colors.white : Colors.black87, + ), + ), + Text( + desc, + style: TextStyle( + fontSize: 12, + color: isDark ? Colors.grey[500] : Colors.grey[500], + ), + ), + ], + ), + ), + ], + ); + } + + Widget _buildRadarChartSection() { + return _webCard( + child: Column( + children: [ + const Text( + "能力雷达图", + style: TextStyle(fontSize: 16, fontWeight: FontWeight.w600), + ), + const SizedBox(height: 16), + + if (_radarData == null) + TextButton( + onPressed: _loadRadarData, + child: const Text("点击加载雷达图数据"), + ) + else + // 使用我们自定义的雷达图 + SizedBox( + height: 300, + width: double.infinity, + child: CustomRadarChart( + // 传入你的数据,确保 Map + data: _radarData!.map((key, value) => + MapEntry(key.toString(), double.tryParse(value.toString()) ?? 0.0) + ), + maxValue: 1.3, // 强制最大值为 1.5,不再自动缩放 + lineColor: Colors.grey.shade200, // 极淡的网格线,视觉上接近“无” + areaColor: Colors.pink.withOpacity(0.15), + borderColor: Colors.pinkAccent, + ), + ), + + const SizedBox(height: 20), + + // ———————————————————————————————— + // 下面的列表保持不变 + // ———————————————————————————————— + if (_radarData != null) + GridView.count( + shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), + crossAxisCount: 3, + childAspectRatio: 2.4, + crossAxisSpacing: 8, + mainAxisSpacing: 8, + children: _radarData!.entries.map((e) { + final key = e.key.toString(); + final value = double.tryParse(e.value.toString()) ?? 0.0; + final isHigh = value >= 1.0; + + return Container( + padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(8), + border: Border.all( + color: isHigh ? Colors.pink.shade200 : Colors.grey.shade300, + width: 1, + ), + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Text( + key, + style: const TextStyle(fontSize: 12, + fontWeight: FontWeight.w500), + ), + Text( + value.toStringAsFixed(2), + style: TextStyle( + fontSize: 12, + fontWeight: FontWeight.bold, + ), + ), + ], + ), + ); + }).toList(), + ), + ], + ), + ); + } +} + + + + +class CustomRadarChart extends StatelessWidget { + final Map data; // 维度名 -> 数值 + final double maxValue; // 最大值,用于计算比例 + final Color lineColor; // 网格线颜色 + final Color areaColor; // 填充区域颜色 + final Color borderColor; // 边框线条颜色 + + const CustomRadarChart({ + super.key, + required this.data, + this.maxValue = 1.3, + this.lineColor = const Color(0xFFE0E0E0), // 极淡的灰色,几乎看不见 + this.areaColor = const Color(0x40FF69B4), // 半透明粉色 + this.borderColor = const Color(0xFFEC407A), // 实线粉色 + }); + + @override + Widget build(BuildContext context) { + return LayoutBuilder( + builder: (context, constraints) { + // 取宽高较小者作为绘图区域,保证是正方形 + final size = math.min(constraints.maxWidth, constraints.maxHeight); + return SizedBox( + width: size, + height: size, + child: CustomPaint( + painter: _RadarPainter( + data: data, + maxValue: maxValue, + lineColor: lineColor, + areaColor: areaColor, + borderColor: borderColor, + ), + ), + ); + }, + ); + } +} + +class _RadarPainter extends CustomPainter { + final Map data; + final double maxValue; + final Color lineColor; + final Color areaColor; + final Color borderColor; + + _RadarPainter({ + required this.data, + required this.maxValue, + required this.lineColor, + required this.areaColor, + required this.borderColor, + }); + + @override + void paint(Canvas canvas, Size size) { + final center = Offset(size.width / 2, size.height / 2); + // 半径留一点 padding,防止文字贴边 + final radius = math.min(size.width, size.height) / 2 * 0.85; + final count = data.length; + + if (count == 0) return; + + final angleStep = (2 * math.pi) / count; + + // --- 1. 绘制背景网格 (同心多边形) --- + final gridPaint = Paint() + ..color = lineColor + ..style = PaintingStyle.stroke + ..strokeWidth = 1.0; + + // 画 5 层网格 (0.2, 0.4, 0.6, 0.8, 1.0 比例) + for (int i = 1; i <= 5; i++) { + final levelRadius = radius * (i / 5); + final path = Path(); + for (int j = 0; j < count; j++) { + final angle = j * angleStep - math.pi / 2; // -pi/2 让第一个点朝上 + final x = center.dx + levelRadius * math.cos(angle); + final y = center.dy + levelRadius * math.sin(angle); + if (j == 0) { + path.moveTo(x, y); + } else { + path.lineTo(x, y); + } + } + path.close(); + canvas.drawPath(path, gridPaint); + } + + // --- 2. 绘制辐射轴线 (从中心到顶点) --- + // 如果你连这个轴线也不想要,可以注释掉这一段 + for (int i = 0; i < count; i++) { + final angle = i * angleStep - math.pi / 2; + final x = center.dx + radius * math.cos(angle); + final y = center.dy + radius * math.sin(angle); + + canvas.drawLine( + center, + Offset(x, y), + gridPaint, // 使用同样的淡色 + ); + } + + // --- 3. 绘制数据区域 --- + final dataPath = Path(); + final dataPoints = []; + + for (int i = 0; i < count; i++) { + final key = data.keys.elementAt(i); + final value = data[key] ?? 0.0; + + // 计算当前值的比例半径 + final ratio = (value / maxValue).clamp(0.0, 1.0); + final currentRadius = radius * ratio; + + final angle = i * angleStep - math.pi / 2; + final x = center.dx + currentRadius * math.cos(angle); + final y = center.dy + currentRadius * math.sin(angle); + + dataPoints.add(Offset(x, y)); + + if (i == 0) { + dataPath.moveTo(x, y); + } else { + dataPath.lineTo(x, y); + } + } + dataPath.close(); + + // 填充颜色 + final fillPaint = Paint() + ..color = areaColor + ..style = PaintingStyle.fill; + canvas.drawPath(dataPath, fillPaint); + + // 描边颜色 + final borderPaint = Paint() + ..color = borderColor + ..style = PaintingStyle.stroke + ..strokeWidth = 2.0 + ..strokeJoin = StrokeJoin.round; // 圆角连接,更美观 + canvas.drawPath(dataPath, borderPaint); + + // --- 4. 绘制顶点小圆点 (可选,增加精致感) --- + final dotPaint = Paint() + ..color = Colors.white + ..style = PaintingStyle.fill; + final dotBorderPaint = Paint() + ..color = borderColor + ..style = PaintingStyle.stroke + ..strokeWidth = 1.5; + + for (var point in dataPoints) { + canvas.drawCircle(point, 3.5, dotPaint); + canvas.drawCircle(point, 3.5, dotBorderPaint); + } + + final textPainter = TextPainter( + textAlign: TextAlign.center, + textDirection: TextDirection.ltr, + ); + + for (int i = 0; i < count; i++) { + final key = data.keys.elementAt(i); + final angle = i * angleStep - math.pi / 2; + + // 文字位置再往外扩一点 + final labelRadius = radius + 20; + final x = center.dx + labelRadius * math.cos(angle); + final y = center.dy + labelRadius * math.sin(angle); + + textPainter.text = TextSpan( + text: key, + style: const TextStyle(fontSize: 12,color: Colors.pinkAccent), + ); + textPainter.layout(); + + // 修正文字居中 + textPainter.paint(canvas, Offset(x - textPainter.width / 2, y - textPainter.height / 2)); + } + } + + @override + bool shouldRepaint(covariant _RadarPainter oldDelegate) { + return oldDelegate.data != data || oldDelegate.maxValue != maxValue; + } +} +/// 最外层响应结构 +class LuoxueResponse { + final bool success; + final int code; + final LuoxuePlayer data; + + LuoxueResponse({ + required this.success, + required this.code, + required this.data, + }); + + factory LuoxueResponse.fromJson(Map json) { + return LuoxueResponse( + success: json['success'] ?? false, + code: json['code'] ?? 0, + data: LuoxuePlayer.fromJson(json['data'] ?? {}), + ); + } +} + +/// 玩家信息 +class LuoxuePlayer { + final String name; + final int rating; + final int friendCode; + final int courseRank; + final int classRank; + final int star; + final String uploadTime; + final LuoxueTrophy trophy; + final LuoxueIcon icon; + final LuoxueNamePlate namePlate; + final LuoxueFrame frame; + + LuoxuePlayer({ + required this.name, + required this.rating, + required this.friendCode, + required this.courseRank, + required this.classRank, + required this.star, + required this.uploadTime, + required this.trophy, + required this.icon, + required this.namePlate, + required this.frame, + }); + + factory LuoxuePlayer.fromJson(Map json) { + return LuoxuePlayer( + name: json['name'] ?? '', + rating: json['rating'] ?? 0, + friendCode: json['friend_code'] ?? 0, + courseRank: json['course_rank'] ?? 0, + classRank: json['class_rank'] ?? 0, + star: json['star'] ?? 0, + uploadTime: json['upload_time'] ?? '', + trophy: LuoxueTrophy.fromJson(json['trophy'] ?? {}), + icon: LuoxueIcon.fromJson(json['icon'] ?? {}), + namePlate: LuoxueNamePlate.fromJson(json['name_plate'] ?? {}), + frame: LuoxueFrame.fromJson(json['frame'] ?? {}), + ); + } +} + +/// 称号 +class LuoxueTrophy { + final int id; + final String name; + final String genre; + final String color; + + LuoxueTrophy({ + required this.id, + required this.name, + required this.genre, + required this.color, + }); + + factory LuoxueTrophy.fromJson(Map json) { + return LuoxueTrophy( + id: json['id'] ?? 0, + name: json['name'] ?? '', + genre: json['genre'] ?? '', + color: json['color'] ?? '', + ); + } +} + +/// 头像 +class LuoxueIcon { + final int id; + final String name; + final String genre; + + LuoxueIcon({ + required this.id, + required this.name, + required this.genre, + }); + + factory LuoxueIcon.fromJson(Map json) { + return LuoxueIcon( + id: json['id'] ?? 0, + name: json['name'] ?? '', + genre: json['genre'] ?? '', + ); + } +} + +/// 姓名框 +class LuoxueNamePlate { + final int id; + final String name; + final String genre; + + LuoxueNamePlate({ + required this.id, + required this.name, + required this.genre, + }); + + factory LuoxueNamePlate.fromJson(Map json) { + return LuoxueNamePlate( + id: json['id'] ?? 0, + name: json['name'] ?? '', + genre: json['genre'] ?? '', + ); + } +} + +/// 背景 +class LuoxueFrame { + final int id; + final String name; + final String genre; + + LuoxueFrame({ + required this.id, + required this.name, + required this.genre, + }); + + factory LuoxueFrame.fromJson(Map json) { + return LuoxueFrame( + id: json['id'] ?? 0, + name: json['name'] ?? '', + genre: json['genre'] ?? '', + ); + } +} \ No newline at end of file diff --git a/lib/providers/user_provider.dart b/lib/providers/user_provider.dart new file mode 100644 index 0000000..743a96b --- /dev/null +++ b/lib/providers/user_provider.dart @@ -0,0 +1,196 @@ +import 'dart:convert'; +import 'package:flutter/material.dart'; +import 'package:shared_preferences/shared_preferences.dart'; +import '../model/user_model.dart'; +import '../service/user_service.dart'; +import '../tool/encryption_util.dart'; + +class UserProvider with ChangeNotifier { + UserModel? _user; + String? _token; + List _sexTags = []; + + // --- 成绩数据源相关状态 --- + String _scoreDataSource = 'cn'; // 'cn' or 'sega' + String? _selectedSegaId; // 选中的 SegaID + + // --- 新增:国服多账号支持 --- + String? _selectedCnUserName; // 选中的国服用户名 (对应 userName2userId 的 key) + + UserModel? get user => _user; + String? get token => _token; + bool get isLogin => _token != null && _user != null; + String get username => _user?.name ?? "未登录"; + List get sexTags => _sexTags; + + String get scoreDataSource => _scoreDataSource; + String? get selectedSegaId => _selectedSegaId; + String? get selectedCnUserName => _selectedCnUserName; // Getter for CN username + + List get availableSegaCards => _user?.segaCards ?? []; + + // 获取可用的国服账号列表 (从 userName2userId 提取 keys) + List get availableCnUserNames { + final map = _user?.userName2userId; + if (map == null || map.isEmpty) return []; + return map.keys.toList(); + } + + String get avatarUrl { + if (_user?.iconId != null) { + return "https://cdn.godserver.cn/resource/static/coll/Icon/UI_Icon_${_user!.iconId!}.png"; + } else { + return "https://cdn.godserver.cn/resource/static/coll/Icon/UI_Icon_605526.png"; + } + } + + static UserProvider? _instance; + static UserProvider get instance { + _instance ??= UserProvider(); + return _instance!; + } + + Future initUser() async { + final prefs = await SharedPreferences.getInstance(); + _token = prefs.getString("token"); + + // 读取偏好设置 + _scoreDataSource = prefs.getString("scoreDataSource") ?? 'cn'; + _selectedSegaId = prefs.getString("selectedSegaId"); + _selectedCnUserName = prefs.getString("selectedCnUserName"); + + if (_token != null) { + try { + _user = await UserService.getUserInfo(_token!); + await fetchSexTags(); + + // 校验 SegaID 有效性 + if (_selectedSegaId != null && !availableSegaCards.any((c) => c.segaId == _selectedSegaId)) { + _selectedSegaId = null; + await prefs.remove("selectedSegaId"); + } + + // 校验国服用户名有效性 + if (_selectedCnUserName != null && !availableCnUserNames.contains(_selectedCnUserName)) { + _selectedCnUserName = null; + await prefs.remove("selectedCnUserName"); + } + } catch (e) { + await logout(); + } + } + notifyListeners(); + } + + // ... (login, register, logout 保持不变) ... + Future login(String username, String twoKeyCode) async { + try { + _token = await UserService.login(username, twoKeyCode); + if (_token != null && _token!.isNotEmpty) { + final prefs = await SharedPreferences.getInstance(); + await prefs.setString("token", _token!); + _user = await UserService.getUserInfo(_token!); + await fetchSexTags(); + } + } catch (e) { + rethrow; + } finally { + notifyListeners(); + } + } + + Future register(String username, String password, String inviter) async { + await UserService.register(username, password, inviter); + await login(username, password); + } + + Future logout() async { + _token = null; + _user = null; + final prefs = await SharedPreferences.getInstance(); + await prefs.remove("token"); + notifyListeners(); + } + + // ... (saveUserInfo, refreshToken, fetchRadarData, fetchSexTags, updateUser 保持不变) ... + Future saveUserInfo() async { + if (_token == null || _user == null) return; + try { + final userJson = _user!.toJson(); + final encrypted = EncryptionUtil.encryptAndCompress(jsonEncode(userJson)); + await UserService.updateUser(_token!, encrypted); + _user = await UserService.getUserInfo(_token!); + notifyListeners(); + } catch (e) { + rethrow; + } + } + + Future refreshToken() async { + if (_token == null) return false; + try { + final newToken = await UserService.refreshToken(_token!); + if (newToken != null) { + _token = newToken; + final prefs = await SharedPreferences.getInstance(); + await prefs.setString("token", newToken); + notifyListeners(); + return true; + } + } catch (e) { + await logout(); + } + return false; + } + + Future> fetchRadarData(String id) async { + if (_token == null) throw "请先登录"; + try { + return await UserService.getRadarData(_token!, id); + } catch (e) { + rethrow; + } + } + + Future fetchSexTags() async { + _sexTags = await UserService.fetchSexTags(); + notifyListeners(); + } + + void updateUser(UserModel? newUser) { + _user = newUser; + notifyListeners(); + } + + // --- 设置数据源 --- + Future setScoreDataSource(String source) async { + _scoreDataSource = source; + final prefs = await SharedPreferences.getInstance(); + await prefs.setString("scoreDataSource", source); + notifyListeners(); + } + + // --- 设置选中的 SegaID --- + Future setSelectedSegaId(String? segaId) async { + _selectedSegaId = segaId; + final prefs = await SharedPreferences.getInstance(); + if (segaId != null) { + await prefs.setString("selectedSegaId", segaId); + } else { + await prefs.remove("selectedSegaId"); + } + notifyListeners(); + } + + // --- 【新增】设置选中的国服用户名 --- + Future setSelectedCnUserName(String? userName) async { + _selectedCnUserName = userName; + final prefs = await SharedPreferences.getInstance(); + if (userName != null && userName.isNotEmpty) { + await prefs.setString("selectedCnUserName", userName); + } else { + await prefs.remove("selectedCnUserName"); + } + notifyListeners(); + } +} \ No newline at end of file diff --git a/lib/service/recommendation_helper.dart b/lib/service/recommendation_helper.dart new file mode 100644 index 0000000..e69de29 diff --git a/lib/service/song_service.dart b/lib/service/song_service.dart new file mode 100644 index 0000000..43fd09c --- /dev/null +++ b/lib/service/song_service.dart @@ -0,0 +1,107 @@ +import 'dart:convert'; +import 'dart:math'; +import 'package:dio/dio.dart'; +import 'package:shared_preferences/shared_preferences.dart'; +import '../model/song_model.dart'; +import 'user_service.dart'; // 引用 baseUrl + +class SongService { + static final Dio _dio = new Dio(); + static const String _cacheKeySongs = 'cached_songs_json'; + static const String _cacheKeyInfo = 'cached_song_info'; + + /// 获取所有歌曲数据(带缓存逻辑) + static Future> getAllSongs() async { + try { + // 1. 获取远程元数据 (判断是否需要更新) + final metaRes = await _dio.get('${UserService.baseUrl}/api/union/'); + final remoteSize = metaRes.data['songSize'] as int? ?? 0; + final remoteVersion = metaRes.data['version'] as String? ?? ''; + + // 2. 获取本地缓存信息 + final prefs = await SharedPreferences.getInstance(); + final cachedInfoJson = prefs.getString(_cacheKeyInfo); + + bool needFetch = true; + + if (cachedInfoJson != null) { + final cachedInfo = SongCacheInfo.fromJson(jsonDecode(cachedInfoJson)); + // 如果本地歌曲数量与远程一致,且版本号一致,则使用缓存 + // 注意:这里简单判断 size 相同即认为无需更新,实际业务中可能需要更严格的版本对比 + if (cachedInfo.songSize == remoteSize && cachedInfo.version == remoteVersion) { + needFetch = false; + } + } + + if (needFetch) { + print("SongService: Cache miss or outdated. Fetching full song list..."); + // 3. 拉取最新全量数据 + final songsRes = await _dio.get('${UserService.baseUrl}/api/union/uni'); + final List songsJson = songsRes.data as List; + + // 4. 保存新数据和元数据到本地 + final songsList = songsJson.map((e) => SongModel.fromJson(e)).toList(); + final newInfo = SongCacheInfo( + songSize: remoteSize, + version: remoteVersion, + lastUpdate: DateTime.now() + ); + + await prefs.setString(_cacheKeySongs, jsonEncode(songsJson)); + await prefs.setString(_cacheKeyInfo, jsonEncode(newInfo.toJson())); + + return songsList; + } else { + print("SongService: Using cached song list."); + // 5. 使用缓存 + final cachedSongsJson = prefs.getString(_cacheKeySongs); + if (cachedSongsJson != null) { + final List songsJson = jsonDecode(cachedSongsJson); + return songsJson.map((e) => SongModel.fromJson(e)).toList(); + } + } + } catch (e) { + print("SongService Error: $e"); + // 如果出错,尝试返回旧缓存以防万一 + final prefs = await SharedPreferences.getInstance(); + final cachedSongsJson = prefs.getString(_cacheKeySongs); + if (cachedSongsJson != null) { + final List songsJson = jsonDecode(cachedSongsJson); + return songsJson.map((e) => SongModel.fromJson(e)).toList(); + } + } + + return []; + } + + static Future> getUserAllScores(String token, {String? name}) async { + try { + if(name!=null) { + return await UserService.getUserAllScores(token,name: name); + }else{ + return await UserService.getUserAllScores(token); + } + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + static String _getErrorMessage(DioException e) { + if (e.response?.data != null) { + final data = e.response!.data; + if (data is Map && data["msg"] != null) { + return data["msg"].toString(); + } + } + switch (e.type) { + case DioExceptionType.connectionTimeout: + case DioExceptionType.receiveTimeout: + case DioExceptionType.sendTimeout: + return "网络超时"; + case DioExceptionType.connectionError: + return "网络异常"; + default: + return "请求失败"; + } + } +} \ No newline at end of file diff --git a/lib/service/user_service.dart b/lib/service/user_service.dart new file mode 100644 index 0000000..1d60f1f --- /dev/null +++ b/lib/service/user_service.dart @@ -0,0 +1,286 @@ +import 'dart:convert'; +import 'package:dio/dio.dart'; +import '../model/user_model.dart'; +import '../tool/encryption_util.dart'; + +class UserService { + static final Dio _dio = Dio(); + static const String baseUrl = "https://union.godserver.cn"; + + // 注册 + static Future register(String username, String password, String inviter) async { + try { + await _dio.post( + '$baseUrl/user/register', + data: { + "username": username, + "password": password, + "inviter": inviter, + }, + ); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 登录 + static Future login(String username, String twoKeyCode) async { + try { + final raw = jsonEncode({ + "username": username, + "twoKeyCode": twoKeyCode, + }); + final encrypted = EncryptionUtil.encrypt(raw); + + final res = await _dio.post( + '$baseUrl/api/user/user', + data: { + "code": 200, + "timestamp": DateTime.now().millisecondsSinceEpoch, + "msg": "login", + "data": encrypted, + }, + ); + + return EncryptionUtil.decrypt(res.data["data"]?.toString() ?? ''); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 获取用户信息 + static Future getUserInfo(String token) async { + try { + final res = await _dio.post( + '$baseUrl/api/user/data', + data: { + "msg": "getUser", + "timestamp": DateTime.now().millisecondsSinceEpoch, + "data": token, + }, + options: Options(headers: {"Authorization": token}), + ); + + final decrypted = EncryptionUtil.decrypt(res.data["data"]?.toString() ?? ''); + return UserModel.fromJson(jsonDecode(decrypted)); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 保存/修改用户信息(updateUser) + static Future updateUser(String token, String encryptedData) async { + try { + final res = await _dio.put( + '$baseUrl/api/user/data', + data: { + "msg": "updateUser", + "timestamp": DateTime.now().millisecondsSinceEpoch, + "data": encryptedData, + }, + options: Options(headers: {"Authorization": token}), + ); + return res.data.toString(); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + return ""; + } + + // 检查登录状态 + static Future isLogin(String token) async { + try { + final res = await _dio.get( + '$baseUrl/api/user/isLogin', + options: Options(headers: {"Authorization": token}), + ); + return res.data["code"] == 200; + } on DioException { + return false; + } + } + + // 刷新Token(接口通用逻辑) + static Future refreshToken(String oldToken) async { + try { + final res = await _dio.post( + '$baseUrl/api/user/refreshToken', + options: Options(headers: {"Authorization": oldToken}), + ); + if (res.data["code"] == 200) { + return res.data["data"]?.toString(); + } + return null; + } on DioException { + return null; + } + } + + // 获取角色 + static Future getUserRole(String token) async { + try { + final res = await _dio.get( + '$baseUrl/api/user/role', + options: Options(headers: {"Authorization": token}), + ); + if (res.data["code"] == 200) { + return res.data["data"]?.toString(); + } + return null; + } on DioException { + return null; + } + } + + // 获取性别标签 + static Future> fetchSexTags() async { + try { + final res = await _dio.get('$baseUrl/api/union/sextag'); + if (res.data is List) { + return List.from(res.data); + } + return []; + } on DioException { + return []; + } + } + + // 获取好友列表 + static Future> fetchFriends(String token) async { + try { + final res = await _dio.get( + '$baseUrl/api/user/friend', + options: Options(headers: {"Authorization": token}), + ); + if (res.data is List) { + return res.data; + } + return []; + } on DioException { + return []; + } + } + + // 更新API Key + static Future updateApiKey(String token) async { + try { + await _dio.post( + '$baseUrl/api/user/updateKey', + data: { + "msg": "updateApiKey", + "timestamp": DateTime.now().millisecondsSinceEpoch, + }, + options: Options(headers: {"Authorization": token}), + ); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 绑定GitHub - 获取跳转链接 + static Future bindGithub(String token) async { + try { + final res = await _dio.get( + '$baseUrl/api/user/bind/github', + options: Options(headers: {"Authorization": token}), + ); + return res.realUri.toString(); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 确认绑定GitHub + static Future confirmBindGithub(String token, String uuid) async { + try { + await _dio.post( + '$baseUrl/api/user/bind/github', + options: Options(headers: { + "Authorization": token, + "uuid": uuid, + }), + ); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + + // 验证SegaId + static Future> verifySegaId(String token, String segaId) async { + try { + final res = await _dio.post( + '$baseUrl/api/user/verifySegaId', + queryParameters: {"useSegaId": segaId}, + options: Options(headers: {"Authorization": token}), + ); + return res.data; + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } +// 获取雷达图数据 + static Future> getRadarData(String token, String id) async { + try { + final res = await _dio.get( + '$baseUrl/api/union/radar', + queryParameters: {"id": id}, + options: Options(headers: {"Authorization": token}), + ); + // 返回雷达图原始数据 + return Map.from(res.data); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + // 统一错误处理 + static String _getErrorMessage(DioException e) { + if (e.response?.data != null) { + final data = e.response!.data; + if (data is Map && data["msg"] != null) { + return data["msg"].toString(); + } + } + switch (e.type) { + case DioExceptionType.connectionTimeout: + case DioExceptionType.receiveTimeout: + case DioExceptionType.sendTimeout: + return "网络超时"; + case DioExceptionType.connectionError: + return "网络异常"; + default: + return "请求失败"; + } + } + static Future> getUserAllScores(String token, {String? name}) async { + try { + // 构建查询参数 + final queryParameters = {}; + if (name != null && name.isNotEmpty) { + queryParameters['name'] = name; + } + final res = await _dio.get( + '$baseUrl/api/union/reisaRating', + queryParameters: queryParameters, + options: Options(headers: {"Authorization": token}), + ); + if (res.data is Map) { + return Map.from(res.data); + } + return {}; + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } + static Future> getSegaRatingData(String token, String segaId) async { + try { + final res = await _dio.get( + '$baseUrl/api/union/segaReisaRating', + queryParameters: {"segaId": segaId}, + options: Options(headers: {"Authorization": token}), + ); + return Map.from(res.data); + } on DioException catch (e) { + throw _getErrorMessage(e); + } + } +} \ No newline at end of file diff --git a/lib/tool/encryption_util.dart b/lib/tool/encryption_util.dart new file mode 100644 index 0000000..f8d8bba --- /dev/null +++ b/lib/tool/encryption_util.dart @@ -0,0 +1,50 @@ +import 'dart:convert'; +import 'dart:typed_data'; +import 'package:encrypt/encrypt.dart' as enc; +import 'package:archive/archive.dart'; + +class EncryptionUtil { + // 固定密钥(和后端保持一致) + static const String _keyStr = ",Lscj312.;[]sc`1dsajcjc;;wislacx"; + static const String _ivStr = ",>ew:[7890;,wd[2"; + + // 对外简易方法(你 Service / Provider 里直接用) + static String encrypt(String data) => encryptAndCompress(data); + static String decrypt(String encryptedBase64) => decompressAndDecrypt(encryptedBase64); + + /// 加密:字符串 → GZIP → AES → Base64 + static String encryptAndCompress(String plainText) { + // 强制 32位 Key / 16位 IV(AES 标准) + final key = enc.Key.fromUtf8(_keyStr.padRight(32).substring(0, 32)); + final iv = enc.IV.fromUtf8(_ivStr.padRight(16).substring(0, 16)); + final encrypter = enc.Encrypter(enc.AES(key, mode: enc.AESMode.cbc)); + + // GZIP 压缩 + final utf8Bytes = utf8.encode(plainText); + final compressed = GZipEncoder().encode(utf8Bytes)!; + + // AES 加密 + final encrypted = encrypter.encryptBytes( + Uint8List.fromList(compressed), + iv: iv, + ); + + return encrypted.base64; + } + + /// 解密:Base64 → AES → GZIP → 字符串 + static String decompressAndDecrypt(String encryptedBase64) { + final key = enc.Key.fromUtf8(_keyStr.padRight(32).substring(0, 32)); + final iv = enc.IV.fromUtf8(_ivStr.padRight(16).substring(0, 16)); + final encrypter = enc.Encrypter(enc.AES(key, mode: enc.AESMode.cbc)); + + // 解密 + final encrypted = enc.Encrypted.fromBase64(encryptedBase64); + final decryptedBytes = encrypter.decryptBytes(encrypted, iv: iv); + + // GZIP 解压 + final decompressed = GZipDecoder().decodeBytes(decryptedBytes); + + return utf8.decode(decompressed); + } +} \ No newline at end of file diff --git a/lib/tool/gradientText.dart b/lib/tool/gradientText.dart new file mode 100644 index 0000000..6d18a71 --- /dev/null +++ b/lib/tool/gradientText.dart @@ -0,0 +1,117 @@ +import 'package:flutter/material.dart'; + +class GradientLayer { + final Gradient gradient; + final BlendMode blendMode; + + const GradientLayer({ + required this.gradient, + this.blendMode = BlendMode.srcIn, // 默认第一层用 srcIn 打底 + }); +} + +class GradientText extends StatelessWidget { + final String data; + final TextStyle? style; + final TextAlign? textAlign; + final TextDirection? textDirection; + final bool softWrap; + final TextOverflow? overflow; + final double? textScaleFactor; + final int? maxLines; + final Locale? locale; + final String? semanticsLabel; + final TextWidthBasis? textWidthBasis; + final TextHeightBehavior? textHeightBehavior; + final List gradientLayers; + + const GradientText({ + Key? key, + required this.data, + this.style, + this.textAlign, + this.textDirection, + this.softWrap = true, + this.overflow, + this.textScaleFactor, + this.maxLines, + this.locale, + this.semanticsLabel, + this.textWidthBasis, + this.textHeightBehavior, + this.gradientLayers = const [], + }) : super(key: key); + + @override + Widget build(BuildContext context) { + if (gradientLayers.isEmpty) { + return Text( + data, + style: style, + textAlign: textAlign, + textDirection: textDirection, + softWrap: softWrap, + overflow: overflow, + textScaleFactor: textScaleFactor, + maxLines: maxLines, + locale: locale, + semanticsLabel: semanticsLabel, + textWidthBasis: textWidthBasis, + textHeightBehavior: textHeightBehavior, + ); + } + + final baseStyle = style ?? const TextStyle(); + + return Stack( + children: [ + // 1. 最底层:纯色文本(可选,防止所有渐变都透明时看不见) + // 如果第一层渐变是 srcIn,这一层其实可以被遮挡,但保留它作为“备用底色” + Opacity( + opacity: 0.0, // 隐藏,仅占位 + child: _buildText(baseStyle.copyWith(color: Colors.black)), + ), + + // 2. 叠加渐变层 + ...gradientLayers.asMap().entries.map((entry) { + final index = entry.key; + final layer = entry.value; + + // 关键逻辑: + // 如果是第一层且用户没改 blendMode,默认用 srcIn 确保文字有颜色 + // 如果是后续层,通常希望融合,所以建议用户传入 overlay/plus 等 + + return ShaderMask( + shaderCallback: (Rect bounds) { + return layer.gradient.createShader(bounds); + }, + blendMode: layer.blendMode, + child: _buildText( + // 重要:为了融合效果,内部文本通常是白色或浅色 + // 如果 blendMode 是 srcIn,颜色不重要(会被渐变替换) + // 如果 blendMode 是 overlay/plus,白色能让渐变颜色最纯正地显示 + baseStyle.copyWith(color: Colors.white), + ), + ); + }).toList(), + ], + ); + } + + Widget _buildText(TextStyle effectiveStyle) { + return Text( + data, + style: effectiveStyle, + textAlign: textAlign, + textDirection: textDirection, + softWrap: softWrap, + overflow: overflow, + textScaleFactor: textScaleFactor, + maxLines: maxLines, + locale: locale, + semanticsLabel: semanticsLabel, + textWidthBasis: textWidthBasis, + textHeightBehavior: textHeightBehavior, + ); + } +} \ No newline at end of file diff --git a/linux/.gitignore b/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt new file mode 100644 index 0000000..2e8145e --- /dev/null +++ b/linux/CMakeLists.txt @@ -0,0 +1,128 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "unionapp") +# The unique GTK application identifier for this application. See: +# https://wiki.gnome.org/HowDoI/ChooseApplicationID +set(APPLICATION_ID "org.ast.unionapp") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(SET CMP0063 NEW) + +# Load bundled libraries from the lib/ directory relative to the binary. +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Define build configuration options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) + +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES}) + install(FILES "${bundled_library}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endforeach(bundled_library) + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/linux/flutter/CMakeLists.txt b/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..d5bd016 --- /dev/null +++ b/linux/flutter/CMakeLists.txt @@ -0,0 +1,88 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..f6f23bf --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include + +void fl_register_plugins(FlPluginRegistry* registry) { + g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); + url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); +} diff --git a/linux/flutter/generated_plugin_registrant.h b/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..df8d2f7 --- /dev/null +++ b/linux/flutter/generated_plugins.cmake @@ -0,0 +1,25 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + url_launcher_linux +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST + jni +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/linux/runner/CMakeLists.txt b/linux/runner/CMakeLists.txt new file mode 100644 index 0000000..e97dabc --- /dev/null +++ b/linux/runner/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.13) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the application ID. +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Add dependency libraries. Add any application-specific dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) + +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") diff --git a/linux/runner/main.cc b/linux/runner/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/linux/runner/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/linux/runner/my_application.cc b/linux/runner/my_application.cc new file mode 100644 index 0000000..86967bb --- /dev/null +++ b/linux/runner/my_application.cc @@ -0,0 +1,148 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Called when first Flutter frame received. +static void first_frame_cb(MyApplication* self, FlView* view) { + gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view))); +} + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "unionapp"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "unionapp"); + } + + gtk_window_set_default_size(window, 1280, 720); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments( + project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + GdkRGBA background_color; + // Background defaults to black, override it here if necessary, e.g. #00000000 + // for transparent. + gdk_rgba_parse(&background_color, "#000000"); + fl_view_set_background_color(view, &background_color); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + // Show the window when Flutter renders. + // Requires the view to be realized so we can start rendering. + g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb), + self); + gtk_widget_realize(GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, + gchar*** arguments, + int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GApplication::startup. +static void my_application_startup(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application startup. + + G_APPLICATION_CLASS(my_application_parent_class)->startup(application); +} + +// Implements GApplication::shutdown. +static void my_application_shutdown(GApplication* application) { + // MyApplication* self = MY_APPLICATION(object); + + // Perform any actions required at application shutdown. + + G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application); +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = + my_application_local_command_line; + G_APPLICATION_CLASS(klass)->startup = my_application_startup; + G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + // Set the program name to the application ID, which helps various systems + // like GTK and desktop environments map this running application to its + // corresponding .desktop file. This ensures better integration by allowing + // the application to be recognized beyond its binary name. + g_set_prgname(APPLICATION_ID); + + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, "flags", + G_APPLICATION_NON_UNIQUE, nullptr)); +} diff --git a/linux/runner/my_application.h b/linux/runner/my_application.h new file mode 100644 index 0000000..db16367 --- /dev/null +++ b/linux/runner/my_application.h @@ -0,0 +1,21 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, + my_application, + MY, + APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/macos/.gitignore b/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..4b81f9b --- /dev/null +++ b/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..5caa9d1 --- /dev/null +++ b/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..c968169 --- /dev/null +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,20 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import geolocator_apple +import package_info_plus +import share_plus +import shared_preferences_foundation +import url_launcher_macos + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin")) + FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) + SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) +} diff --git a/macos/Podfile b/macos/Podfile new file mode 100644 index 0000000..ff5ddb3 --- /dev/null +++ b/macos/Podfile @@ -0,0 +1,42 @@ +platform :osx, '10.15' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_macos_podfile_setup + +target 'Runner' do + use_frameworks! + + flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) + target 'RunnerTests' do + inherit! :search_paths + end +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_macos_build_settings(target) + end +end diff --git a/macos/Podfile.lock b/macos/Podfile.lock new file mode 100644 index 0000000..2ce9107 --- /dev/null +++ b/macos/Podfile.lock @@ -0,0 +1,48 @@ +PODS: + - FlutterMacOS (1.0.0) + - geolocator_apple (1.2.0): + - Flutter + - FlutterMacOS + - package_info_plus (0.0.1): + - FlutterMacOS + - share_plus (0.0.1): + - FlutterMacOS + - shared_preferences_foundation (0.0.1): + - Flutter + - FlutterMacOS + - url_launcher_macos (0.0.1): + - FlutterMacOS + +DEPENDENCIES: + - FlutterMacOS (from `Flutter/ephemeral`) + - geolocator_apple (from `Flutter/ephemeral/.symlinks/plugins/geolocator_apple/darwin`) + - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) + - share_plus (from `Flutter/ephemeral/.symlinks/plugins/share_plus/macos`) + - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`) + - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) + +EXTERNAL SOURCES: + FlutterMacOS: + :path: Flutter/ephemeral + geolocator_apple: + :path: Flutter/ephemeral/.symlinks/plugins/geolocator_apple/darwin + package_info_plus: + :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos + share_plus: + :path: Flutter/ephemeral/.symlinks/plugins/share_plus/macos + shared_preferences_foundation: + :path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin + url_launcher_macos: + :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos + +SPEC CHECKSUMS: + FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1 + geolocator_apple: ab36aa0e8b7d7a2d7639b3b4e48308394e8cef5e + package_info_plus: f0052d280d17aa382b932f399edf32507174e870 + share_plus: 3c787998077d6b31e839225a282e9e27edf99274 + shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb + url_launcher_macos: f87a979182d112f911de6820aefddaf56ee9fbfd + +PODFILE CHECKSUM: 54d867c82ac51cbd61b565781b9fada492027009 + +COCOAPODS: 1.16.2 diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..9eb8b9d --- /dev/null +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,801 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 1115E964EE7344044EA87340 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB4F5A4FE440294B3214794A /* Pods_Runner.framework */; }; + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; }; + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; + 3706021F7EEB2AC8761EF83E /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80F792EE2D670777FD7CA688 /* Pods_RunnerTests.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC10EC2044A3C60003C045; + remoteInfo = Runner; + }; + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 03E70FFEBD3ABEFEA74186E9 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* unionapp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = unionapp.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 439331F7BBC4C5200C47CD53 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; + 79CAB73FB66F4C32DE422CDE /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 80F792EE2D670777FD7CA688 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; + B439C3977658BF3659A03040 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + D48F6E62A7A5E80DDD97417B /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; + E0D55815B799E5060DE15BB1 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + EB4F5A4FE440294B3214794A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 331C80D2294CF70F00263BE5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 3706021F7EEB2AC8761EF83E /* Pods_RunnerTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1115E964EE7344044EA87340 /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C80D6294CF71000263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C80D7294CF71000263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 331C80D6294CF71000263BE5 /* RunnerTests */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + 643F9CEC1C25FED65C6CBC14 /* Pods */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* unionapp.app */, + 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + 643F9CEC1C25FED65C6CBC14 /* Pods */ = { + isa = PBXGroup; + children = ( + B439C3977658BF3659A03040 /* Pods-Runner.debug.xcconfig */, + E0D55815B799E5060DE15BB1 /* Pods-Runner.release.xcconfig */, + 439331F7BBC4C5200C47CD53 /* Pods-Runner.profile.xcconfig */, + 79CAB73FB66F4C32DE422CDE /* Pods-RunnerTests.debug.xcconfig */, + D48F6E62A7A5E80DDD97417B /* Pods-RunnerTests.release.xcconfig */, + 03E70FFEBD3ABEFEA74186E9 /* Pods-RunnerTests.profile.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + EB4F5A4FE440294B3214794A /* Pods_Runner.framework */, + 80F792EE2D670777FD7CA688 /* Pods_RunnerTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C80D4294CF70F00263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + A3B693C9D43FF0298BC47F87 /* [CP] Check Pods Manifest.lock */, + 331C80D1294CF70F00263BE5 /* Sources */, + 331C80D2294CF70F00263BE5 /* Frameworks */, + 331C80D3294CF70F00263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C80DA294CF71000263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 837EC17E2DC8DD04D788FAEB /* [CP] Check Pods Manifest.lock */, + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + 000CA14DDCCC50A5CBB6774D /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* unionapp.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C80D4294CF70F00263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 33CC10EC2044A3C60003C045; + }; + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 331C80D4294CF70F00263BE5 /* RunnerTests */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C80D3294CF70F00263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 000CA14DDCCC50A5CBB6774D /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; + 837EC17E2DC8DD04D788FAEB /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + A3B693C9D43FF0298BC47F87 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C80D1294CF70F00263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC10EC2044A3C60003C045 /* Runner */; + targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */; + }; + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 331C80DB294CF71000263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 79CAB73FB66F4C32DE422CDE /* Pods-RunnerTests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/unionapp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/unionapp"; + }; + name = Debug; + }; + 331C80DC294CF71000263BE5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D48F6E62A7A5E80DDD97417B /* Pods-RunnerTests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/unionapp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/unionapp"; + }; + name = Release; + }; + 331C80DD294CF71000263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 03E70FFEBD3ABEFEA74186E9 /* Pods-RunnerTests.profile.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/unionapp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/unionapp"; + }; + name = Profile; + }; + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.15; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C80DB294CF71000263BE5 /* Debug */, + 331C80DC294CF71000263BE5 /* Release */, + 331C80DD294CF71000263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..4e7d11a --- /dev/null +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..21a3cc1 --- /dev/null +++ b/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..b3c1761 --- /dev/null +++ b/macos/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import Cocoa +import FlutterMacOS + +@main +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000000000000000000000000000000000000..82b6f9d9a33e198f5747104729e1fcef999772a5 GIT binary patch literal 102994 zcmeEugo5nb1G~3xi~y`}h6XHx5j$(L*3|5S2UfkG$|UCNI>}4f?MfqZ+HW-sRW5RKHEm z^unW*Xx{AH_X3Xdvb%C(Bh6POqg==@d9j=5*}oEny_IS;M3==J`P0R!eD6s~N<36C z*%-OGYqd0AdWClO!Z!}Y1@@RkfeiQ$Ib_ z&fk%T;K9h`{`cX3Hu#?({4WgtmkR!u3ICS~|NqH^fdNz>51-9)OF{|bRLy*RBv#&1 z3Oi_gk=Y5;>`KbHf~w!`u}!&O%ou*Jzf|Sf?J&*f*K8cftMOKswn6|nb1*|!;qSrlw= zr-@X;zGRKs&T$y8ENnFU@_Z~puu(4~Ir)>rbYp{zxcF*!EPS6{(&J}qYpWeqrPWW< zfaApz%<-=KqxrqLLFeV3w0-a0rEaz9&vv^0ZfU%gt9xJ8?=byvNSb%3hF^X_n7`(fMA;C&~( zM$cQvQ|g9X)1AqFvbp^B{JEX$o;4iPi?+v(!wYrN{L}l%e#5y{j+1NMiT-8=2VrCP zmFX9=IZyAYA5c2!QO96Ea-6;v6*$#ZKM-`%JCJtrA3d~6h{u+5oaTaGE)q2b+HvdZ zvHlY&9H&QJ5|uG@wDt1h99>DdHy5hsx)bN`&G@BpxAHh$17yWDyw_jQhhjSqZ=e_k z_|r3=_|`q~uA47y;hv=6-o6z~)gO}ZM9AqDJsR$KCHKH;QIULT)(d;oKTSPDJ}Jx~G#w-(^r<{GcBC*~4bNjfwHBumoPbU}M)O za6Hc2ik)2w37Yyg!YiMq<>Aov?F2l}wTe+>h^YXcK=aesey^i)QC_p~S zp%-lS5%)I29WfywP(r4@UZ@XmTkqo51zV$|U|~Lcap##PBJ}w2b4*kt7x6`agP34^ z5fzu_8rrH+)2u*CPcr6I`gL^cI`R2WUkLDE5*PX)eJU@H3HL$~o_y8oMRoQ0WF9w| z6^HZDKKRDG2g;r8Z4bn+iJNFV(CG;K-j2>aj229gl_C6n12Jh$$h!}KVhn>*f>KcH z;^8s3t(ccVZ5<{>ZJK@Z`hn_jL{bP8Yn(XkwfRm?GlEHy=T($8Z1Mq**IM`zxN9>-yXTjfB18m_$E^JEaYn>pj`V?n#Xu;Z}#$- zw0Vw;T*&9TK$tKI7nBk9NkHzL++dZ^;<|F6KBYh2+XP-b;u`Wy{~79b%IBZa3h*3^ zF&BKfQ@Ej{7ku_#W#mNJEYYp=)bRMUXhLy2+SPMfGn;oBsiG_6KNL8{p1DjuB$UZB zA)a~BkL)7?LJXlCc}bB~j9>4s7tlnRHC5|wnycQPF_jLl!Avs2C3^lWOlHH&v`nGd zf&U!fn!JcZWha`Pl-B3XEe;(ks^`=Z5R zWyQR0u|do2`K3ec=YmWGt5Bwbu|uBW;6D8}J3{Uep7_>L6b4%(d=V4m#(I=gkn4HT zYni3cnn>@F@Wr<hFAY3Y~dW+3bte;70;G?kTn4Aw5nZ^s5|47 z4$rCHCW%9qa4)4vE%^QPMGf!ET!^LutY$G zqdT(ub5T5b+wi+OrV}z3msoy<4)`IPdHsHJggmog0K*pFYMhH!oZcgc5a)WmL?;TPSrerTVPp<#s+imF3v#!FuBNNa`#6 z!GdTCF|IIpz#(eV^mrYKThA4Bnv&vQet@%v9kuRu3EHx1-2-it@E`%9#u`)HRN#M? z7aJ{wzKczn#w^`OZ>Jb898^Xxq)0zd{3Tu7+{-sge-rQ z&0PME&wIo6W&@F|%Z8@@N3)@a_ntJ#+g{pUP7i?~3FirqU`rdf8joMG^ld?(9b7Iv z>TJgBg#)(FcW)h!_if#cWBh}f+V08GKyg|$P#KTS&%=!+0a%}O${0$i)kn9@G!}En zv)_>s?glPiLbbx)xk(lD-QbY(OP3;MSXM5E*P&_`Zks2@46n|-h$Y2L7B)iH{GAAq19h5-y0q>d^oy^y+soJu9lXxAe%jcm?=pDLFEG2kla40e!5a}mpe zdL=WlZ=@U6{>g%5a+y-lx)01V-x;wh%F{=qy#XFEAqcd+m}_!lQ)-9iiOL%&G??t| z?&NSdaLqdPdbQs%y0?uIIHY7rw1EDxtQ=DU!i{)Dkn~c$LG5{rAUYM1j5*G@oVn9~ zizz{XH(nbw%f|wI=4rw^6mNIahQpB)OQy10^}ACdLPFc2@ldVi|v@1nWLND?)53O5|fg`RZW&XpF&s3@c-R?aad!$WoH6u0B|}zt)L($E^@U- zO#^fxu9}Zw7Xl~nG1FVM6DZSR0*t!4IyUeTrnp@?)Z)*!fhd3)&s(O+3D^#m#bAem zpf#*aiG_0S^ofpm@9O7j`VfLU0+{$x!u^}3!zp=XST0N@DZTp!7LEVJgqB1g{psNr za0uVmh3_9qah14@M_pi~vAZ#jc*&aSm$hCNDsuQ-zPe&*Ii#2=2gP+DP4=DY z_Y0lUsyE6yaV9)K)!oI6+*4|spx2at*30CAx~6-5kfJzQ`fN8$!lz%hz^J6GY?mVH zbYR^JZ(Pmj6@vy-&!`$5soyy-NqB^8cCT40&R@|6s@m+ZxPs=Bu77-+Os7+bsz4nA3DrJ8#{f98ZMaj-+BD;M+Jk?pgFcZIb}m9N z{ct9T)Kye&2>l^39O4Q2@b%sY?u#&O9PO4@t0c$NUXG}(DZJ<;_oe2~e==3Z1+`Zo zFrS3ns-c}ZognVBHbg#e+1JhC(Yq7==rSJQ8J~}%94(O#_-zJKwnBXihl#hUd9B_>+T& z7eHHPRC?5ONaUiCF7w|{J`bCWS7Q&xw-Sa={j-f)n5+I=9s;E#fBQB$`DDh<^mGiF zu-m_k+)dkBvBO(VMe2O4r^sf3;sk9K!xgXJU>|t9Vm8Ty;fl5pZzw z9j|}ZD}6}t;20^qrS?YVPuPRS<39d^y0#O1o_1P{tN0?OX!lc-ICcHI@2#$cY}_CY zev|xdFcRTQ_H)1fJ7S0*SpPs8e{d+9lR~IZ^~dKx!oxz?=Dp!fD`H=LH{EeC8C&z-zK$e=!5z8NL=4zx2{hl<5z*hEmO=b-7(k5H`bA~5gT30Sjy`@-_C zKM}^so9Ti1B;DovHByJkTK87cfbF16sk-G>`Q4-txyMkyQS$d}??|Aytz^;0GxvOs zPgH>h>K+`!HABVT{sYgzy3CF5ftv6hI-NRfgu613d|d1cg^jh+SK7WHWaDX~hlIJ3 z>%WxKT0|Db1N-a4r1oPKtF--^YbP=8Nw5CNt_ZnR{N(PXI>Cm$eqi@_IRmJ9#)~ZHK_UQ8mi}w^`+4$OihUGVz!kW^qxnCFo)-RIDbA&k-Y=+*xYv5y4^VQ9S)4W5Pe?_RjAX6lS6Nz#!Hry=+PKx2|o_H_3M`}Dq{Bl_PbP(qel~P@=m}VGW*pK96 zI@fVag{DZHi}>3}<(Hv<7cVfWiaVLWr@WWxk5}GDEbB<+Aj;(c>;p1qmyAIj+R!`@#jf$ zy4`q23L-72Zs4j?W+9lQD;CYIULt%;O3jPWg2a%Zs!5OW>5h1y{Qof!p&QxNt5=T( zd5fy&7=hyq;J8%86YBOdc$BbIFxJx>dUyTh`L z-oKa=OhRK9UPVRWS`o2x53bAv+py)o)kNL6 z9W1Dlk-g6Ht@-Z^#6%`9S9`909^EMj?9R^4IxssCY-hYzei^TLq7Cj>z$AJyaU5=z zl!xiWvz0U8kY$etrcp8mL;sYqGZD!Hs-U2N{A|^oEKA482v1T%cs%G@X9M?%lX)p$ zZoC7iYTPe8yxY0Jne|s)fCRe1mU=Vb1J_&WcIyP|x4$;VSVNC`M+e#oOA`#h>pyU6 z?7FeVpk`Hsu`~T3i<_4<5fu?RkhM;@LjKo6nX>pa%8dSdgPO9~Jze;5r>Tb1Xqh5q z&SEdTXevV@PT~!O6z|oypTk7Qq+BNF5IQ(8s18c=^0@sc8Gi|3e>VKCsaZ?6=rrck zl@oF5Bd0zH?@15PxSJIRroK4Wa?1o;An;p0#%ZJ^tI=(>AJ2OY0GP$E_3(+Zz4$AQ zW)QWl<4toIJ5TeF&gNXs>_rl}glkeG#GYbHHOv-G!%dJNoIKxn)FK$5&2Zv*AFic! z@2?sY&I*PSfZ8bU#c9fdIJQa_cQijnj39-+hS@+~e*5W3bj%A}%p9N@>*tCGOk+cF zlcSzI6j%Q|2e>QG3A<86w?cx6sBtLNWF6_YR?~C)IC6_10SNoZUHrCpp6f^*+*b8` zlx4ToZZuI0XW1W)24)92S)y0QZa);^NRTX6@gh8@P?^=#2dV9s4)Q@K+gnc{6|C}& zDLHr7nDOLrsH)L@Zy{C_2UrYdZ4V{|{c8&dRG;wY`u>w%$*p>PO_}3`Y21pk?8Wtq zGwIXTulf7AO2FkPyyh2TZXM1DJv>hI`}x`OzQI*MBc#=}jaua&czSkI2!s^rOci|V zFkp*Vbiz5vWa9HPFXMi=BV&n3?1?%8#1jq?p^3wAL`jgcF)7F4l<(H^!i=l-(OTDE zxf2p71^WRIExLf?ig0FRO$h~aA23s#L zuZPLkm>mDwBeIu*C7@n@_$oSDmdWY7*wI%aL73t~`Yu7YwE-hxAATmOi0dmB9|D5a zLsR7OQcA0`vN9m0L|5?qZ|jU+cx3_-K2!K$zDbJ$UinQy<9nd5ImWW5n^&=Gg>Gsh zY0u?m1e^c~Ug39M{{5q2L~ROq#c{eG8Oy#5h_q=#AJj2Yops|1C^nv0D1=fBOdfAG z%>=vl*+_w`&M7{qE#$xJJp_t>bSh7Mpc(RAvli9kk3{KgG5K@a-Ue{IbU{`umXrR3ra5Y7xiX42+Q%N&-0#`ae_ z#$Y6Wa++OPEDw@96Zz##PFo9sADepQe|hUy!Zzc2C(L`k9&=a8XFr+!hIS>D2{pdGP1SzwyaGLiH3j--P>U#TWw90t8{8Bt%m7Upspl#=*hS zhy|(XL6HOqBW}Og^tLX7 z+`b^L{O&oqjwbxDDTg2B;Yh2(fW>%S5Pg8^u1p*EFb z`(fbUM0`afawYt%VBfD&b3MNJ39~Ldc@SAuzsMiN%E}5{uUUBc7hc1IUE~t-Y9h@e7PC|sv$xGx=hZiMXNJxz5V(np%6u{n24iWX#!8t#>Ob$in<>dw96H)oGdTHnU zSM+BPss*5)Wz@+FkooMxxXZP1{2Nz7a6BB~-A_(c&OiM)UUNoa@J8FGxtr$)`9;|O z(Q?lq1Q+!E`}d?KemgC!{nB1JJ!B>6J@XGQp9NeQvtbM2n7F%v|IS=XWPVZY(>oq$ zf=}8O_x`KOxZoGnp=y24x}k6?gl_0dTF!M!T`={`Ii{GnT1jrG9gPh)R=RZG8lIR| z{ZJ6`x8n|y+lZuy${fuEDTAf`OP!tGySLXD}ATJO5UoZv|Xo3%7O~L63+kw}v)Ci=&tWx3bQJfL@5O18CbPlkR^IcKA zy1=^Vl-K-QBP?9^R`@;czcUw;Enbbyk@vJQB>BZ4?;DM%BUf^eZE+sOy>a){qCY6Y znYy;KGpch-zf=5|p#SoAV+ie8M5(Xg-{FoLx-wZC9IutT!(9rJ8}=!$!h%!J+vE2e z(sURwqCC35v?1>C1L)swfA^sr16{yj7-zbT6Rf26-JoEt%U?+|rQ zeBuGohE?@*!zR9)1P|3>KmJSgK*fOt>N>j}LJB`>o(G#Dduvx7@DY7};W7K;Yj|8O zGF<+gTuoIKe7Rf+LQG3-V1L^|E;F*}bQ-{kuHq}| ze_NwA7~US19sAZ)@a`g*zkl*ykv2v3tPrb4Og2#?k6Lc7@1I~+ew48N&03hW^1Cx+ zfk5Lr4-n=#HYg<7ka5i>2A@ZeJ60gl)IDX!!p zzfXZQ?GrT>JEKl7$SH!otzK6=0dIlqN)c23YLB&Krf9v-{@V8p+-e2`ujFR!^M%*; ze_7(Jh$QgoqwB!HbX=S+^wqO15O_TQ0-qX8f-|&SOuo3ZE{{9Jw5{}>MhY}|GBhO& zv48s_B=9aYQfa;d>~1Z$y^oUUaDer>7ve5+Gf?rIG4GZ!hRKERlRNgg_C{W_!3tsI2TWbX8f~MY)1Q`6Wj&JJ~*;ay_0@e zzx+mE-pu8{cEcVfBqsnm=jFU?H}xj@%CAx#NO>3 z_re3Rq%d1Y7VkKy{=S73&p;4^Praw6Y59VCP6M?!Kt7{v#DG#tz?E)`K95gH_mEvb z%$<~_mQ$ad?~&T=O0i0?`YSp?E3Dj?V>n+uTRHAXn`l!pH9Mr}^D1d@mkf+;(tV45 zH_yfs^kOGLXlN*0GU;O&{=awxd?&`{JPRr$z<1HcAO2K`K}92$wC}ky&>;L?#!(`w z68avZGvb728!vgw>;8Z8I@mLtI`?^u6R>sK4E7%=y)jpmE$fH!Dj*~(dy~-2A5Cm{ zl{1AZw`jaDmfvaB?jvKwz!GC}@-Dz|bFm1OaPw(ia#?>vF7Y5oh{NVbyD~cHB1KFn z9C@f~X*Wk3>sQH9#D~rLPslAd26@AzMh=_NkH_yTNXx6-AdbAb z{Ul89YPHslD?xAGzOlQ*aMYUl6#efCT~WI zOvyiewT=~l1W(_2cEd(8rDywOwjM-7P9!8GCL-1<9KXXO=6%!9=W++*l1L~gRSxLVd8K=A7&t52ql=J&BMQu{fa6y zXO_e>d?4X)xp2V8e3xIQGbq@+vo#&n>-_WreTTW0Yr?|YRPP43cDYACMQ(3t6(?_k zfgDOAU^-pew_f5U#WxRXB30wcfDS3;k~t@b@w^GG&<5n$Ku?tT(%bQH(@UHQGN)N|nfC~7?(etU`}XB)$>KY;s=bYGY#kD%i9fz= z2nN9l?UPMKYwn9bX*^xX8Y@%LNPFU>s#Ea1DaP%bSioqRWi9JS28suTdJycYQ+tW7 zrQ@@=13`HS*dVKaVgcem-45+buD{B;mUbY$YYULhxK)T{S?EB<8^YTP$}DA{(&)@S zS#<8S96y9K2!lG^VW-+CkfXJIH;Vo6wh)N}!08bM$I7KEW{F6tqEQ?H@(U zAqfi%KCe}2NUXALo;UN&k$rU0BLNC$24T_mcNY(a@lxR`kqNQ0z%8m>`&1ro40HX} z{{3YQ;2F9JnVTvDY<4)x+88i@MtXE6TBd7POk&QfKU-F&*C`isS(T_Q@}K)=zW#K@ zbXpcAkTT-T5k}Wj$dMZl7=GvlcCMt}U`#Oon1QdPq%>9J$rKTY8#OmlnNWBYwafhx zqFnym@okL#Xw>4SeRFejBnZzY$jbO)e^&&sHBgMP%Ygfi!9_3hp17=AwLBNFTimf0 zw6BHNXw19Jg_Ud6`5n#gMpqe%9!QB^_7wAYv8nrW94A{*t8XZu0UT&`ZHfkd(F{Px zD&NbRJP#RX<=+sEeGs2`9_*J2OlECpR;4uJie-d__m*(aaGE}HIo+3P{my@;a~9Y$ zHBXVJ83#&@o6{M+pE9^lI<4meLLFN_3rwgR4IRyp)~OF0n+#ORrcJ2_On9-78bWbG zuCO0esc*n1X3@p1?lN{qWS?l7J$^jbpeel{w~51*0CM+q9@9X=>%MF(ce~om(}?td zjkUmdUR@LOn-~6LX#=@a%rvj&>DFEoQscOvvC@&ZB5jVZ-;XzAshwx$;Qf@U41W=q zOSSjQGQV8Qi3*4DngNMIM&Cxm7z*-K`~Bl(TcEUxjQ1c=?)?wF8W1g;bAR%sM#LK( z_Op?=P%)Z+J!>vpN`By0$?B~Out%P}kCriDq@}In&fa_ZyKV+nLM0E?hfxuu%ciUz z>yAk}OydbWNl7{)#112j&qmw;*Uj&B;>|;Qwfc?5wIYIHH}s6Mve@5c5r+y)jK9i( z_}@uC(98g)==AGkVN?4>o@w=7x9qhW^ zB(b5%%4cHSV?3M?k&^py)j*LK16T^Ef4tb05-h-tyrjt$5!oo4spEfXFK7r_Gfv7#x$bsR7T zs;dqxzUg9v&GjsQGKTP*=B(;)be2aN+6>IUz+Hhw-n>^|`^xu*xvjGPaDoFh2W4-n z@Wji{5Y$m>@Vt7TE_QVQN4*vcfWv5VY-dT0SV=l=8LAEq1go*f zkjukaDV=3kMAX6GAf0QOQHwP^{Z^=#Lc)sh`QB)Ftl&31jABvq?8!3bt7#8vxB z53M{4{GR4Hl~;W3r}PgXSNOt477cO62Yj(HcK&30zsmWpvAplCtpp&mC{`2Ue*Bwu zF&UX1;w%`Bs1u%RtGPFl=&sHu@Q1nT`z={;5^c^^S~^?2-?<|F9RT*KQmfgF!7=wD@hytxbD;=9L6PZrK*1<4HMObNWehA62DtTy)q5H|57 z9dePuC!1;0MMRRl!S@VJ8qG=v^~aEU+}2Qx``h1LII!y{crP2ky*R;Cb;g|r<#ryo zju#s4dE?5CTIZKc*O4^3qWflsQ(voX>(*_JP7>Q&$%zCAIBTtKC^JUi@&l6u&t0hXMXjz_y!;r@?k|OU9aD%938^TZ>V? zqJmom_6dz4DBb4Cgs_Ef@}F%+cRCR%UMa9pi<-KHN;t#O@cA%(LO1Rb=h?5jiTs93 zPLR78p+3t>z4|j=<>2i4b`ketv}9Ax#B0)hn7@bFl;rDfP8p7u9XcEb!5*PLKB(s7wQC2kzI^@ae)|DhNDmSy1bOLid%iIap@24A(q2XI!z_hkl-$1T10 z+KKugG4-}@u8(P^S3PW4x>an;XWEF-R^gB{`t8EiP{ZtAzoZ!JRuMRS__-Gg#Qa3{<;l__CgsF+nfmFNi}p z>rV!Y6B@cC>1up)KvaEQiAvQF!D>GCb+WZsGHjDeWFz?WVAHP65aIA8u6j6H35XNYlyy8>;cWe3ekr};b;$9)0G`zsc9LNsQ&D?hvuHRpBxH)r-1t9|Stc*u<}Ol&2N+wPMom}d15_TA=Aprp zjN-X3*Af$7cDWMWp##kOH|t;c2Pa9Ml4-)o~+7P;&q8teF-l}(Jt zTGKOQqJTeT!L4d}Qw~O0aanA$Vn9Rocp-MO4l*HK)t%hcp@3k0%&_*wwpKD6ThM)R z8k}&7?)YS1ZYKMiy?mn>VXiuzX7$Ixf7EW8+C4K^)m&eLYl%#T=MC;YPvD&w#$MMf zQ=>`@rh&&r!@X&v%ZlLF42L_c=5dSU^uymKVB>5O?AouR3vGv@ei%Z|GX5v1GK2R* zi!!}?+-8>J$JH^fPu@)E6(}9$d&9-j51T^n-e0Ze%Q^)lxuex$IL^XJ&K2oi`wG}QVGk2a7vC4X?+o^z zsCK*7`EUfSuQA*K@Plsi;)2GrayQOG9OYF82Hc@6aNN5ulqs1Of-(iZQdBI^U5of^ zZg2g=Xtad7$hfYu6l~KDQ}EU;oIj(3nO#u9PDz=eO3(iax7OCmgT2p_7&^3q zg7aQ;Vpng*)kb6=sd5?%j5Dm|HczSChMo8HHq_L8R;BR5<~DVyU$8*Tk5}g0eW5x7 z%d)JFZ{(Y<#OTKLBA1fwLM*fH7Q~7Sc2Ne;mVWqt-*o<;| z^1@vo_KTYaMnO$7fbLL+qh#R$9bvnpJ$RAqG+z8h|} z3F5iwG*(sCn9Qbyg@t0&G}3fE0jGq3J!JmG2K&$urx^$z95) z7h?;4vE4W=v)uZ*Eg3M^6f~|0&T)2D;f+L_?M*21-I1pnK(pT$5l#QNlT`SidYw~o z{`)G)Asv#cue)Ax1RNWiRUQ(tQ(bzd-f2U4xlJK+)ZWBxdq#fp=A>+Qc%-tl(c)`t z$e2Ng;Rjvnbu7((;v4LF9Y1?0el9hi!g>G{^37{ z`^s-03Z5jlnD%#Mix19zkU_OS|86^_x4<0(*YbPN}mi-$L?Z4K(M|2&VV*n*ZYN_UqI?eKZi3!b)i z%n3dzUPMc-dc|q}TzvPy!VqsEWCZL(-eURDRG4+;Eu!LugSSI4Fq$Ji$Dp08`pfP_C5Yx~`YKcywlMG;$F z)R5!kVml_Wv6MSpeXjG#g?kJ0t_MEgbXlUN3k|JJ%N>|2xn8yN>>4qxh!?dGI}s|Y zDTKd^JCrRSN+%w%D_uf=Tj6wIV$c*g8D96jb^Kc#>5Fe-XxKC@!pIJw0^zu;`_yeb zhUEm-G*C=F+jW%cP(**b61fTmPn2WllBr4SWNdKe*P8VabZsh0-R|?DO=0x`4_QY) zR7sthW^*BofW7{Sak&S1JdiG?e=SfL24Y#w_)xrBVhGB-13q$>mFU|wd9Xqe-o3{6 zSn@@1@&^)M$rxb>UmFuC+pkio#T;mSnroMVZJ%nZ!uImi?%KsIX#@JU2VY(`kGb1A z7+1MEG)wd@)m^R|a2rXeviv$!emwcY(O|M*xV!9%tBzarBOG<4%gI9SW;Um_gth4=gznYzOFd)y8e+3APCkL)i-OI`;@7-mCJgE`js(M} z;~ZcW{{FMVVO)W>VZ}ILouF#lWGb%Couu}TI4kubUUclW@jEn6B_^v!Ym*(T*4HF9 zWhNKi8%sS~viSdBtnrq!-Dc5(G^XmR>DFx8jhWvR%*8!m*b*R8e1+`7{%FACAK`7 zzdy8TmBh?FVZ0vtw6npnWwM~XjF2fNvV#ZlGG z?FxHkXHN>JqrBYoPo$)zNC7|XrQfcqmEXWud~{j?La6@kbHG@W{xsa~l1=%eLly8B z4gCIH05&Y;6O2uFSopNqP|<$ml$N40^ikxw0`o<~ywS1(qKqQN!@?Ykl|bE4M?P+e zo$^Vs_+x)iuw?^>>`$&lOQOUkZ5>+OLnRA)FqgpDjW&q*WAe(_mAT6IKS9;iZBl8M z<@=Y%zcQUaSBdrs27bVK`c$)h6A1GYPS$y(FLRD5Yl8E3j0KyH08#8qLrsc_qlws; znMV%Zq8k+&T2kf%6ZO^2=AE9>?a587g%-={X}IS~P*I(NeCF9_9&`)|ok0iiIun zo+^odT0&Z4k;rn7I1v87=z!zKU(%gfB$(1mrRYeO$sbqM22Kq68z9wgdg8HBxp>_< zn9o%`f?sVO=IN#5jSX&CGODWlZfQ9A)njK2O{JutYwRZ?n0G_p&*uwpE`Md$iQxrd zoQfF^b8Ou)+3BO_3_K5y*~?<(BF@1l+@?Z6;^;U>qlB)cdro;rxOS1M{Az$s^9o5sXDCg8yD<=(pKI*0e zLk>@lo#&s0)^*Q+G)g}C0IErqfa9VbL*Qe=OT@&+N8m|GJF7jd83vY#SsuEv2s{Q> z>IpoubNs>D_5?|kXGAPgF@mb_9<%hjU;S0C8idI)a=F#lPLuQJ^7OnjJlH_Sks9JD zMl1td%YsWq3YWhc;E$H1<0P$YbSTqs`JKY%(}svsifz|h8BHguL82dBl+z0^YvWk8 zGy;7Z0v5_FJ2A$P0wIr)lD?cPR%cz>kde!=W%Ta^ih+Dh4UKdf7ip?rBz@%y2&>`6 zM#q{JXvW9ZlaSk1oD!n}kSmcDa2v6T^Y-dy+#fW^y>eS8_%<7tWXUp8U@s$^{JFfKMjDAvR z$YmVB;n3ofl!ro9RNT!TpQpcycXCR}$9k5>IPWDXEenQ58os?_weccrT+Bh5sLoiH zZ_7~%t(vT)ZTEO= zb0}@KaD{&IyK_sd8b$`Qz3%UA`nSo zn``!BdCeN!#^G;lK@G2ron*0jQhbdw)%m$2;}le@z~PSLnU-z@tL)^(p%P>OO^*Ff zNRR9oQ`W+x^+EU+3BpluwK77|B3=8QyT|$V;02bn_LF&3LhLA<#}{{)jE)}CiW%VEU~9)SW+=F%7U-iYlQ&q!#N zwI2{(h|Pi&<8_fqvT*}FLN^0CxN}#|3I9G_xmVg$gbn2ZdhbmGk7Q5Q2Tm*ox8NMo zv`iaZW|ZEOMyQga5fts?&T-eCCC9pS0mj7v0SDkD=*^MxurP@89v&Z#3q{FM!a_nr zb?KzMv`BBFOew>4!ft@A&(v-kWXny-j#egKef|#!+3>26Qq0 zv!~8ev4G`7Qk>V1TaMT-&ziqoY3IJp8_S*%^1j73D|=9&;tDZH^!LYFMmME4*Wj(S zRt~Q{aLb_O;wi4u&=}OYuj}Lw*j$@z*3>4&W{)O-oi@9NqdoU!=U%d|se&h?^$Ip# z)BY+(1+cwJz!yy4%l(aLC;T!~Ci>yAtXJb~b*yr&v7f{YCU8P|N1v~H`xmGsG)g)y z4%mv=cPd`s7a*#OR7f0lpD$ueP>w8qXj0J&*7xX+U!uat5QNk>zwU$0acn5p=$88L=jn_QCSYkTV;1~(yUem#0gB`FeqY98sf=>^@ z_MCdvylv~WL%y_%y_FE1)j;{Szj1+K7Lr_y=V+U zk6Tr;>XEqlEom~QGL!a+wOf(@ZWoxE<$^qHYl*H1a~kk^BLPn785%nQb$o;Cuz0h& za9LMx^bKEbPS%e8NM33Jr|1T|ELC(iE!FUci38xW_Y7kdHid#2ie+XZhP;2!Z;ZAM zB_cXKm)VrPK!SK|PY00Phwrpd+x0_Aa;}cDQvWKrwnQrqz##_gvHX2ja?#_{f#;bz`i>C^^ zTLDy;6@HZ~XQi7rph!mz9k!m;KchA)uMd`RK4WLK7)5Rl48m#l>b(#`WPsl<0j z-sFkSF6>Nk|LKnHtZ`W_NnxZP62&w)S(aBmmjMDKzF%G;3Y?FUbo?>b5;0j8Lhtc4 zr*8d5Y9>g@FFZaViw7c16VsHcy0u7M%6>cG1=s=Dtx?xMJSKIu9b6GU8$uSzf43Y3 zYq|U+IWfH;SM~*N1v`KJo!|yfLxTFS?oHsr3qvzeVndVV^%BWmW6re_S!2;g<|Oao z+N`m#*i!)R%i1~NO-xo{qpwL0ZrL7hli;S z3L0lQ_z}z`fdK39Mg~Zd*%mBdD;&5EXa~@H(!###L`ycr7gW`f)KRuqyHL3|uyy3h zSS^td#E&Knc$?dXs*{EnPYOp^-vjAc-h4z#XkbG&REC7;0>z^^Z}i8MxGKerEY z>l?(wReOlXEsNE5!DO&ZWyxY)gG#FSZs%fXuzA~XIAPVp-%yb2XLSV{1nH6{)5opg z(dZKckn}Q4Li-e=eUDs1Psg~5zdn1>ql(*(nn6)iD*OcVkwmKL(A{fix(JhcVB&}V zVt*Xb!{gzvV}dc446>(D=SzfCu7KB`oMjv6kPzSv&B>>HLSJP|wN`H;>oRw*tl#N) z*zZ-xwM7D*AIsBfgqOjY1Mp9aq$kRa^dZU_xw~KxP;|q(m+@e+YSn~`wEJzM|Ippb zzb@%;hB7iH4op9SqmX?j!KP2chsb79(mFossBO-Zj8~L}9L%R%Bw<`^X>hjkCY5SG z7lY!8I2mB#z)1o;*3U$G)3o0A&{0}#B;(zPd2`OF`Gt~8;0Re8nIseU z_yzlf$l+*-wT~_-cYk$^wTJ@~7i@u(CZs9FVkJCru<*yK8&>g+t*!JqCN6RH%8S-P zxH8+Cy#W?!;r?cLMC(^BtAt#xPNnwboI*xWw#T|IW^@3|q&QYY6Ehxoh@^URylR|T zne-Y6ugE^7p5bkRDWIh)?JH5V^ub82l-LuVjDr7UT^g`q4dB&mBFRWGL_C?hoeL(% zo}ocH5t7|1Mda}T!^{Qt9vmA2ep4)dQSZO>?Eq8}qRp&ZJ?-`Tnw+MG(eDswP(L*X3ahC2Ad0_wD^ff9hfzb%Jd`IXx5 zae@NMzBXJDwJS?7_%!TB^E$N8pvhOHDK$7YiOelTY`6KX8hK6YyT$tk*adwN>s^Kp zwM3wGVPhwKU*Yq-*BCs}l`l#Tej(NQ>jg*S0TN%D+GcF<14Ms6J`*yMY;W<-mMN&-K>((+P}+t+#0KPGrzjP zJ~)=Bcz%-K!L5ozIWqO(LM)l_9lVOc4*S65&DKM#TqsiWNG{(EZQw!bc>qLW`=>p-gVJ;T~aN2D_- z{>SZC=_F+%hNmH6ub%Ykih0&YWB!%sd%W5 zHC2%QMP~xJgt4>%bU>%6&uaDtSD?;Usm}ari0^fcMhi_)JZgb1g5j zFl4`FQ*%ROfYI}e7RIq^&^a>jZF23{WB`T>+VIxj%~A-|m=J7Va9FxXV^%UwccSZd zuWINc-g|d6G5;95*%{e;9S(=%yngpfy+7ao|M7S|Jb0-4+^_q-uIqVS&ufU880UDH*>(c)#lt2j zzvIEN>>$Y(PeALC-D?5JfH_j+O-KWGR)TKunsRYKLgk7eu4C{iF^hqSz-bx5^{z0h ze2+u>Iq0J4?)jIo)}V!!m)%)B;a;UfoJ>VRQ*22+ncpe9f4L``?v9PH&;5j{WF?S_C>Lq>nkChZB zjF8(*v0c(lU^ZI-)_uGZnnVRosrO4`YinzI-RSS-YwjYh3M`ch#(QMNw*)~Et7Qpy z{d<3$4FUAKILq9cCZpjvKG#yD%-juhMj>7xIO&;c>_7qJ%Ae8Z^m)g!taK#YOW3B0 zKKSMOd?~G4h}lrZbtPk)n*iOC1~mDhASGZ@N{G|dF|Q^@1ljhe=>;wusA&NvY*w%~ zl+R6B^1yZiF)YN>0ms%}qz-^U-HVyiN3R9k1q4)XgDj#qY4CE0)52%evvrrOc898^ z*^)XFR?W%g0@?|6Mxo1ZBp%(XNv_RD-<#b^?-Fs+NL^EUW=iV|+Vy*F%;rBz~pN7%-698U-VMfGEVnmEz7fL1p)-5sLT zL;Iz>FCLM$p$c}g^tbkGK1G$IALq1Gd|We@&TtW!?4C7x4l*=4oF&&sr0Hu`x<5!m zhX&&Iyjr?AkNXU_5P_b^Q3U9sy#f6ZF@2C96$>1k*E-E%DjwvA{VL0PdU~suN~DZo zm{T!>sRdp`Ldpp9olrH@(J$QyGq!?#o1bUo=XP2OEuT3`XzI>s^0P{manUaE4pI%! zclQq;lbT;nx7v3tR9U)G39h?ryrxzd0xq4KX7nO?piJZbzT_CU&O=T(Vt;>jm?MgC z2vUL#*`UcMsx%w#vvjdamHhmN!(y-hr~byCA-*iCD};#l+bq;gkwQ0oN=AyOf@8ow>Pj<*A~2*dyjK}eYdN);%!t1 z6Y=|cuEv-|5BhA?n2Db@4s%y~(%Wse4&JXw=HiO48%c6LB~Z0SL1(k^9y?ax%oj~l zf7(`iAYLdPRq*ztFC z7VtAb@s{as%&Y;&WnyYl+6Wm$ru*u!MKIg_@01od-iQft0rMjIj8e7P9eKvFnx_X5 zd%pDg-|8<>T2Jdqw>AII+fe?CgP+fL(m0&U??QL8YzSjV{SFi^vW~;wN@or_(q<0Y zRt~L}#JRcHOvm$CB)T1;;7U>m%)QYBLTR)KTARw%zoDxgssu5#v{UEVIa<>{8dtkm zXgbCGp$tfue+}#SD-PgiNT{Zu^YA9;4BnM(wZ9-biRo_7pN}=aaimjYgC=;9@g%6< zxol5sT_$<8{LiJ6{l1+sV)Z_QdbsfEAEMw!5*zz6)Yop?T0DMtR_~wfta)E6_G@k# zZRP11D}$ir<`IQ`<(kGfAS?O-DzCyuzBq6dxGTNNTK?r^?zT30mLY!kQ=o~Hv*k^w zvq!LBjW=zzIi%UF@?!g9vt1CqdwV(-2LYy2=E@Z?B}JDyVkluHtzGsWuI1W5svX~K z&?UJ45$R7g>&}SFnLnmw09R2tUgmr_w6mM9C}8GvQX>nL&5R#xBqnp~Se(I>R42`T zqZe9p6G(VzNB3QD><8+y%{e%6)sZDRXTR|MI zM#eZmao-~_`N|>Yf;a;7yvd_auTG#B?Vz5D1AHx=zpVUFe7*hME z+>KH5h1In8hsVhrstc>y0Q!FHR)hzgl+*Q&5hU9BVJlNGRkXiS&06eOBV^dz3;4d5 zeYX%$62dNOprZV$px~#h1RH?_E%oD6y;J;pF%~y8M)8pQ0olYKj6 zE+hd|7oY3ot=j9ZZ))^CCPADL6Jw%)F@A{*coMApcA$7fZ{T@3;WOQ352F~q6`Mgi z$RI6$8)a`Aaxy<8Bc;{wlDA%*%(msBh*xy$L-cBJvQ8hj#FCyT^%+Phw1~PaqyDou^JR0rxDkSrmAdjeYDFDZ`E z)G3>XtpaSPDlydd$RGHg;#4|4{aP5c_Om z2u5xgnhnA)K%8iU==}AxPxZCYC)lyOlj9as#`5hZ=<6<&DB%i_XCnt5=pjh?iusH$ z>)E`@HNZcAG&RW3Ys@`Ci{;8PNzE-ZsPw$~Wa!cP$ye+X6;9ceE}ah+3VY7Mx}#0x zbqYa}eO*FceiY2jNS&2cH9Y}(;U<^^cWC5Ob&)dZedvZA9HewU3R;gRQ)}hUdf+~Q zS_^4ds*W1T#bxS?%RH&<739q*n<6o|mV;*|1s>ly-Biu<2*{!!0#{_234&9byvn0* z5=>{95Zfb{(?h_Jk#ocR$FZ78O*UTOxld~0UF!kyGM|nH%B*qf)Jy}N!uT9NGeM19 z-@=&Y0yGGo_dw!FD>juk%P$6$qJkj}TwLBoefi;N-$9LAeV|)|-ET&culW9Sb_pc_ zp{cXI0>I0Jm_i$nSvGnYeLSSj{ccVS2wyL&0x~&5v;3Itc82 z5lIAkfn~wcY-bQB$G!ufWt%qO;P%&2B_R5UKwYxMemIaFm)qF1rA zc>gEihb=jBtsXCi0T%J37s&kt*3$s7|6)L(%UiY)6axuk{6RWIS8^+u;)6!R?Sgap z9|6<0bx~AgVi|*;zL@2x>Pbt2Bz*uv4x-`{F)XatTs`S>unZ#P^ZiyjpfL_q2z^fqgR-fbOcG=Y$q>ozkw1T6dH8-)&ww+z?E0 zR|rV(9bi6zpX3Ub>PrPK!{X>e$C66qCXAeFm)Y+lX8n2Olt7PNs*1^si)j!QmFV#t z0P2fyf$N^!dyTot&`Ew5{i5u<8D`8U`qs(KqaWq5iOF3x2!-z65-|HsyYz(MAKZ?< zCpQR;E)wn%s|&q(LVm0Ab>gdmCFJeKwVTnv@Js%!At;I=A>h=l=p^&<4;Boc{$@h< z38v`3&2wJtka@M}GS%9!+SpJ}sdtoYzMevVbnH+d_eMxN@~~ zZq@k)7V5f8u!yAX2qF3qjS7g%n$JuGrMhQF!&S^7(%Y{rP*w2FWj(v_J{+Hg*}wdWOd~pHQ19&n3RWeljK9W%sz&Y3Tm3 zR`>6YR54%qBHGa)2xbs`9cs_EsNHxsfraEgZ)?vrtooeA0sPKJK7an){ngtV@{SBa zkO6ORr1_Xqp+`a0e}sC*_y(|RKS13ikmHp3C^XkE@&wjbGWrt^INg^9lDz#B;bHiW zkK4{|cg08b!yHFSgPca5)vF&gqCgeu+c82%&FeM^Bb}GUxLy-zo)}N;#U?sJ2?G2BNe*9u_7kE5JeY!it=f`A_4gV3} z`M!HXZy#gN-wS!HvHRqpCHUmjiM;rVvpkC!voImG%OFVN3k(QG@X%e``VJSJ@Z7tb z*Onlf>z^D+&$0!4`IE$;2-NSO9HQWd+UFW(r;4hh;(j^p4H-~6OE!HQp^96v?{9Zt z;@!ZcccV%C2s6FMP#qvo4kG6C04A>XILt>JW}%0oE&HM5f6 zYLD!;My>CW+j<~=Wzev{aYtx2ZNw|ptTFV(4;9`6Tmbz6K1)fv4qPXa2mtoPt&c?P zhmO+*o8uP3ykL6E$il00@TDf6tOW7fmo?Oz_6GU^+5J=c22bWyuH#aNj!tT-^IHrJ zu{aqTYw@q;&$xDE*_kl50Jb*dp`(-^p={z}`rqECTi~3 z>0~A7L6X)=L5p#~$V}gxazgGT7$3`?a)zen>?TvAuQ+KAIAJ-s_v}O6@`h9n-sZk> z`3{IJeb2qu9w=P*@q>iC`5wea`KxCxrx{>(4{5P+!cPg|pn~;n@DiZ0Y>;k5mnKeS z!LIfT4{Lgd=MeysR5YiQKCeNhUQ;Os1kAymg6R!u?j%LF z4orCszIq_n52ulpes{(QN|zirdtBsc{9^Z72Ycb2ht?G^opkT_#|4$wa9`)8k3ilU z%ntAi`nakS1r10;#k^{-ZGOD&Z2|k=p40hRh5D7(&JG#Cty|ECOvwsSHkkSa)36$4 z?;v#%@D(=Raw(HP5s>#4Bm?f~n1@ebH}2tv#7-0l-i^H#H{PC|F@xeNS+Yw{F-&wH z07)bj8MaE6`|6NoqKM~`4%X> zKFl&7g1$Z3HB>lxn$J`P`6GSb6CE6_^NA1V%=*`5O!zP$a7Vq)IwJAki~XBLf=4TF zPYSL}>4nOGZ`fyHChq)jy-f{PKFp6$plHB2=;|>%Z^%)ecVue(*mf>EH_uO^+_zm? zJATFa9SF~tFwR#&0xO{LLf~@}s_xvCPU8TwIJgBs%FFzjm`u?1699RTui;O$rrR{# z1^MqMl5&6)G%@_k*$U5Kxq84!AdtbZ!@8FslBML}<`(Jr zenXrC6bFJP=R^FMBg7P?Pww-!a%G@kJH_zezKvuWU0>m1uyy}#Vf<$>u?Vzo3}@O% z1JR`B?~Tx2)Oa|{DQ_)y9=oY%haj!80GNHw3~qazgU-{|q+Bl~H94J!a%8UR?XsZ@ z0*ZyQugyru`V9b(0OrJOKISfi89bSVR zQy<+i_1XY}4>|D%X_`IKZUPz6=TDb)t1mC9eg(Z=tv zq@|r37AQM6A%H%GaH3szv1L^ku~H%5_V*fv$UvHl*yN4iaqWa69T2G8J2f3kxc7UE zOia@p0YNu_q-IbT%RwOi*|V|&)e5B-u>4=&n@`|WzH}BK4?33IPpXJg%`b=dr_`hU z8JibW_3&#uIN_#D&hX<)x(__jUT&lIH$!txEC@cXv$7yB&Rgu){M`9a`*PH} zRcU)pMWI2O?x;?hzR{WdzKt^;_pVGJAKKd)F$h;q=Vw$MP1XSd<;Mu;EU5ffyKIg+ z&n-Nb?h-ERN7(fix`htopPIba?0Gd^y(4EHvfF_KU<4RpN0PgVxt%7Yo99X*Pe|zR z?ytK&5qaZ$0KSS$3ZNS$$k}y(2(rCl=cuYZg{9L?KVgs~{?5adxS))Upm?LDo||`H zV)$`FF3icFmxcQshXX*1k*w3O+NjBR-AuE70=UYM*7>t|I-oix=bzDwp2*RoIwBp@r&vZukG; zyi-2zdyWJ3+E?{%?>e2Ivk`fAn&Ho(KhGSVE4C-zxM-!j01b~mTr>J|5={PrZHOgO zw@ND3=z(J7D>&C7aw{zT>GHhL2BmUX0GLt^=31RRPSnjoUO9LYzh_yegyPoAKhAQE z>#~O27dR4&LdQiak6={9_{LN}Z>;kyVYKH^d^*!`JVSXJlx#&r4>VnP$zb{XoTb=> zZsLvh>keP3fkLTIDdpf-@(ADfq4=@X=&n>dyU0%dwD{zsjCWc;r`-e~X$Q3NTz_TJ zOXG|LMQQIjGXY3o5tBm9>k6y<6XNO<=9H@IXF;63rzsC=-VuS*$E{|L_i;lZmHOD< zY92;>4spdeRn4L6pY4oUKZG<~+8U-q7ZvNOtW0i*6Q?H`9#U3M*k#4J;ek(MwF02x zUo1wgq9o6XG#W^mxl>pAD)Ll-V5BNsdVQ&+QS0+K+?H-gIBJ-ccB1=M_hxB6qcf`C zJ?!q!J4`kLhAMry4&a_0}up{CFevcjBl|N(uDM^N5#@&-nQt2>z*U}eJGi}m5f}l|IRVj-Q;a>wcLpK5RRWJ> zysdd$)Nv0tS?b~bw1=gvz3L_ZAIdDDPj)y|bp1;LE`!av!rODs-tlc}J#?erTgXRX z$@ph%*~_wr^bQYHM7<7=Q=45v|Hk7T=mDpW@OwRy3A_v`ou@JX5h!VI*e((v*5Aq3 zVYfB4<&^Dq5%^?~)NcojqK`(VXP$`#w+&VhQOn%;4pCkz;NEH6-FPHTQ+7I&JE1+Ozq-g43AEZV>ceQ^9PCx zZG@OlEF~!Lq@5dttlr%+gNjRyMwJdJU(6W_KpuVnd{3Yle(-p#6erIRc${l&qx$HA z89&sp=rT7MJ=DuTL1<5{)wtUfpPA|Gr6Q2T*=%2RFm@jyo@`@^*{5{lFPgv>84|pv z%y{|cVNz&`9C*cUely>-PRL)lHVErAKPO!NQ3<&l5(>Vp(MuJnrOf^4qpIa!o3D7( z1bjn#Vv$#or|s7Hct5D@%;@48mM%ISY7>7@ft8f?q~{s)@BqGiupoK1BAg?PyaDQ1 z`YT8{0Vz{zBwJ={I4)#ny{RP{K1dqzAaQN_aaFC%Z>OZ|^VhhautjDavGtsQwx@WH zr|1UKk^+X~S*RjCY_HN!=Jx>b6J8`Q(l4y|mc<6jnkHVng^Wk(A13-;AhawATsmmE#H%|8h}f1frs2x@Fwa_|ea+$tdG2Pz{7 z!ox^w^>^Cv4e{Xo7EQ7bxCe8U+LZG<_e$RnR?p3t?s^1Mb!ieB z#@45r*PTc_yjh#P=O8Zogo+>1#|a2nJvhOjIqKK1U&6P)O%5s~M;99O<|Y9zomWTL z666lK^QW`)cXV_^Y05yQZH3IRCW%25BHAM$c0>w`x!jh^15Zp6xYb!LoQ zr+RukTw0X2mxN%K0%=8|JHiaA3pg5+GMfze%9o5^#upx0M?G9$+P^DTx7~qq9$Qoi zV$o)yy zuUq>3c{_q+HA5OhdN*@*RkxRuD>Bi{Ttv_hyaaB;XhB%mJ2Cb{yL;{Zu@l{N?!GKE7es6_9J{9 zO(tmc0ra2;@oC%SS-8|D=omQ$-Dj>S)Utkthh{ovD3I%k}HoranSepC_yco2Q8 zY{tAuPIhD{X`KbhQIr%!t+GeH%L%q&p z3P%<-S0YY2Emjc~Gb?!su85}h_qdu5XN2XJUM}X1k^!GbwuUPT(b$Ez#LkG6KEWQB z7R&IF4srHe$g2R-SB;inW9T{@+W+~wi7VQd?}7||zi!&V^~o0kM^aby7YE_-B63^d zf_uo8#&C77HBautt_YH%v6!Q>H?}(0@4pv>cM6_7dHJ)5JdyV0Phi!)vz}dv{*n;t zf(+#Hdr=f8DbJqbMez)(n>@QT+amJ7g&w6vZ-vG^H1v~aZqG~u!1D(O+jVAG0EQ*aIsr*bsBdbD`)i^FNJ z&B@yxqPFCRGT#}@dmu-{0vp47xk(`xNM6E=7QZ5{tg6}#zFrd8Pb_bFg7XP{FsYP8 zbvWqG6#jfg*4gvY9!gJxJ3l2UjP}+#QMB(*(?Y&Q4PO`EknE&Cb~Yb@lCbk;-KY)n zzbjS~W5KZ3FV%y>S#$9Sqi$FIBCw`GfPDP|G=|y32VV-g@a1D&@%_oAbB@cAUx#aZ zlAPTJ{iz#Qda8(aNZE&0q+8r3&z_Ln)b=5a%U|OEcc3h1f&8?{b8ErEbilrun}mh3 z$1o^$-XzIiH|iGoJA`w`o|?w3m*NX|sd$`Mt+f*!hyJvQ2fS*&!SYn^On-M|pHGlu z4SC5bM7f6BAkUhGuN*w`97LLkbCx=p@K5RL2p>YpDtf{WTD|d3ucb6iVZ-*DRtoEA zCC5(x)&e=giR_id>5bE^l%Mxx>0@FskpCD4oq@%-Fg$8IcdRwkfn;DsjoX(v;mt3d z_4Mnf#Ft4x!bY!7Hz?RRMq9;5FzugD(sbt4up~6j?-or+ch~y_PqrM2hhTToJjR_~ z)E1idgt7EW>G*9%Q^K;o_#uFjX!V2pwfpgi>}J&p_^QlZki!@#dkvR`p?bckC`J*g z=%3PkFT3HAX2Q+dShHUbb1?ZcK8U7oaufLTCB#1W{=~k0Jabgv>q|H+GU=f-y|{p4 zwN|AE+YbCgx=7vlXE?@gkXW9PaqbO#GB=4$o0FkNT#EI?aLVd2(qnPK$Yh%YD%v(mdwn}bgsxyIBI^)tY?&G zi^2JfClZ@4b{xFjyTY?D61w@*ez2@5rWLpG#34id?>>oPg{`4F-l`7Lg@D@Hc}On} zx%BO4MsLYosLGACJ-d?ifZ35r^t*}wde>AAWO*J-X%jvD+gL9`u`r=kP zyeJ%FqqKfz8e_3K(M1RmB?gIYi{W7Z<THP2ihue0mbpu5n(x_l|e1tw(q!#m5lmef6ktqIb${ zV+ee#XRU}_dDDUiV@opHZ@EbQ<9qIZJMDsZDkW0^t3#j`S)G#>N^ZBs8k+FJhAfu< z%u!$%dyP3*_+jUvCf-%{x#MyDAK?#iPfE<(@Q0H7;a125eD%I(+!x1f;Sy`e<9>nm zQH4czZDQmW7^n>jL)@P@aAuAF$;I7JZE5a8~AJI5CNDqyf$gjloKR7C?OPt9yeH}n5 zNF8Vhmd%1O>T4EZD&0%Dt7YWNImmEV{7QF(dy!>q5k>Kh&Xy8hcBMUvVV~Xn8O&%{ z&q=JCYw#KlwM8%cu-rNadu(P~i3bM<_a{3!J*;vZhR6dln6#eW0^0kN)Vv3!bqM`w z{@j*eyzz=743dgFPY`Cx3|>ata;;_hQ3RJd+kU}~p~aphRx`03B>g4*~f%hUV+#D9rYRbsGD?jkB^$3XcgB|3N1L& zrmk9&Dg450mAd=Q_p?gIy5Zx7vRL?*rpNq76_rysFo)z)tp0B;7lSb9G5wX1vC9Lc z5Q8tb-alolVNWFsxO_=12o}X(>@Mwz1mkYh1##(qQwN=7VKz?61kay8A9(94Ky(4V zq6qd2+4a20Z0QRrmp6C?4;%U?@MatfXnkj&U6bP_&2Ny}BF%4{QhNx*Tabik9Y-~Z z@0WV6XD}aI(%pN}oW$X~Qo_R#+1$@J8(31?zM`#e`#(0f<-AZ^={^NgH#lc?oi(Mu zMk|#KR^Q;V@?&(sh5)D;-fu)rx%gXZ1&5)MR+Mhssy+W>V%S|PRNyTAd}74<(#J>H zR(1BfM%eIv0+ngHH6(i`?-%_4!6PpK*0X)79SX0X$`lv_q>9(E2kkkP;?c@rW2E^Q zs<;`9dg|lDMNECFrD3jTM^Mn-C$44}9d9Kc z#>*k&e#25;D^%82^1d@Yt{Y91MbEu0C}-;HR4+IaCeZ`l?)Q8M2~&E^FvJ?EBJJ(% zz1>tCW-E~FB}DI}z#+fUo+=kQME^=eH>^%V8w)dh*ugPFdhMUi3R2Cg}Zak4!k_8YW(JcR-)hY8C zXja}R7@%Q0&IzQTk@M|)2ViZDNCDRLNI)*lH%SDa^2TG4;%jE4n`8`aQAA$0SPH2@ z)2eWZuP26+uGq+m8F0fZn)X^|bNe z#f{qYZS!(CdBdM$N2(JH_a^b#R2=>yVf%JI_ieRFB{w&|o9txwMrVxv+n78*aXFGb z>Rkj2yq-ED<)A46T9CL^$iPynv`FoEhUM10@J+UZ@+*@_gyboQ>HY9CiwTUo7OM=w zd~$N)1@6U8H#Zu(wGLa_(Esx%h@*pmm5Y9OX@CY`3kPYPQx@z8yAgtm(+agDU%4?c zy8pR4SYbu8vY?JX6HgVq7|f=?w(%`m-C+a@E{euXo>XrGmkmFGzktI*rj*8D z)O|CHKXEzH{~iS+6)%ybRD|JRQ6j<+u_+=SgnJP%K+4$st+~XCVcAjI9e5`RYq$n{ zzy!X9Nv7>T4}}BZpSj9G9|(4ei-}Du<_IZw+CB`?fd$w^;=j8?vlp(#JOWiHaXJjB0Q00RHJ@sG6N#y^H7t^&V} z;VrDI4?75G$q5W9mV=J2iP24NHJy&d|HWHva>FaS#3AO?+ohh1__FMx;?`f{HG3v0 ztiO^Wanb>U4m9eLhoc_2B(ca@YdnHMB*~aYO+AE(&qh@?WukLbf_y z>*3?Xt-lxr?#}y%kTv+l8;!q?Hq8XSU+1E8x~o@9$)zO2z9K#(t`vPDri`mKhv|sh z{KREcy`#pnV>cTT7dm7M9B@9qJRt3lfo(C`CNkIq@>|2<(yn!AmVN?ST zbX_`JjtWa3&N*U{K7FYX8})*D#2@KBae` zhKS~s!r%SrXdhCsv~sF}7?ocyS?afya6%rDBu6g^b2j#TOGp^1zrMR}|70Z>CeYq- z1o|-=FBKlu{@;pm@QQJ_^!&hzi;0Z_Ho){x3O1KQ#TYk=rAt9`YKC0Y^}8GWIN{QW znYJyVTrmNvl!L=YS1G8BAxGmMUPi+Q7yb0XfG`l+L1NQVSbe^BICYrD;^(rke{jWCEZOtVv3xFze!=Z&(7}!)EcN;v0Dbit?RJ6bOr;N$ z=nk8}H<kCEE+IK3z<+3mkn4q!O7TMWpKShWWWM)X*)m6k%3luF6c>zOsFccvfLWf zH+mNkh!H@vR#~oe=ek}W3!71z$Dlj0c(%S|sJr>rvw!x;oCek+8f8s!U{DmfHcNpO z9>(IKOMfJwv?ey`V2ysSx2Npeh_x#bMh)Ngdj$al;5~R7Ac5R2?*f{hI|?{*$0qU- zY$6}ME%OGh^zA^z9zJUs-?a4ni8cw_{cYED*8x{bWg!Fn9)n;E9@B+t;#k}-2_j@# zg#b%R(5_SJAOtfgFCBZc`n<&z6)%nOIu@*yo!a% zpLg#36KBN$01W{b;qWN`Tp(T#jh%;Zp_zpS64lvBVY2B#UK)p`B4Oo)IO3Z&D6<3S zfF?ZdeNEnzE{}#gyuv)>;z6V{!#bx)` zY;hL*f(WVD*D9A4$WbRKF2vf;MoZVdhfWbWhr{+Db5@M^A4wrFReuWWimA4qp`GgoL2`W4WPUL5A=y3Y3P z%G?8lLUhqo@wJW8VDT`j&%YY7xh51NpVYlsrk_i4J|pLO(}(b8_>%U2M`$iVRDc-n zQiOdJbroQ%*vhN{!{pL~N|cfGooK_jTJCA3g_qs4c#6a&_{&$OoSQr_+-O^mKP=Fu zGObEx`7Qyu{nHTGNj(XSX*NPtAILL(0%8Jh)dQh+rtra({;{W2=f4W?Qr3qHi*G6B zOEj7%nw^sPy^@05$lOCjAI)?%B%&#cZ~nC|=g1r!9W@C8T0iUc%T*ne z)&u$n>Ue3FN|hv+VtA+WW)odO-sdtDcHfJ7s&|YCPfWaVHpTGN46V7Lx@feE#Od%0XwiZy40plD%{xl+K04*se zw@X4&*si2Z_0+FU&1AstR)7!Th(fdaOlsWh`d!y=+3m!QC$Zlkg8gnz!}_B7`+wSz z&kD?6{zPnE3uo~Tv8mLP%RaNt2hcCJBq=0T>%MW~Q@Tpt2pPP1?KcywH>in5@ zx+5;xu-ltFfo5vLU;2>r$-KCHjwGR&1XZ0YNyrXXAUK!FLM_7mV&^;;X^*YH(FLRr z`0Jjg7wiq2bisa`CG%o9i)o1`uG?oFjU_Zrv1S^ipz$G-lc^X@~6*)#%nn+RbgksJfl{w=k31(q>7a!PCMp5YY{+Neh~mo zG-3dd!0cy`F!nWR?=9f_KP$X?Lz&cLGm_ohy-|u!VhS1HG~e7~xKpYOh=GmiiU;nu zrZ5tWfan3kp-q_vO)}vY6a$19Q6UL0r znJ+iSHN-&w@vDEZ0V%~?(XBr|jz&vrBNLOngULxtH(Rp&U*rMY42n;05F11xh?k;n_DX2$4|vWIkXnbwfC z=ReH=(O~a;VEgVO?>qsP*#eOC9Y<_9Yt<6X}X{PyF7UXIA$f)>NR5P&4G_Ygq(9TwwQH*P>Rq>3T4I+t2X(b5ogXBAfNf!xiF#Gilm zp2h{&D4k!SkKz-SBa%F-ZoVN$7GX2o=(>vkE^j)BDSGXw?^%RS9F)d_4}PN+6MlI8*Uk7a28CZ)Gp*EK)`n5i z){aq=0SFSO-;sw$nAvJU-$S-cW?RSc7kjEBvWDr1zxb1J7i;!i+3PQwb=)www?7TZ zE~~u)vO>#55eLZW;)F(f0KFf8@$p)~llV{nO7K_Nq-+S^h%QV_CnXLi)p*Pq&`s!d zK2msiR;Hk_rO8`kqe_jfTmmv|$MMo0ll}mI)PO4!ikVd(ZThhi&4ZwK?tD-}noj}v zBJ?jH-%VS|=t)HuTk?J1XaDUjd_5p1kPZi6y#F6$lLeRQbj4hsr=hX z4tXkX2d5DeLMcAYTeYm|u(XvG5JpW}hcOs4#s8g#ihK%@hVz|kL=nfiBqJ{*E*WhC zht3mi$P3a(O5JiDq$Syu9p^HY&9~<#H89D8 zJm84@%TaL_BZ+qy8+T3_pG7Q%z80hnjN;j>S=&WZWF48PDD%55lVuC0%#r5(+S;WH zS7!HEzmn~)Ih`gE`faPRjPe^t%g=F ztpGVW=Cj5ZkpghCf~`ar0+j@A=?3(j@7*pq?|9)n*B4EQTA1xj<+|(Y72?m7F%&&& zdO44owDBPT(8~RO=dT-K4#Ja@^4_0v$O3kn73p6$s?mCmVDUZ+Xl@QcpR6R3B$=am z%>`r9r2Z79Q#RNK?>~lwk^nQlR=Hr-ji$Ss3ltbmB)x@0{VzHL-rxVO(++@Yr@Iu2 zTEX)_9sVM>cX$|xuqz~Y8F-(n;KLAfi*63M7mh&gsPR>N0pd9h!0bm%nA?Lr zS#iEmG|wQd^BSDMk0k?G>S-uE$vtKEF8Dq}%vLD07zK4RLoS?%F1^oZZI$0W->7Z# z?v&|a`u#UD=_>i~`kzBGaPj!mYX5g?3RC4$5EV*j0sV)>H#+$G6!ci=6`)85LWR=FCp-NUff`;2zG9nU6F~ z;3ZyE*>*LvUgae+uMf}aV}V*?DCM>{o31+Sx~6+sz;TI(VmIpDrN3z+BUj`oGGgLP z>h9~MP}Pw#YwzfGP8wSkz`V#}--6}7S9yZvb{;SX?6PM_KuYpbi~*=teZr-ga2QqIz{QrEyZ@>eN*qmy;N@FCBbRNEeeoTmQyrX;+ zCkaJ&vOIbc^2BD6_H+Mrcl?Nt7O{xz9R_L0ZPV_u!sz+TKbXmhK)0QWoe-_HwtKJ@@7=L+ z+K8hhf=4vbdg3GqGN<;v-SMIzvX=Z`WUa_91Yf89^#`G(f-Eq>odB^p-Eqx}ENk#&MxJ+%~Ad2-*`1LNT>2INPw?*V3&kE;tt?rQyBw? zI+xJD04GTz1$7~KMnfpkPRW>f%n|0YCML@ODe`10;^DXX-|Hb*IE%_Vi#Pn9@#ufA z_8NY*1U%VseqYrSm?%>F@`laz+f?+2cIE4Jg6 z_VTcx|DSEA`g!R%RS$2dSRM|9VQClsW-G<~=j5T`pTbu-x6O`R z98b;}`rPM(2={YiytrqX+uh65f?%XiPp`;4CcMT*E*dQJ+if9^D>c_Dk8A(cE<#r=&!& z_`Z01=&MEE+2@yr!|#El=yM}v>i=?w^2E_FLPy(*4A9XmCNy>cBWdx3U>1RylsItO z4V8T$z3W-qqq*H`@}lYpfh=>C!tieKhoMGUi)EpWDr;yIL&fy};Y&l|)f^QE*k~4C zH>y`Iu%#S)z)YUqWO%el*Z)ME#p{1_8-^~6UF;kBTW zMQ!eXQuzkR#}j{qb(y9^Y!X7&T}}-4$%4w@w=;w+>Z%uifR9OoQ>P?0d9xpcwa>7kTv2U zT-F?3`Q`7xOR!gS@j>7In>_h){j#@@(ynYh;nB~}+N6qO(JO1xA z@59Pxc#&I~I64slNR?#hB-4XE>EFU@lUB*D)tu%uEa))B#eJ@ZOX0hIulfnDQz-y8 z`CX@(O%_VC{Ogh&ot``jlDL%R!f>-8yq~oLGxBO?+tQb5%k@a9zTs!+=NOwSVH-cR zqFo^jHeXDA_!rx$NzdP;>{-j5w3QUrR<;}=u2|FBJ;D#v{SK@Z6mjeV7_kFmWt95$ zeGaF{IU?U>?W`jzrG_9=9}yN*LKyzz))PLE+)_jc#4Rd$yFGol;NIk(qO1$5VXR)+ zxF7%f4=Q!NzR>DVXUB&nUT&>Nyf+5QRF+Z`X-bB*7=`|Go5D1&h~ zflKLw??kpiRm0h3|1GvySC2^#kcFz^5{79KKlq@`(leBa=_4CgV9sSHr{RIJ^KwR_ zY??M}-x^=MD+9`v@I3jue=OCn0kxno#6i>b(XKk_XTp_LpI}X*UA<#* zsgvq@yKTe_dTh>q1aeae@8yur08S(Q^8kXkP_ty48V$pX#y9)FQa~E7P7}GP_CbCm zc2dQxTeW(-~Y6}im24*XOC8ySfH*HMEnW3 z4CXp8iK(Nk<^D$g0kUW`8PXn2kdcDk-H@P0?G8?|YVlIFb?a>QunCx%B9TzsqQQ~HD!UO7zq^V!v9jho_FUob&Hxi ztU1nNOK)a!gkb-K4V^QVX05*>-^i|{b`hhvQLyj`E1vAnj0fbqqO%r z6Q;X1x0dL~GqMv%8QindZ4CZ%7pYQW~ z9)I*#Gjref-q(4Z*E#1c&rE0-_(4;_M(V7rgH_7H;ps1s%GBmU z{4a|X##j#XUF2n({v?ZUUAP5k>+)^F)7n-npbV3jAlY8V3*W=fwroDS$c&r$>8aH` zH+irV{RG3^F3oW2&E%5hXgMH9>$WlqX76Cm+iFmFC-DToTa`AcuN9S!SB+BT-IA#3P)JW1m~Cuwjs`Ep(wDXE4oYmt*aU z!Naz^lM}B)JFp7ejro7MU9#cI>wUoi{lylR2~s)3M!6a=_W~ITXCPd@U9W)qA5(mdOf zd3PntGPJyRX<9cgX?(9~TZB5FdEHW~gkJXY51}?s4ZT_VEdwOwD{T2E-B>oC8|_ZwsPNj=-q(-kwy%xX2K0~H z{*+W`-)V`7@c#Iuaef=?RR2O&x>W0A^xSwh5MsjTz(DVG-EoD@asu<>72A_h<39_# zawWVU<9t{r*e^u-5Q#SUI6dV#p$NYEGyiowT>>d*or=Ps!H$-3={bB|An$GPkP5F1 zTnu=ktmF|6E*>ZQvk^~DX(k!N`tiLut*?3FZhs$NUEa4ccDw66-~P;x+0b|<!ZN7Z%A`>2tN#CdoG>((QR~IV_Gj^Yh%!HdA~4C3jOXaqb6Ou z21T~Wmi9F6(_K0@KR@JDTh3-4mv2=T7&ML<+$4;b9SAtv*Uu`0>;VVZHB{4?aIl3J zL(rMfk?1V@l)fy{J5DhVlj&cWKJCcrpOAad(7mC6#%|Sn$VwMjtx6RDx1zbQ|Ngg8N&B56DGhu;dYg$Z{=YmCNn+?ceDclp65c_RnKs4*vefnhudSlrCy6-96vSB4_sFAj# zftzECwmNEOtED^NUt{ZDjT7^g>k1w<=af>+0)%NA;IPq6qx&ya7+QAu=pk8t>KTm` zEBj9J*2t|-(h)xc>Us*jHs)w9qmA>8@u21UqzKk*Ei#0kCeW6o z-2Q+Tvt25IUkb}-_LgD1_FUJ!U8@8OC^9(~Kd*0#zr*8IQkD)6Keb(XFai5*DYf~` z@U?-{)9X&BTf!^&@^rjmvea#9OE~m(D>qfM?CFT9Q4RxqhO0sA7S)=--^*Q=kNh7Y zq%2mu_d_#23d`+v`Ol263CZ<;D%D8Njj6L4T`S*^{!lPL@pXSm>2;~Da- zBX97TS{}exvSva@J5FJVCM$j4WDQuME`vTw>PWS0!;J7R+Kq zVUy6%#n5f7EV(}J#FhDpts;>=d6ow!yhJj8j>MJ@Wr_?x30buuutIG97L1A*QFT$c ziC5rBS;#qj=~yP-yWm-p(?llTwDuhS^f&<(9vA9@UhMH2-Fe_YAG$NvK6X{!mvPK~ zuEA&PA}meylmaIbbJXDOzuIn8cJNCV{tUA<$Vb?57JyAM`*GpEfMmFq>)6$E(9e1@W`l|R%-&}38#bl~levA#fx2wiBk^)mPj?<=S&|gv zQO)4*91$n08@W%2b|QxEiO0KxABAZC{^4BX^6r>Jm?{!`ZId9jjz<%pl(G5l));*`UU3KfnuXSDj2aP>{ zRIB$9pm7lj3*Xg)c1eG!cb+XGt&#?7yJ@C)(Ik)^OZ5><4u$VLCqZ#q2NMCt5 z6$|VN(RWM;5!JV?-h<JkEZ(SZF zC(6J+>A6Am9H7OlOFq6S62-2&z^Np=#xXsOq0WUKr zY_+Ob|CQd1*!Hirj5rn*=_bM5_zKmq6lG zn*&_=x%?ATxZ8ZTzd%biKY_qyNC#ZQ1vX+vc48N>aJXEjs{Y*3Op`Q7-oz8jyAh>d zNt_qvn`>q9aO~7xm{z`ree%lJ3YHCyC`q`-jUVCn*&NIml!uuMNm|~u3#AV?6kC+B z?qrT?xu2^mobSlzb&m(8jttB^je0mx;TT8}`_w(F11IKz83NLj@OmYDpCU^u?fD{) z&=$ptwVw#uohPb2_PrFX;X^I=MVXPDpqTuYhRa>f-=wy$y3)40-;#EUDYB1~V9t%$ z^^<7Zbs0{eB93Pcy)96%XsAi2^k`Gmnypd-&x4v9rAq<>a(pG|J#+Q>E$FvMLmy7T z5_06W=*ASUyPRfgCeiPIe{b47Hjqpb`9Xyl@$6*ntH@SV^bgH&Fk3L9L=6VQb)Uqa z33u#>ecDo&bK(h1WqSH)b_Th#Tvk&%$NXC@_pg5f-Ma#7q;&0QgtsFO~`V&{1b zbSP*X)jgLtd@9XdZ#2_BX4{X~pS8okF7c1xUhEV9>PZco>W-qz7YMD`+kCGULdK|^ zE7VwQ-at{%&fv`a+b&h`TjzxsyQX05UB~a0cuU-}{*%jR48J+yGWyl3Kdz5}U>;lE zgkba*yI5>xqIPz*Y!-P$#_mhHB!0Fpnv{$k-$xxjLAc`XdmHd1k$V@2QlblfJPrly z*~-4HVCq+?9vha>&I6aRGyq2VUon^L1a)g`-Xm*@bl2|hi2b|UmVYW|b+Gy?!aS-p z86a}Jep6Mf>>}n^*Oca@Xz}kxh)Y&pX$^CFAmi#$YVf57X^}uQD!IQSN&int=D> zJ>_|au3Be?hmPKK)1^JQ(O29eTf`>-x^jF2xYK6j_9d_qFkWHIan5=7EmDvZoQWz5 zZGb<{szHc9Nf@om)K_<=FuLR<&?5RKo3LONFQZ@?dyjemAe4$yDrnD zglU#XYo6|~L+YpF#?deK6S{8A*Ou;9G`cdC4S0U74EW18bc5~4>)<*}?Z!1Y)j;Ot zosEP!pc$O^wud(={WG%hY07IE^SwS-fGbvpP?;l8>H$;}urY2JF$u#$q}E*ZG%fR# z`p{xslcvG)kBS~B*^z6zVT@e}imYcz_8PRzM4GS52#ms5Jg9z~ME+uke`(Tq1w3_6 zxUa{HerS7!Wq&y(<9yyN@P^PrQT+6ij_qW3^Q)I53iIFCJE?MVyGLID!f?QHUi1tq z0)RNIMGO$2>S%3MlBc09l!6_(ECxXTU>$KjWdZX^3R~@3!SB zah5Za2$63;#y!Y}(wg1#shMePQTzfQfXyJ-Tf`R05KYcyvo8UW9-IWGWnzxR6Vj8_la;*-z5vWuwUe7@sKr#Tr51d z2PWn5h@|?QU3>k=s{pZ9+(}oye zc*95N_iLmtmu}H-t$smi49Y&ovX}@mKYt2*?C-i3Lh4*#q5YDg1Mh`j9ovRDf9&& zp_UMQh`|pC!|=}1uWoMK5RAjdTg3pXPCsYmRkWW}^m&)u-*c_st~gcss(`haA)xVw zAf=;s>$`Gq_`A}^MjY_BnCjktBNHY1*gzh(i0BFZ{Vg^F?Pbf`8_clvdZ)5(J4EWzAP}Ba5zX=S(2{gDugTQ3`%!q`h7kYSnwC`zEWeuFlODKiityMaM9u{Z%E@@y1jmZA#ⅅ8MglG&ER{i5lN315cO?EdHNLrg? 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 z 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 Pe7HEdAEg|=c=LY&YVNkY literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000000000000000000000000000000000000..13b35eba55c6dabc3aac36f33d859266c18fa0d0 GIT binary patch literal 5680 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 literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000000000000000000000000000000000000..0a3f5fa40fb3d1e0710331a48de5d256da3f275d GIT binary patch literal 520 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 literal 0 HcmV?d00001 diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1632cfddf3d9dade342351e627a0a75609fb46 GIT binary patch literal 2218 zcmV;b2vzrqP)Px#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91K%fHv1ONa40RR91KmY&$07g+lumAuE6iGxuRCodHTWf3-RTMruyW6Fu zQYeUM04eX6D5c0FCjKKPrco1(K`<0SL=crI{PC3-^hZU0kQie$gh-5!7z6SH6Q0J% zqot*`H1q{R5fHFYS}dje@;kG=v$L0(yY0?wY2%*c?A&{2?!D*x?m71{of2gv!$5|C z3>qG_BW}7K_yUcT3A5C6QD<+{aq?x;MAUyAiJn#Jv8_zZtQ{P zTRzbL3U9!qVuZzS$xKU10KiW~Bgdcv1-!uAhQxf3a7q+dU6lj?yoO4Lq4TUN4}h{N z*fIM=SS8|C2$(T>w$`t@3Tka!(r!7W`x z-isCVgQD^mG-MJ;XtJuK3V{Vy72GQ83KRWsHU?e*wrhKk=ApIYeDqLi;JI1e zuvv}5^Dc=k7F7?nm3nIw$NVmU-+R>> zyqOR$-2SDpJ}Pt;^RkJytDVXNTsu|mI1`~G7yw`EJR?VkGfNdqK9^^8P`JdtTV&tX4CNcV4 z&N06nZa??Fw1AgQOUSE2AmPE@WO(Fvo`%m`cDgiv(fAeRA%3AGXUbsGw{7Q`cY;1BI#ac3iN$$Hw z0LT0;xc%=q)me?Y*$xI@GRAw?+}>=9D+KTk??-HJ4=A>`V&vKFS75@MKdSF1JTq{S zc1!^8?YA|t+uKigaq!sT;Z!&0F2=k7F0PIU;F$leJLaw2UI6FL^w}OG&!;+b%ya1c z1n+6-inU<0VM-Y_s5iTElq)ThyF?StVcebpGI znw#+zLx2@ah{$_2jn+@}(zJZ{+}_N9BM;z)0yr|gF-4=Iyu@hI*Lk=-A8f#bAzc9f z`Kd6K--x@t04swJVC3JK1cHY-Hq+=|PN-VO;?^_C#;coU6TDP7Bt`;{JTG;!+jj(` zw5cLQ-(Cz-Tlb`A^w7|R56Ce;Wmr0)$KWOUZ6ai0PhzPeHwdl0H(etP zUV`va_i0s-4#DkNM8lUlqI7>YQLf)(lz9Q3Uw`)nc(z3{m5ZE77Ul$V%m)E}3&8L0 z-XaU|eB~Is08eORPk;=<>!1w)Kf}FOVS2l&9~A+@R#koFJ$Czd%Y(ENTV&A~U(IPI z;UY+gf+&6ioZ=roly<0Yst8ck>(M=S?B-ys3mLdM&)ex!hbt+ol|T6CTS+Sc0jv(& z7ijdvFwBq;0a{%3GGwkDKTeG`b+lyj0jjS1OMkYnepCdoosNY`*zmBIo*981BU%%U z@~$z0V`OVtIbEx5pa|Tct|Lg#ZQf5OYMUMRD>Wdxm5SAqV2}3!ceE-M2 z@O~lQ0OiKQp}o9I;?uxCgYVV?FH|?Riri*U$Zi_`V2eiA>l zdSm6;SEm6#T+SpcE8Ro_f2AwxzI z44hfe^WE3!h@W3RDyA_H440cpmYkv*)6m1XazTqw%=E5Xv7^@^^T7Q2wxr+Z2kVYr + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..b2d4395 --- /dev/null +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = unionapp + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = org.ast.unionapp + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2026 org.ast. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..de7f345 --- /dev/null +++ b/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,16 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.network.client + + com.apple.security.network.server + + com.apple.security.cs.allow-jit + + com.apple.security.cs.allow-unsigned-executable-memory + + + \ No newline at end of file diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..3cc05eb --- /dev/null +++ b/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/macos/RunnerTests/RunnerTests.swift b/macos/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..61f3bd1 --- /dev/null +++ b/macos/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Cocoa +import FlutterMacOS +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..bb0f53a --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,946 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: "direct dev" + description: + name: archive + sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.6.1" + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.7.0" + asn1lib: + dependency: transitive + description: + name: asn1lib + sha256: "9a8f69025044eb466b9b60ef3bc3ac99b4dc6c158ae9c56d25eeccf5bc56d024" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.6.5" + async: + dependency: transitive + description: + name: async + sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.13.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.2" + characters: + dependency: transitive + description: + name: characters + sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.4.1" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.1.2" + code_assets: + dependency: transitive + description: + name: code_assets + sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.0" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.19.1" + convert: + dependency: transitive + description: + name: convert + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.1.2" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "28bb3ae56f117b5aec029d702a90f57d285cd975c3c5c281eaca38dbc47c5937" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.3.5+2" + crypto: + dependency: "direct dev" + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.0.7" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: "41e005c33bd814be4d3096aff55b1908d419fde52ca656c8c47719ec745873cd" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.9" + dbus: + dependency: transitive + description: + name: dbus + sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.7.12" + dio: + dependency: "direct dev" + description: + name: dio + sha256: aff32c08f92787a557dd5c0145ac91536481831a01b4648136373cddb0e64f8c + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "5.9.2" + dio_web_adapter: + dependency: transitive + description: + name: dio_web_adapter + sha256: "2f9e64323a7c3c7ef69567d5c800424a11f8337b8b228bad02524c9fb3c1f340" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.2" + encrypt: + dependency: "direct dev" + description: + name: encrypt + sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "5.0.3" + equatable: + dependency: transitive + description: + name: equatable + sha256: "3e0141505477fd8ad55d6eb4e7776d3fe8430be8e497ccb1521370c3f21a3e2b" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.0.8" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.2.0" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.1.1" + fl_chart: + dependency: "direct dev" + description: + name: fl_chart + sha256: d0f0d49112f2f4b192481c16d05b6418bd7820e021e265a3c22db98acf7ed7fb + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.68.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "3105dc8492f6183fb076ccf1f351ac3d60564bff92e20bfc4af9cc1651f4e7e1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.0.0" + flutter_map: + dependency: "direct dev" + description: + name: flutter_map + sha256: "87cc8349b8fa5dccda5af50018c7374b6645334a0d680931c1fe11bce88fa5bb" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.2.1" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + geoclue: + dependency: transitive + description: + name: geoclue + sha256: c2a998c77474fc57aa00c6baa2928e58f4b267649057a1c76738656e9dbd2a7f + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.1.1" + geocoding: + dependency: "direct dev" + description: + name: geocoding + sha256: "606be036287842d779d7ec4e2f6c9435fc29bbbd3c6da6589710f981d8852895" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.0.0" + geocoding_android: + dependency: transitive + description: + name: geocoding_android + sha256: ba810da90d6633cbb82bbab630e5b4a3b7d23503263c00ae7f1ef0316dcae5b9 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.0.1" + geocoding_ios: + dependency: transitive + description: + name: geocoding_ios + sha256: "18ab1c8369e2b0dcb3a8ccc907319334f35ee8cf4cfef4d9c8e23b13c65cb825" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.1.0" + geocoding_platform_interface: + dependency: transitive + description: + name: geocoding_platform_interface + sha256: "8c2c8226e5c276594c2e18bfe88b19110ed770aeb7c1ab50ede570be8b92229b" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.2.0" + geolocator: + dependency: "direct dev" + description: + name: geolocator + sha256: "79939537046c9025be47ec645f35c8090ecadb6fe98eba146a0d25e8c1357516" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "14.0.2" + geolocator_android: + dependency: transitive + description: + name: geolocator_android + sha256: "179c3cb66dfa674fc9ccbf2be872a02658724d1c067634e2c427cf6df7df901a" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "5.0.2" + geolocator_apple: + dependency: transitive + description: + name: geolocator_apple + sha256: dbdd8789d5aaf14cf69f74d4925ad1336b4433a6efdf2fce91e8955dc921bf22 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.3.13" + geolocator_linux: + dependency: transitive + description: + name: geolocator_linux + sha256: d64112a205931926f4363bb6bd48f14cb38e7326833041d170615586cd143797 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.2.4" + geolocator_platform_interface: + dependency: transitive + description: + name: geolocator_platform_interface + sha256: "30cb64f0b9adcc0fb36f628b4ebf4f731a2961a0ebd849f4b56200205056fe67" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.2.6" + geolocator_web: + dependency: transitive + description: + name: geolocator_web + sha256: b1ae9bdfd90f861fde8fd4f209c37b953d65e92823cb73c7dee1fa021b06f172 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.1.3" + geolocator_windows: + dependency: transitive + description: + name: geolocator_windows + sha256: "175435404d20278ffd220de83c2ca293b73db95eafbdc8131fe8609be1421eb6" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.2.5" + glass_liquid_navbar: + dependency: "direct dev" + description: + name: glass_liquid_navbar + sha256: "782fa0d0c112ad6c1341b286cd59b802d86b6f4b5383aaafe3b0cd7180d266dd" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.2.0" + glob: + dependency: transitive + description: + name: glob + sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.3" + gsettings: + dependency: transitive + description: + name: gsettings + sha256: "1b0ce661f5436d2db1e51f3c4295a49849f03d304003a7ba177d01e3a858249c" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.2.8" + hooks: + dependency: transitive + description: + name: hooks + sha256: e79ed1e8e1929bc6ecb6ec85f0cb519c887aa5b423705ded0d0f2d9226def388 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.2" + http: + dependency: transitive + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.6.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.1.2" + intl: + dependency: transitive + description: + name: intl + sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.20.2" + jni: + dependency: transitive + description: + name: jni + sha256: c2230682d5bc2362c1c9e8d3c7f406d9cbba23ab3f2e203a025dd47e0fb2e68f + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.0" + jni_flutter: + dependency: transitive + description: + name: jni_flutter + sha256: "8b59e590786050b1cd866677dddaf76b1ade5e7bc751abe04b86e84d379d3ba6" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.1" + js: + dependency: transitive + description: + name: js + sha256: "53385261521cc4a0c4658fd0ad07a7d14591cf8fc33abbceae306ddb974888dc" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.7.2" + latlong2: + dependency: "direct dev" + description: + name: latlong2 + sha256: "98227922caf49e6056f91b6c56945ea1c7b166f28ffcd5fb8e72fc0b453cc8fe" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.9.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: "12f842a479589fea194fe5c5a3095abc7be0c1f2ddfa9a0e76aed1dbd26a87df" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.1.0" + lists: + dependency: transitive + description: + name: lists + sha256: "4ca5c19ae4350de036a7e996cdd1ee39c93ac0a2b840f4915459b7d0a7d4ab27" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.1" + logger: + dependency: transitive + description: + name: logger + sha256: "25aee487596a6257655a1e091ec2ae66bc30e7af663592cc3a27e6591e05035c" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.7.0" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.3.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.12.19" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.13.0" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.17.0" + mgrs_dart: + dependency: transitive + description: + name: mgrs_dart + sha256: fb89ae62f05fa0bb90f70c31fc870bcbcfd516c843fb554452ab3396f78586f7 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.0.0" + mime: + dependency: transitive + description: + name: mime + sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.6" + native_toolchain_c: + dependency: transitive + description: + name: native_toolchain_c + sha256: "6ba77bb18063eebe9de401f5e6437e95e1438af0a87a3a39084fbd37c90df572" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.17.6" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.0" + objective_c: + dependency: transitive + description: + name: objective_c + sha256: "100a1c87616ab6ed41ec263b083c0ef3261ee6cd1dc3b0f35f8ddfa4f996fe52" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "9.3.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.2.0" + package_info_plus: + dependency: transitive + description: + name: package_info_plus + sha256: "468c26b4254ab01979fa5e4a98cb343ea3631b9acee6f21028997419a80e1a20" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "9.0.1" + package_info_plus_platform_interface: + dependency: transitive + description: + name: package_info_plus_platform_interface + sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.2.1" + path: + dependency: transitive + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.9.1" + path_provider: + dependency: transitive + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "69cbd515a62b94d32a7944f086b2f82b4ac40a1d45bebfc00813a430ab2dabcd" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.3.1" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.6.0" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.3.0" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: "91bd59303e9f769f108f8df05e371341b15d59e995e6806aefab827b58336675" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "7.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.8" + pointycastle: + dependency: "direct dev" + description: + name: pointycastle + sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.9.1" + polylabel: + dependency: transitive + description: + name: polylabel + sha256: "41b9099afb2aa6c1730bdd8a0fab1400d287694ec7615dd8516935fa3144214b" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.0.1" + proj4dart: + dependency: transitive + description: + name: proj4dart + sha256: c8a659ac9b6864aa47c171e78d41bbe6f5e1d7bd790a5814249e6b68bc44324e + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.0" + provider: + dependency: "direct dev" + description: + name: provider + sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.1.5+1" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.2.0" + share_plus: + dependency: "direct dev" + description: + name: share_plus + sha256: "3ef39599b00059db0990ca2e30fca0a29d8b37aae924d60063f8e0184cf20900" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "7.2.2" + share_plus_platform_interface: + dependency: transitive + description: + name: share_plus_platform_interface + sha256: "251eb156a8b5fa9ce033747d73535bf53911071f8d3b6f4f0b578505ce0d4496" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.4.0" + shared_preferences: + dependency: "direct dev" + description: + name: shared_preferences + sha256: c3025c5534b01739267eb7d76959bbc25a6d10f6988e1c2a3036940133dd10bf + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.5.5" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: e8d4762b1e2e8578fc4d0fd548cebf24afd24f49719c08974df92834565e2c53 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.23" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "4e7eaffc2b17ba398759f1151415869a34771ba11ebbccd1b0145472a619a64f" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.5.6" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.1" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "649dc798a33931919ea356c4305c2d1f81619ea6e92244070b520187b5140ef9" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.2" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.1" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.10.2" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.12.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.1.4" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.4.1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.7.10" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.4.0" + unicode: + dependency: transitive + description: + name: unicode + sha256: "0f69e46593d65245774d4f17125c6084d2c20b4e473a983f6e21b7d7762218f1" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "0.3.1" + url_launcher: + dependency: "direct dev" + description: + name: url_launcher + sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8 + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.3.2" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: "3bb000251e55d4a209aa0e2e563309dc9bb2befea2295fd0cec1f51760aac572" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.3.29" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "580fe5dfb51671ae38191d316e027f6b76272b026370708c2d898799750a02b0" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.4.1" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: d5e14138b3bc193a0f63c10a53c94b91d399df0512b1f29b94a043db7482384a + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.2.2" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: "368adf46f71ad3c21b8f06614adb38346f193f3a59ba8fe9a2fd74133070ba18" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.2.5" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: d0412fcf4c6b31ecfdb7762359b7206ffba3bbffd396c6d9f9c4616ece476c1f + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.4.2" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: "712c70ab1b99744ff066053cbe3e80c73332b38d46e5e945c98689b2e66fc15f" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.1.5" + uuid: + dependency: transitive + description: + name: uuid + sha256: "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "4.5.3" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "15.0.2" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.1.1" + win32: + dependency: transitive + description: + name: win32 + sha256: d7cb55e04cd34096cd3a79b3330245f54cb96a370a1c27adb3c84b917de8b08e + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "5.15.0" + wkt_parser: + dependency: transitive + description: + name: wkt_parser + sha256: "8a555fc60de3116c00aad67891bcab20f81a958e4219cc106e3c037aa3937f13" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "2.0.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "1.1.0" + xml: + dependency: transitive + description: + name: xml + sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025" + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "6.6.1" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce + url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/" + source: hosted + version: "3.1.3" +sdks: + dart: ">=3.11.3 <4.0.0" + flutter: ">=3.38.4" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..d5a09fe --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,102 @@ +name: unionapp +description: "mai chu app" +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# In Windows, build-name is used as the major, minor, and patch parts +# of the product and file versions while build-number is used as the build suffix. +version: 1.0.0+1 + +environment: + sdk: ^3.11.3 + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.8 + +dev_dependencies: + flutter_test: + sdk: flutter + glass_liquid_navbar: ^0.2.0 + flutter_map: ^6.1.0 # 地图组件 + latlong2: ^0.9.0 # flutter_map 依赖的坐标库 + geolocator: ^14.0.2 + geocoding: ^4.0.0 + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^6.0.0 + provider: ^6.1.2 + dio: ^5.4.0 # 网络请求 + shared_preferences: ^2.5.1 # 本地持久化 + crypto: ^3.0.1 + pointycastle: ^3.7.3 # 这个是真正的标准 AES 库 + encrypt: ^5.0.3 + archive: ^3.6.1 + fl_chart: ^0.68.0 + url_launcher: ^6.2.2 + share_plus: ^7.2.2 +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/to/resolution-aware-images + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/to/asset-from-package + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/to/font-from-package diff --git a/temp.json b/temp.json new file mode 100644 index 0000000..c750b69 --- /dev/null +++ b/temp.json @@ -0,0 +1 @@ +[{"id":8,"players":2021,"title":"True Love Song","utTitle":null,"artist":"Kai/クラシック「G線上のアリア」","albums":["true love song","会员制餐厅","真的爱情歌","糖糖","小管弦乐","真爱歌","真爱","真情歌","true love song","会员制餐厅","真的爱情歌","糖糖","小管弦乐","真爱歌","真爱","真情歌"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":8,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":96,"tap":63,"hold":23,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":8,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":10000,"notes":{"total":122,"tap":85,"hold":27,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":8,"level_id":2,"level":"10","level_value":10.2,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":177,"tap":110,"hold":56,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":8,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":302,"tap":263,"hold":14,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":9,"players":1661,"title":"Color My World","utTitle":null,"artist":"GOSH/クラシック「悲愴」","albums":["color my world","cmw","悲怆","颜色我世界","302","color my world","cmw","悲怆","颜色我世界","302","颜色我的世界"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":94,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":9,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10000,"notes":{"total":95,"tap":73,"hold":1,"slide":19,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":9,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":10000,"notes":{"total":143,"tap":89,"hold":39,"slide":8,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":9,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":153,"tap":109,"hold":5,"slide":31,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":9,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":213,"tap":148,"hold":13,"slide":49,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":363,"players":27099,"title":"Oshama Scramble!","utTitle":{"100363":"[宴]Oshama Scramble!"},"artist":"t+pazolite","albums":["oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","dx牛奶猫","dx奶牛猫","oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","黑白哈基米","os!","牛奶猫dx"],"hasDx":true,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":190,"releaseDate":"20231012","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":15007,"dxRomVersion":20000,"sdRomVersion":15007,"utRomVersion":24003,"dx":{"0":{"id":10363,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":169,"tap":110,"hold":7,"slide":12,"touch":35,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10363,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":20000,"notes":{"total":408,"tap":317,"hold":29,"slide":10,"touch":35,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10363,"level_id":2,"level":"11","level_value":11.4,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":555,"tap":247,"hold":56,"slide":54,"touch":193,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10363,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":20000,"notes":{"total":1000,"tap":747,"hold":21,"slide":52,"touch":81,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":363,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15007,"notes":{"total":259,"tap":238,"hold":8,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":363,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":15007,"notes":{"total":486,"tap":438,"hold":23,"slide":9,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":363,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Techno Kitchen","romVersion":15007,"notes":{"total":594,"tap":299,"hold":79,"slide":116,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":363,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Jack","romVersion":15007,"notes":{"total":1111,"tap":944,"hold":0,"slide":68,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100363":{"id":100363,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":290,"tap":87,"hold":36,"slide":132,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":333,"long":false},{"id":606,"players":9554,"title":"The wheel to the right","utTitle":{"110606":"[右]The wheel to the right"},"artist":"Sampling Masters MEGA","albums":["the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","锯你小唧唧","锯所有人小唧唧","the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","老婆","你右边有人"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18019,"dxRomVersion":0,"sdRomVersion":18019,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":606,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18019,"notes":{"total":392,"tap":354,"hold":7,"slide":6,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":606,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":18019,"notes":{"total":562,"tap":443,"hold":75,"slide":31,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":606,"level_id":2,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":18019,"notes":{"total":872,"tap":547,"hold":125,"slide":156,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":606,"level_id":3,"level":"14","level_value":14.0,"note_designer":"チャン@DP皆伝","romVersion":18019,"notes":{"total":987,"tap":590,"hold":21,"slide":176,"touch":0,"break_":200},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110606":{"id":110606,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1008,"tap":603,"hold":20,"slide":185,"touch":0,"break_":200},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":69,"long":false},{"id":17,"players":6168,"title":"Future","utTitle":null,"artist":"★STAR GUiTAR [cover]","albums":["future","错位歌","未来","ftr","蓝的人","future","错位歌","未来","ftr","蓝的人","future","错位歌","未来","ftr","蓝的人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":130,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":17,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":188,"tap":183,"hold":0,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":17,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":10000,"notes":{"total":210,"tap":178,"hold":16,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":17,"level_id":2,"level":"9","level_value":9.5,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":304,"tap":284,"hold":12,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":17,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":286,"tap":226,"hold":18,"slide":33,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":17,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":496,"tap":238,"hold":4,"slide":128,"touch":0,"break_":126},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":18,"players":4502,"title":"Love You","utTitle":{"100018":"[協]Love You"},"artist":"Q;indivi [cover]","albums":["love you","爱你","我喜欢你","love you","爱你","我喜欢你","love you","爱你","我喜欢你"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"POPSアニメ","bpm":135,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":18,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":130,"tap":91,"hold":33,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":18,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":10000,"notes":{"total":198,"tap":150,"hold":23,"slide":21,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":18,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":184,"tap":104,"hold":61,"slide":16,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":18,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":198,"tap":91,"hold":51,"slide":51,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100018":{"id":100018,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":348,"tap":268,"hold":44,"slide":30,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":22,"players":5766,"title":"In Chaos","utTitle":{"100022":"[蔵]In Chaos"},"artist":"Hiro「Crackin’DJ」","albums":["in chaos","阴超市","in chaos","阴超市","in chaos","阴超市","\uD83D\uDC34","\uD83D\uDC34!","inchaos"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":22,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":142,"tap":135,"hold":2,"slide":4,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":22,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":221,"tap":200,"hold":10,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":22,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":326,"tap":320,"hold":1,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":22,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":380,"tap":328,"hold":28,"slide":17,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"チャン@DP皆伝","romVersion":10000,"notes":{"total":880,"tap":768,"hold":0,"slide":97,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100022":{"id":100022,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":943,"tap":824,"hold":0,"slide":110,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":23,"players":4550,"title":"Crush On You","utTitle":null,"artist":"福山光晴「Crackin’DJ」","albums":["crush on you","撞死你","我喜欢你","暗恋你","木有芭蕾","虫儿飞","小黑子","星摆2","coy","ikun","母牛芭蕾","创似拟","冲你身上","创死你","鸡你太美","厉不厉害你坤哥","蔡徐坤","性感良辛在线热舞","cou","crush on you","撞死你","我喜欢你","暗恋你","木有芭蕾","虫儿飞","小黑子","星摆2","coy","ikun","母牛芭蕾","创似拟","冲你身上","创死你","鸡你太美","厉不厉害你坤哥","蔡徐坤","性感良辛在线热舞","cou","crush on you","撞死你","我喜欢你","暗恋你","木有芭蕾","虫儿飞","小黑子","星摆2","coy","ikun","母牛芭蕾","创似拟","冲你身上","创死你","鸡你太美","厉不厉害你坤哥","蔡徐坤","性感良辛在线热舞","cou"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":125,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":23,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10000,"notes":{"total":126,"tap":114,"hold":8,"slide":3,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":23,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":168,"tap":139,"hold":26,"slide":2,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":23,"level_id":2,"level":"9","level_value":9.2,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":223,"tap":182,"hold":34,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":23,"level_id":3,"level":"11","level_value":11.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":277,"tap":201,"hold":31,"slide":39,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":23,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":10000,"notes":{"total":555,"tap":341,"hold":89,"slide":109,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":24,"players":4608,"title":"Sun Dance","utTitle":null,"artist":"Hiro「Crackin’DJ」","albums":["sun dance","阳舞","\uD83C\uDF1E\uD83D\uDC83","日舞","金正恩跳舞","孙舞","sd","日跳舞","太阳舞","sun dance","阳舞","\uD83C\uDF1E\uD83D\uDC83","日舞","金正恩跳舞","孙舞","sd","日跳舞","太阳舞","sun dance","阳舞","\uD83C\uDF1E\uD83D\uDC83","日舞","金正恩跳舞","孙舞","sd","日跳舞","太阳舞","将军舞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":102,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":24,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10000,"notes":{"total":106,"tap":100,"hold":3,"slide":1,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":24,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":190,"tap":175,"hold":10,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":24,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":225,"tap":201,"hold":16,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":24,"level_id":3,"level":"11","level_value":11.3,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":316,"tap":278,"hold":11,"slide":16,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":24,"level_id":4,"level":"14","level_value":14.0,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":535,"tap":381,"hold":72,"slide":29,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":25,"players":4086,"title":"Sweets×Sweets","utTitle":null,"artist":"Team-D","albums":["sweets×sweets","甜蜜蜜","甜²","阳光彩虹小白马","甜甜","sweets×sweets","甜蜜蜜","甜²","阳光彩虹小白马","甜甜","sweets×sweets","甜蜜蜜","甜²","阳光彩虹小白马","甜甜"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":25,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":151,"tap":135,"hold":7,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":25,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":10000,"notes":{"total":223,"tap":195,"hold":16,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":25,"level_id":2,"level":"9","level_value":9.3,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":238,"tap":181,"hold":35,"slide":20,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":25,"level_id":3,"level":"11","level_value":11.4,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":387,"tap":343,"hold":23,"slide":12,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":27,"players":1869,"title":"Love or Lies","utTitle":null,"artist":"capsule [cover]","albums":["love or lies","lol","爱或谎","love or lies","lol","爱或谎","love or lies","lol","爱或谎"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":128,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":27,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":105,"tap":91,"hold":6,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":27,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":10000,"notes":{"total":190,"tap":165,"hold":6,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":27,"level_id":2,"level":"9","level_value":9.5,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":263,"tap":207,"hold":43,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":27,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":353,"tap":279,"hold":38,"slide":21,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":30,"players":2339,"title":"ネコ日和。","utTitle":null,"artist":"Kai/能登有沙","albums":["ネコ日和。","猫咪日和","大臣日和","猫日和","猫天气","ネコ日和。","猫咪日和","大臣日和","猫日和","猫天气","ネコ日和。","猫咪日和","大臣日和","猫日和","猫天气"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":171,"releaseDate":"20250411","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":30,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":177,"tap":162,"hold":4,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":30,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":10000,"notes":{"total":241,"tap":210,"hold":23,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":30,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":281,"tap":259,"hold":4,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":30,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":346,"tap":283,"hold":36,"slide":11,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":31,"players":1775,"title":"虹と太陽","utTitle":null,"artist":"GOSH/manami","albums":["虹と太陽","虹与太阳","彩虹太阳","金正恩","☀","\\\uD83D\uDE2D/","太阳","虹太阳","虹と太陽","虹与太阳","彩虹太阳","金正恩","☀","\\\uD83D\uDE2D/","太阳","虹太阳","虹と太陽","虹与太阳","彩虹太阳","金正恩","☀","\\\uD83D\uDE2D/","太阳","虹太阳"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":146,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":31,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":135,"tap":118,"hold":8,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":31,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":10000,"notes":{"total":204,"tap":172,"hold":20,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":31,"level_id":2,"level":"11","level_value":11.2,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":280,"tap":255,"hold":9,"slide":14,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":31,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":344,"tap":293,"hold":23,"slide":12,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":35,"players":2488,"title":"炭★坑★節","utTitle":null,"artist":"Kai/光吉猛修","albums":["炭★坑★節","粪坑节","最新热歌慢摇","炭坑节","炭★坑★節","粪坑节","最新热歌慢摇","炭坑节","炭★坑★節","粪坑节","最新热歌慢摇","炭坑节"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":112,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":35,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":164,"tap":153,"hold":2,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":35,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":10000,"notes":{"total":222,"tap":203,"hold":1,"slide":12,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":35,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":370,"tap":341,"hold":14,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":35,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":356,"tap":315,"hold":13,"slide":22,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":38,"players":2563,"title":"NIGHT OF FIRE","utTitle":null,"artist":"NIKO [cover]","albums":["night of fire","nof","夜火","奶头发炎","niko","头文字d","开幕大火","世终舞厅","逮虾户","目害","night of fire","nof","夜火","奶头发炎","niko","头文字d","开幕大火","世终舞厅","逮虾户","目害","night of fire","nof","夜火","奶头发炎","niko","头文字d","开幕大火","世终舞厅","逮虾户","目害"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":155,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":38,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":149,"tap":118,"hold":26,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":38,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":10000,"notes":{"total":214,"tap":156,"hold":43,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":38,"level_id":2,"level":"10","level_value":10.0,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":249,"tap":189,"hold":46,"slide":11,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":38,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":356,"tap":298,"hold":35,"slide":10,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":631,"players":5323,"title":"KING is BACK!!","utTitle":{"110631":"[逆]KING is BACK!!"},"artist":"A-One","albums":["king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!","king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!","king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":176,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18505,"dxRomVersion":0,"sdRomVersion":18505,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":631,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18505,"notes":{"total":254,"tap":232,"hold":12,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":631,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":18505,"notes":{"total":386,"tap":298,"hold":50,"slide":26,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":631,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"某S氏","romVersion":18505,"notes":{"total":524,"tap":391,"hold":33,"slide":56,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":631,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Revo@LC","romVersion":18505,"notes":{"total":1055,"tap":786,"hold":22,"slide":136,"touch":0,"break_":111},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110631":{"id":110631,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1035,"tap":777,"hold":24,"slide":138,"touch":0,"break_":96},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":40,"players":1843,"title":"come again","utTitle":null,"artist":"m-flo [cover]","albums":["come again","cum again","舞立方踩在脚下","再冲一次","再来","再来一遍","come again","cum again","舞立方踩在脚下","再冲一次","再来","再来一遍","come again","cum again","舞立方踩在脚下","再冲一次","再来","再来一遍"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":130,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":40,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":105,"tap":95,"hold":6,"slide":3,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":40,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":10000,"notes":{"total":118,"tap":88,"hold":21,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":40,"level_id":2,"level":"10","level_value":10.2,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":210,"tap":139,"hold":55,"slide":14,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":40,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":264,"tap":199,"hold":45,"slide":17,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":42,"players":1990,"title":"jelly","utTitle":null,"artist":"capsule [cover]","albums":["jelly","果冻","jelly","果冻"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":128,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":42,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":108,"tap":97,"hold":4,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":42,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":10000,"notes":{"total":162,"tap":119,"hold":29,"slide":4,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":42,"level_id":2,"level":"9","level_value":9.3,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":256,"tap":189,"hold":50,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":42,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":346,"tap":305,"hold":17,"slide":21,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":44,"players":6851,"title":"ハッピーシンセサイザ","utTitle":null,"artist":"EasyPop","albums":["ハッピーシンセサイザ","ハッピーシンセサイザ","ハッピーシンセサイザ","快乐合成器","dx快乐合成器"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":127,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":25000,"sdRomVersion":10000,"utRomVersion":0,"dx":{"0":{"id":10044,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":119,"tap":103,"hold":2,"slide":2,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10044,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25000,"notes":{"total":173,"tap":150,"hold":4,"slide":4,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10044,"level_id":2,"level":"9","level_value":9.5,"note_designer":"みそかつ侍","romVersion":25000,"notes":{"total":250,"tap":176,"hold":24,"slide":26,"touch":12,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10044,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":25000,"notes":{"total":508,"tap":376,"hold":38,"slide":46,"touch":23,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":44,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":114,"tap":108,"hold":2,"slide":1,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":44,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":189,"tap":157,"hold":18,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":44,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":280,"tap":240,"hold":27,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":44,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":297,"tap":236,"hold":27,"slide":30,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":46,"players":2775,"title":"ルカルカ★ナイトフィーバー","utTitle":null,"artist":"samfree","albums":["ルカルカ★ナイトフィーバー","河蟹你全家","绿坝娘","夜里发烧","luka","和谐你全家","lukalukanightfever","rukaruka","露卡露卡","ルカルカ★ナイトフィーバー","河蟹你全家","绿坝娘","夜里发烧","luka","和谐你全家","lukalukanightfever","rukaruka","露卡露卡","ルカルカ★ナイトフィーバー","河蟹你全家","绿坝娘","夜里发烧","luka","和谐你全家","lukalukanightfever","rukaruka","露卡露卡"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":46,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":114,"tap":105,"hold":0,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":46,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":230,"tap":213,"hold":7,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":46,"level_id":2,"level":"9","level_value":9.3,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":260,"tap":199,"hold":50,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":46,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":381,"tap":319,"hold":34,"slide":14,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":47,"players":5572,"title":"源平大戦絵巻テーマソング","utTitle":null,"artist":"新小田夢童 & キラ★ロッソ","albums":["源平大戦絵巻テーマソング","东雪莲大战罕见","源平大战绘卷","op大战东雪莲","叩大战东雪莲","源平1","op大战汉奸","原批大战罕见","源平大战","源平","op","淳平大战德川","原批大战东雪莲","op大战罕见","源平大戦絵巻テーマソング","东雪莲大战罕见","源平大战绘卷","op大战东雪莲","叩大战东雪莲","源平1","op大战汉奸","原批大战罕见","源平大战","源平","op","淳平大战德川","原批大战东雪莲","op大战罕见","zzm大战","op大战朱子墨","源平大戦絵巻テーマソング","东雪莲大战罕见","源平大战绘卷","op大战东雪莲","叩大战东雪莲","源平1","op大战汉奸","原批大战罕见","源平大战","源平","op","淳平大战德川","原批大战东雪莲","op大战罕见"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":47,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":152,"tap":127,"hold":11,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":47,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":10000,"notes":{"total":231,"tap":178,"hold":29,"slide":5,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":47,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":376,"tap":312,"hold":12,"slide":20,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":47,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":428,"tap":325,"hold":32,"slide":50,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":47,"level_id":4,"level":"14+","level_value":14.6,"note_designer":"舞舞10年ズ(チャンとはっぴー)","romVersion":10000,"notes":{"total":722,"tap":512,"hold":16,"slide":144,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":53,"players":2125,"title":"美しく燃える森","utTitle":null,"artist":"東京スカパラダイスオーケストラ [cover]","albums":["美しく燃える森","美燃森","美しく燃える森","美燃森","美しく燃える森","美燃森"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":53,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":134,"tap":120,"hold":8,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":53,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":10000,"notes":{"total":199,"tap":177,"hold":15,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":53,"level_id":2,"level":"9","level_value":9.1,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":230,"tap":179,"hold":39,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":53,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"畳返し","romVersion":10000,"notes":{"total":375,"tap":349,"hold":21,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":647,"players":9434,"title":"エイリアンエイリアン","utTitle":{"110647":"[協]エイリアンエイリアン"},"artist":"ナユタン星人","albums":["エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien","エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien","エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":152,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":18511,"dxRomVersion":0,"sdRomVersion":18511,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":647,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18511,"notes":{"total":215,"tap":196,"hold":4,"slide":6,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":647,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18511,"notes":{"total":328,"tap":273,"hold":41,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":647,"level_id":2,"level":"10","level_value":10.0,"note_designer":"すきやき奉行","romVersion":18511,"notes":{"total":480,"tap":337,"hold":61,"slide":52,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":647,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":18511,"notes":{"total":756,"tap":563,"hold":38,"slide":110,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110647":{"id":110647,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":369,"long":false},{"id":56,"players":4865,"title":"ウッーウッーウマウマ(゚∀゚)","utTitle":null,"artist":"Caramell/Caramelldansen [cover]","albums":["ウッーウッーウマウマ(゚∀゚)","焦糖舞","跳舞歌","扭腰歌","扭秧歌","跳的很骚","扭腰舞","扭腰","(゚∀゚)​","呜哇呜哇","ウッーウッーウマウマ(゚∀゚)","焦糖舞","跳舞歌","扭腰歌","扭秧歌","跳的很骚","扭腰舞","扭腰","(゚∀゚)​","呜哇呜哇","ウッーウッーウマウマ(゚∀゚)","焦糖舞","跳舞歌","扭腰歌","扭秧歌","跳的很骚","扭腰舞","扭腰","(゚∀゚)​","呜哇呜哇"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":164,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":56,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":230,"tap":222,"hold":2,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":56,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":10000,"notes":{"total":334,"tap":314,"hold":6,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":56,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":426,"tap":413,"hold":0,"slide":5,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":56,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":542,"tap":514,"hold":1,"slide":11,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":58,"players":3012,"title":"Endless World","utTitle":null,"artist":"RYOHEI KOHNO/保立美和子","albums":["endless world","\uD83D\uDC84","口红","ew","无尽世界","endless world","\uD83D\uDC84","口红","ew","无尽世界","endless world","\uD83D\uDC84","口红","ew","无尽世界"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":142,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":58,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11007,"notes":{"total":110,"tap":83,"hold":16,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":58,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":11007,"notes":{"total":175,"tap":122,"hold":38,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":58,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":11007,"notes":{"total":341,"tap":219,"hold":89,"slide":30,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":58,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ニャイン","romVersion":11007,"notes":{"total":398,"tap":254,"hold":57,"slide":75,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":58,"level_id":4,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":11007,"notes":{"total":540,"tap":383,"hold":49,"slide":86,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":61,"players":4706,"title":"Beat Of Mind","utTitle":null,"artist":"Hiro「Crackin’DJ」","albums":["beat of mind","打脑阔","买了麦乐鸡","心跳","bom","彩虹糖","红鼻子男","beat of mind","打脑阔","买了麦乐鸡","心跳","bom","彩虹糖","红鼻子男","beat of mind","打脑阔","买了麦乐鸡","心跳","bom","彩虹糖","红鼻子男"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":61,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":197,"tap":181,"hold":9,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":61,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":10000,"notes":{"total":286,"tap":258,"hold":14,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":61,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":402,"tap":352,"hold":27,"slide":19,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":61,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":351,"tap":230,"hold":94,"slide":12,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":61,"level_id":4,"level":"14","level_value":14.2,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":777,"tap":595,"hold":42,"slide":129,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":62,"players":4840,"title":"檄!帝国華撃団(改)","utTitle":null,"artist":"「サクラ大戦」","albums":["檄!帝国華撃団(改)","樱花大战","帝国华击团","檄!","华击团","樱花大战2","帝国滑稽团","哈系列","滑稽团","檄!帝国華撃団(改)","樱花大战","帝国华击团","檄!","华击团","樱花大战2","帝国滑稽团","哈系列","滑稽团","檄!帝国華撃団(改)","樱花大战","帝国华击团","檄!","华击团","樱花大战2","帝国滑稽团","哈系列","滑稽团"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":144,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":62,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":125,"tap":105,"hold":14,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":62,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":10000,"notes":{"total":203,"tap":142,"hold":21,"slide":13,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":62,"level_id":2,"level":"9","level_value":9.4,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":205,"tap":125,"hold":25,"slide":43,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":62,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":235,"tap":146,"hold":36,"slide":45,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":62,"level_id":4,"level":"13","level_value":13.1,"note_designer":"ぴちネコ","romVersion":10000,"notes":{"total":473,"tap":329,"hold":31,"slide":69,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":63,"players":1979,"title":"メランコリック","utTitle":null,"artist":"Junky","albums":["メランコリック","忧郁的心情","melancholic","メランコリック","忧郁的心情","melancholic","メランコリック","忧郁的心情","melancholic"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":63,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":192,"tap":154,"hold":26,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":63,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":10000,"notes":{"total":197,"tap":175,"hold":9,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":63,"level_id":2,"level":"9","level_value":9.4,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":274,"tap":203,"hold":44,"slide":19,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":63,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":323,"tap":241,"hold":52,"slide":26,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":64,"players":1870,"title":"教えて!! 魔法のLyric","utTitle":null,"artist":"ちょむP ","albums":["教えて!! 魔法のlyric","教教","教魔法","教我魔法","教","教えて!! 魔法のlyric","教教","教魔法","教我魔法","教","教えて!! 魔法のlyric","教教","教魔法","教我魔法","教","教我魔法歌词"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":64,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":210,"tap":177,"hold":19,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":64,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":10000,"notes":{"total":253,"tap":209,"hold":33,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":64,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":326,"tap":251,"hold":60,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":64,"level_id":3,"level":"12","level_value":12.4,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":424,"tap":357,"hold":24,"slide":7,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":65,"players":2450,"title":"ZIGG-ZAGG","utTitle":null,"artist":"Junky","albums":["zigg-zagg","zigg","zigg zagg","zigg-zagg","zigg","zigg zagg","zigg-zagg","zigg","zigg zagg"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":138,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":65,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":222,"tap":192,"hold":20,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":65,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":10000,"notes":{"total":189,"tap":155,"hold":20,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":65,"level_id":2,"level":"9","level_value":9.3,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":291,"tap":235,"hold":31,"slide":18,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":65,"level_id":3,"level":"11","level_value":11.4,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":331,"tap":265,"hold":29,"slide":33,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":65,"level_id":4,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":358,"tap":208,"hold":28,"slide":116,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":66,"players":5914,"title":"ワールズエンド・ダンスホール","utTitle":null,"artist":"wowaka","albums":["ワールズエンド・ダンスホール","世终舞厅","舞厅","末世舞厅","双关门","世末舞厅","漠河舞厅","ワールズエンド・ダンスホール","世终舞厅","舞厅","末世舞厅","双关门","世末舞厅","漠河舞厅","ワールズエンド・ダンスホール","世终舞厅","舞厅","末世舞厅","双关门","世末舞厅","漠河舞厅"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":171,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":66,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":170,"tap":137,"hold":17,"slide":14,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":66,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":10000,"notes":{"total":258,"tap":212,"hold":32,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":66,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":328,"tap":280,"hold":27,"slide":17,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":66,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":464,"tap":416,"hold":0,"slide":20,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":66,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":636,"tap":461,"hold":62,"slide":100,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":781,"long":false},{"id":67,"players":1924,"title":"パンダヒーロー","utTitle":null,"artist":"ハチ","albums":["パンダヒーロー","熊猫英雄","会员制餐厅","panda hero","パンダヒーロー","熊猫英雄","会员制餐厅","panda hero","パンダヒーロー","熊猫英雄","会员制餐厅","panda hero"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":67,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":146,"tap":128,"hold":6,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":67,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":10000,"notes":{"total":205,"tap":142,"hold":49,"slide":5,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":67,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":278,"tap":209,"hold":52,"slide":13,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":67,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":379,"tap":258,"hold":91,"slide":17,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":68,"players":1782,"title":"オレンジの夏","utTitle":null,"artist":"Hiro/タクマロ","albums":["オレンジの夏","砂狼白子","菊次郎的夏天","夏","橙色夏天","橙之夏","女人骑自行车","橘之夏","\uD83C\uDF9E️","橙色的夏天","自行车","洋车的","オレンジの夏","砂狼白子","菊次郎的夏天","夏","橙色夏天","橙之夏","女人骑自行车","橘之夏","\uD83C\uDF9E️","橙色的夏天","自行车","洋车的","オレンジの夏","砂狼白子","菊次郎的夏天","夏","橙色夏天","橙之夏","女人骑自行车","橘之夏","\uD83C\uDF9E️","橙色的夏天","自行车","洋车的"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":68,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":179,"tap":157,"hold":15,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":68,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":211,"tap":154,"hold":49,"slide":7,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":68,"level_id":2,"level":"10","level_value":10.0,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":275,"tap":221,"hold":31,"slide":16,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":68,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":371,"tap":293,"hold":33,"slide":29,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":69,"players":2325,"title":"BaBan!! -甘い罠-","utTitle":null,"artist":"Hiro/永江理奈","albums":["baban!! -甘い罠-","甘民","baban","八班","甜蜜陷阱","baban!! -甘い罠-","甘民","baban","八班","甜蜜陷阱","baban!! -甘い罠-","甘民","baban","八班","甜蜜陷阱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":161,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":69,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":200,"tap":186,"hold":7,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":69,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":10000,"notes":{"total":288,"tap":234,"hold":45,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":69,"level_id":2,"level":"12","level_value":12.3,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":333,"tap":236,"hold":75,"slide":18,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":69,"level_id":3,"level":"12","level_value":12.5,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":457,"tap":381,"hold":48,"slide":20,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":70,"players":9808,"title":"ジングルベル","utTitle":null,"artist":"SEGA Sound Unit [H.]","albums":["ジングルベル","dx圣诞","dx圣诞歌","\uD83C\uDF84","圣诞","圣诞歌","ジングルベル","dx圣诞","dx圣诞歌","\uD83C\uDF84","圣诞","圣诞歌","ジングルベル","dx圣诞","dx圣诞歌","\uD83C\uDF84","圣诞","圣诞歌","dx鸡公煲"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":100,"releaseDate":"20221223","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":23005,"sdRomVersion":10000,"utRomVersion":0,"dx":{"0":{"id":10070,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":23005,"notes":{"total":175,"tap":144,"hold":12,"slide":3,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10070,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":23005,"notes":{"total":284,"tap":242,"hold":9,"slide":6,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10070,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":427,"tap":266,"hold":36,"slide":21,"touch":27,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10070,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"舞舞10年ズ ~ファイナル~","romVersion":23005,"notes":{"total":929,"tap":377,"hold":99,"slide":26,"touch":302,"break_":125},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":70,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":157,"tap":139,"hold":13,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":70,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":10000,"notes":{"total":185,"tap":149,"hold":26,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":70,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":332,"tap":282,"hold":18,"slide":18,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":70,"level_id":3,"level":"14","level_value":14.4,"note_designer":"チャン@DP皆伝","romVersion":10000,"notes":{"total":648,"tap":564,"hold":27,"slide":37,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":70,"level_id":4,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":10000,"notes":{"total":737,"tap":450,"hold":63,"slide":124,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":159,"long":false},{"id":71,"players":4640,"title":"マトリョシカ","utTitle":null,"artist":"ハチ","albums":["マトリョシカ","俄罗斯套娃","套娃","\uD83D\uDE0B\uD83E\uDD17","マトリョシカ","俄罗斯套娃","套娃","\uD83D\uDE0B\uD83E\uDD17","マトリョシカ","俄罗斯套娃","套娃","\uD83D\uDE0B\uD83E\uDD17"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":205,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":71,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":202,"tap":191,"hold":4,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":71,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":10000,"notes":{"total":229,"tap":196,"hold":10,"slide":11,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":71,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":356,"tap":297,"hold":35,"slide":11,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":71,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":454,"tap":422,"hold":7,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":71,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":571,"tap":395,"hold":26,"slide":127,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":575,"long":false},{"id":73,"players":1810,"title":"メグメグ☆ファイアーエンドレスナイト","utTitle":null,"artist":"samfree","albums":["メグメグ☆ファイアーエンドレスナイト","megu","火柴人大战","メグメグ☆ファイアーエンドレスナイト","megu","火柴人大战","メグメグ☆ファイアーエンドレスナイト","megu","火柴人大战"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":73,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10000,"notes":{"total":165,"tap":147,"hold":12,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":73,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":10000,"notes":{"total":258,"tap":230,"hold":12,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":73,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":288,"tap":227,"hold":34,"slide":18,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":73,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"maimai TEAM","romVersion":10000,"notes":{"total":381,"tap":338,"hold":21,"slide":15,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":75,"players":2707,"title":"天国と地獄","utTitle":null,"artist":"スーパーラバーズ「赤ちゃんはどこからくるの?」","albums":["天国と地獄","康康舞曲","天国与地狱","菠菜进行曲","天国地狱","绝赞128","为你而生","天国と地獄","康康舞曲","天国与地狱","菠菜进行曲","天国地狱","绝赞128","为你而生","天国と地獄","康康舞曲","天国与地狱","菠菜进行曲","天国地狱","绝赞128","为你而生"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":75,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10002,"notes":{"total":146,"tap":109,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":75,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":10002,"notes":{"total":287,"tap":242,"hold":16,"slide":18,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":75,"level_id":2,"level":"10","level_value":10.0,"note_designer":"譜面-100号","romVersion":10002,"notes":{"total":542,"tap":398,"hold":12,"slide":4,"touch":0,"break_":128},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":75,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ニャイン","romVersion":10002,"notes":{"total":607,"tap":530,"hold":12,"slide":50,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":76,"players":1731,"title":"きみのためなら死ねる","utTitle":null,"artist":"スーパーラバーズ「きみのためなら死ねる」","albums":["きみのためなら死ねる","死","为了你而死","为你而死","失败的man","きみのためなら死ねる","死","为了你而死","为你而死","失败的man","きみのためなら死ねる","死","为了你而死","为你而死","失败的man"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10001,"dxRomVersion":0,"sdRomVersion":10001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":76,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10001,"notes":{"total":152,"tap":132,"hold":8,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":76,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10001,"notes":{"total":220,"tap":175,"hold":31,"slide":5,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":76,"level_id":2,"level":"10","level_value":10.0,"note_designer":"譜面-100号","romVersion":10001,"notes":{"total":439,"tap":375,"hold":30,"slide":23,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":76,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":517,"tap":438,"hold":56,"slide":12,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":77,"players":1755,"title":"怪盗Rのテーマ","utTitle":null,"artist":"大谷智哉「リズム怪盗R 皇帝ナポレオンの遺産」","albums":["怪盗rのテーマ","节奏怪盗","怪盗","怪盗r的影之诗","怪盗r","怪盗rのテーマ","节奏怪盗","怪盗","怪盗r的影之诗","怪盗r","怪盗rのテーマ","节奏怪盗","怪盗","怪盗r的影之诗","怪盗r"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":147,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":10001,"dxRomVersion":0,"sdRomVersion":10001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":77,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10001,"notes":{"total":165,"tap":135,"hold":14,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":77,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":10001,"notes":{"total":208,"tap":140,"hold":53,"slide":6,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":77,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"譜面-100号","romVersion":10001,"notes":{"total":344,"tap":250,"hold":74,"slide":13,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":77,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":10001,"notes":{"total":474,"tap":366,"hold":59,"slide":37,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":78,"players":1829,"title":"マリアをはげませ","utTitle":null,"artist":"大谷智哉「リズム怪盗R 皇帝ナポレオンの遺産」","albums":["マリアをはげませ","玛利亚","マリアをはげませ","玛利亚","マリアをはげませ","玛利亚"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":131,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10001,"dxRomVersion":0,"sdRomVersion":10001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":78,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10001,"notes":{"total":134,"tap":109,"hold":14,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":78,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":10001,"notes":{"total":243,"tap":217,"hold":16,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":78,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":331,"tap":262,"hold":41,"slide":16,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":78,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":452,"tap":368,"hold":43,"slide":33,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":79,"players":1878,"title":"SHOW TIME","utTitle":null,"artist":"幡谷尚史「リズム怪盗R 皇帝ナポレオンの遺産」","albums":["show time","怪盗基德","马可波罗","修胎么","show time","怪盗基德","马可波罗","修胎么","show time","怪盗基德","马可波罗","修胎么"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":120,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10001,"dxRomVersion":0,"sdRomVersion":10001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":79,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10001,"notes":{"total":120,"tap":97,"hold":5,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":79,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":10001,"notes":{"total":171,"tap":137,"hold":11,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":79,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":216,"tap":170,"hold":34,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":79,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":291,"tap":213,"hold":38,"slide":27,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":80,"players":2592,"title":"City Escape: Act1","utTitle":null,"artist":"Cash Cash「ソニック ジェネレーションズ」","albums":["city escape: act1","act1","索1","刺猬头跑酷","city escape: act1","act1","索1","刺猬头跑酷","city escape: act1","act1","索1","刺猬头跑酷"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":130,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":80,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10002,"notes":{"total":155,"tap":133,"hold":9,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":80,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":10002,"notes":{"total":210,"tap":181,"hold":8,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":80,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"ニャイン","romVersion":10002,"notes":{"total":331,"tap":246,"hold":63,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":80,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":10002,"notes":{"total":512,"tap":438,"hold":10,"slide":35,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":80,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"rioN","romVersion":10002,"notes":{"total":589,"tap":428,"hold":8,"slide":129,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":81,"players":3377,"title":"Rooftop Run: Act1","utTitle":null,"artist":"大谷智哉「ソニック ジェネレーションズ」","albums":["rooftop run: act1","rooftop run","屋顶跑","索2","屋顶跑步","屋顶跑路:动作1","索尼克2","逃离屋顶","rooftop run: act1","rooftop run","屋顶跑","索2","屋顶跑步","屋顶跑路:动作1","索尼克2","逃离屋顶","rooftop run: act1","rooftop run","屋顶跑","索2","屋顶跑步","屋顶跑路:动作1","索尼克2","逃离屋顶"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":152,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":81,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10002,"notes":{"total":146,"tap":126,"hold":17,"slide":0,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":81,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":10002,"notes":{"total":263,"tap":225,"hold":30,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":81,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"譜面-100号","romVersion":10002,"notes":{"total":384,"tap":285,"hold":86,"slide":11,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":81,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":10002,"notes":{"total":457,"tap":348,"hold":81,"slide":21,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":81,"level_id":4,"level":"13","level_value":13.2,"note_designer":"Techno Kitchen","romVersion":10002,"notes":{"total":623,"tap":414,"hold":116,"slide":78,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":82,"players":3774,"title":"Reach For The Stars","utTitle":null,"artist":"大谷智哉, Jean Paul Makhlouf of Cash Cash「ソニック カラーズ」","albums":["reach for the stars","一拳超人","索尼克缤纷色彩","立直为了星","索3","摘星","追星1","追星","reach for the stars","一拳超人","索尼克缤纷色彩","立直为了星","索3","摘星","追星1","追星","reach for the stars","一拳超人","索尼克缤纷色彩","立直为了星","索3","摘星","追星1","追星"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":203,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":82,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10002,"notes":{"total":97,"tap":68,"hold":21,"slide":7,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":82,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":10002,"notes":{"total":241,"tap":203,"hold":20,"slide":5,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":82,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"譜面-100号","romVersion":10002,"notes":{"total":395,"tap":274,"hold":61,"slide":26,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":82,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"チャン@DP皆伝","romVersion":10002,"notes":{"total":549,"tap":456,"hold":29,"slide":50,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":6,"long":false},{"id":83,"players":2867,"title":"Urban Crusher [Remix]","utTitle":null,"artist":"「BORDER BREAK」","albums":["urban crusher [remix]","泰坦陨落","高达","urbancrusher","汽车人","波尔布特","城市毁灭者","uc","urban crusher [remix]","泰坦陨落","高达","urbancrusher","汽车人","波尔布特","城市毁灭者","uc","urban crusher [remix]","泰坦陨落","高达","urbancrusher","汽车人","波尔布特","城市毁灭者","uc"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":83,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10002,"notes":{"total":130,"tap":104,"hold":14,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":83,"level_id":1,"level":"9","level_value":9.1,"note_designer":"-","romVersion":10002,"notes":{"total":283,"tap":260,"hold":15,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":83,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":10002,"notes":{"total":446,"tap":390,"hold":33,"slide":10,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":83,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ニャイン","romVersion":10002,"notes":{"total":476,"tap":396,"hold":46,"slide":25,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":84,"players":1634,"title":"Catch The Future","utTitle":null,"artist":"「BORDER BREAK UNION」メインテーマ","albums":["catch the future","抓住未来","洋葱","catch the future","抓住未来","洋葱","catch the future","抓住未来","洋葱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":210,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10002,"dxRomVersion":0,"sdRomVersion":10002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":84,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10002,"notes":{"total":141,"tap":125,"hold":9,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":84,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":10002,"notes":{"total":243,"tap":216,"hold":20,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":84,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ニャイン","romVersion":10002,"notes":{"total":287,"tap":216,"hold":27,"slide":34,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":84,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"譜面-100号","romVersion":10002,"notes":{"total":391,"tap":295,"hold":28,"slide":66,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":85,"players":3960,"title":"JACKY [Remix]","utTitle":null,"artist":"「バーチャファイター」","albums":["jacky [remix]","jacky","vr战士","舞萌往事","jacky [remix]","jacky","vr战士","舞萌往事","jacky [remix]","jacky","vr战士","舞萌往事"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":135,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":10001,"dxRomVersion":0,"sdRomVersion":10001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":85,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10001,"notes":{"total":119,"tap":107,"hold":5,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":85,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":10001,"notes":{"total":170,"tap":137,"hold":12,"slide":12,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":85,"level_id":2,"level":"11","level_value":11.1,"note_designer":"譜面-100号","romVersion":10001,"notes":{"total":318,"tap":270,"hold":26,"slide":8,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":85,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ニャイン","romVersion":10001,"notes":{"total":386,"tap":298,"hold":3,"slide":73,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":85,"level_id":4,"level":"14","level_value":14.0,"note_designer":"すきやき奉行","romVersion":10001,"notes":{"total":546,"tap":424,"hold":17,"slide":59,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":100,"players":6798,"title":"Tell Your World","utTitle":null,"artist":"livetune","albums":["tell your world","告诉你的世界","tyw","tell your world","告诉你的世界","tyw","tell your world","告诉你的世界","tyw"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11003,"dxRomVersion":0,"sdRomVersion":11003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":100,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11003,"notes":{"total":138,"tap":113,"hold":13,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":100,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":11003,"notes":{"total":225,"tap":159,"hold":36,"slide":17,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":100,"level_id":2,"level":"10","level_value":10.5,"note_designer":"合作だよ","romVersion":11003,"notes":{"total":335,"tap":232,"hold":53,"slide":47,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":100,"level_id":3,"level":"12","level_value":12.4,"note_designer":"mai-Star","romVersion":11003,"notes":{"total":384,"tap":260,"hold":79,"slide":29,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":100,"level_id":4,"level":"13","level_value":13.2,"note_designer":"某S氏","romVersion":11003,"notes":{"total":473,"tap":365,"hold":35,"slide":69,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":101,"players":5150,"title":"おちゃめ機能","utTitle":null,"artist":"ゴジマジP","albums":["おちゃめ機能","机能","五月病","天真浪漫机能","天真烂漫机能","おちゃめ機能","机能","五月病","天真浪漫机能","天真烂漫机能","おちゃめ機能","机能","五月病","天真浪漫机能","天真烂漫机能"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":101,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11000,"notes":{"total":128,"tap":107,"hold":7,"slide":3,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":101,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":11000,"notes":{"total":276,"tap":236,"hold":20,"slide":10,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":101,"level_id":2,"level":"9","level_value":9.1,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":277,"tap":200,"hold":55,"slide":13,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":101,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"mai-Star","romVersion":11000,"notes":{"total":499,"tap":443,"hold":19,"slide":9,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":102,"players":2268,"title":"ダンシング☆サムライ","utTitle":null,"artist":"mathru(かにみそP)","albums":["ダンシング☆サムライ","跳舞武士","茄子武士","茄子先生","茄子山","茄子哥","富士山茄子","dancing samurai","辣椒","\uD83C\uDF46\uD83D\uDDFB","ダンシング☆サムライ","跳舞武士","茄子武士","茄子先生","茄子山","茄子哥","富士山茄子","dancing samurai","辣椒","\uD83C\uDF46\uD83D\uDDFB","ダンシング☆サムライ","跳舞武士","茄子武士","茄子先生","茄子山","茄子哥","富士山茄子","dancing samurai","辣椒","\uD83C\uDF46\uD83D\uDDFB"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":142,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":102,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":139,"tap":131,"hold":0,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":102,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11000,"notes":{"total":317,"tap":248,"hold":36,"slide":12,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":102,"level_id":2,"level":"11","level_value":11.1,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":387,"tap":238,"hold":73,"slide":59,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":102,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":564,"tap":495,"hold":24,"slide":36,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":456,"players":10120,"title":"Glorious Crown","utTitle":{"100456":"[蔵]Glorious Crown"},"artist":"xi","albums":["glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝","glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝","才羽毛毛入","glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":225,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":16014,"dxRomVersion":0,"sdRomVersion":16014,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":456,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16014,"notes":{"total":344,"tap":317,"hold":8,"slide":12,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":456,"level_id":1,"level":"10","level_value":10.5,"note_designer":"-","romVersion":16014,"notes":{"total":617,"tap":572,"hold":14,"slide":19,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":456,"level_id":2,"level":"13","level_value":13.2,"note_designer":"ぴちネコ","romVersion":16014,"notes":{"total":777,"tap":642,"hold":33,"slide":65,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":456,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"合作だよ","romVersion":16014,"notes":{"total":1150,"tap":989,"hold":18,"slide":89,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100456":{"id":100456,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":1282,"tap":1192,"hold":15,"slide":56,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":106,"players":2944,"title":"BAD∞END∞NIGHT","utTitle":null,"artist":"ひとしずくP・やま△","albums":["bad∞end∞night","badendnight","bad end night","坏结夜","鬼畜公馆","♾️","∞","bad∞end∞night","badendnight","bad end night","坏结夜","鬼畜公馆","♾️","∞","bad∞end∞night","badendnight","bad end night","坏结夜","鬼畜公馆","♾️","∞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":204,"releaseDate":"20251205","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":106,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":127,"tap":95,"hold":20,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":106,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11000,"notes":{"total":314,"tap":286,"hold":10,"slide":2,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":106,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":335,"tap":258,"hold":50,"slide":22,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":106,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":496,"tap":381,"hold":21,"slide":61,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":107,"players":5229,"title":"ロミオとシンデレラ","utTitle":null,"artist":"doriko","albums":["ロミオとシンデレラ","罗密欧与辛德瑞拉","灰姑娘","罗密欧","罗密欧与仙度瑞拉","罗密欧与灰姑娘","口三才","罗密欧和辛德瑞拉","辛德瑞拉","罗密欧辛德瑞拉","ロミオとシンデレラ","罗密欧与辛德瑞拉","灰姑娘","罗密欧","罗密欧与仙度瑞拉","罗密欧与灰姑娘","口三才","罗密欧和辛德瑞拉","辛德瑞拉","罗密欧辛德瑞拉","ロミオとシンデレラ","罗密欧与辛德瑞拉","灰姑娘","罗密欧","罗密欧与仙度瑞拉","罗密欧与灰姑娘","口三才","罗密欧和辛德瑞拉","辛德瑞拉","罗密欧辛德瑞拉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":107,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11000,"notes":{"total":143,"tap":125,"hold":7,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":107,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11000,"notes":{"total":226,"tap":166,"hold":48,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":107,"level_id":2,"level":"11","level_value":11.1,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":273,"tap":176,"hold":24,"slide":57,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":107,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":450,"tap":390,"hold":35,"slide":16,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":107,"level_id":4,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":11000,"notes":{"total":624,"tap":522,"hold":29,"slide":56,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":287,"long":false},{"id":108,"players":1743,"title":"Sweetiex2","utTitle":null,"artist":"Dixie Flatline","albums":["sweetiex2","教室","sweetiex2","教室","sweetiex2","教室"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":108,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11000,"notes":{"total":123,"tap":101,"hold":12,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":108,"level_id":1,"level":"6","level_value":6.9,"note_designer":"-","romVersion":11000,"notes":{"total":223,"tap":196,"hold":19,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":108,"level_id":2,"level":"8","level_value":8.5,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":315,"tap":264,"hold":31,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":108,"level_id":3,"level":"12","level_value":12.4,"note_designer":"mai-Star","romVersion":11000,"notes":{"total":308,"tap":228,"hold":26,"slide":47,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":109,"players":7261,"title":"腐れ外道とチョコレゐト","utTitle":null,"artist":"ピノキオP","albums":["腐れ外道とチョコレゐト","外道","异端","该死的异端及巧克力","巧克力","腐外道","红雷小曲","\uD83C\uDF6B","腐れ外道とチョコレゐト","外道","异端","该死的异端及巧克力","巧克力","腐外道","红雷小曲","\uD83C\uDF6B","腐れ外道とチョコレゐト","外道","异端","该死的异端及巧克力","巧克力","腐外道","红雷小曲","\uD83C\uDF6B"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":260,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":109,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":206,"tap":180,"hold":23,"slide":2,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":109,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":11000,"notes":{"total":334,"tap":284,"hold":35,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":109,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":485,"tap":416,"hold":54,"slide":3,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":109,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":11000,"notes":{"total":598,"tap":435,"hold":92,"slide":62,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":118,"long":false},{"id":110,"players":1953,"title":"Quartet Theme [Reborn]","utTitle":null,"artist":"COSIO(ZUNTATA/TAITO)「カルテット」","albums":["quartet theme [reborn]","手枪小人","生死四人组","手枪人","四重奏","quartet","十面埋伏","quartet theme [reborn]","手枪小人","生死四人组","手枪人","四重奏","quartet","十面埋伏","quartet theme [reborn]","手枪小人","生死四人组","手枪人","四重奏","quartet","十面埋伏"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":137,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11002,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":110,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":11002,"notes":{"total":119,"tap":98,"hold":12,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":110,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":11002,"notes":{"total":265,"tap":205,"hold":43,"slide":4,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":110,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":290,"tap":174,"hold":44,"slide":69,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":110,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":11002,"notes":{"total":502,"tap":370,"hold":96,"slide":35,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":111,"players":1954,"title":"Sky High [Reborn]","utTitle":null,"artist":"大久保 博(BNGI)「デイトナ USA」","albums":["sky high [reborn]","天高","天空高","sky high [reborn]","天高","天空高","sky high [reborn]","天高","天空高"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":144,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11002,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":111,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11002,"notes":{"total":135,"tap":123,"hold":2,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":111,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11002,"notes":{"total":285,"tap":251,"hold":19,"slide":6,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":111,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":340,"tap":244,"hold":79,"slide":15,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":111,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":11002,"notes":{"total":428,"tap":316,"hold":73,"slide":36,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":111,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"Techno Kitchen","romVersion":11002,"notes":{"total":611,"tap":475,"hold":43,"slide":64,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":112,"players":4071,"title":"Like the Wind [Reborn]","utTitle":null,"artist":"sampling masters MEGA「パワードリフト」","albums":["like the wind [reborn]","蓝的盆","一块钱","莱克.德.万帝","野兽先辈","动力甩尾","十段之壁","像风一样自由","像风一样","像风一样复兴的","如风","like the wind [reborn]","蓝的盆","一块钱","莱克.德.万帝","野兽先辈","动力甩尾","十段之壁","像风一样自由","像风一样","像风一样复兴的","如风","like the wind [reborn]","蓝的盆","一块钱","莱克.德.万帝","野兽先辈","动力甩尾","十段之壁","像风一样自由","像风一样","像风一样复兴的","如风","三潭印月"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11002,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":112,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11002,"notes":{"total":206,"tap":176,"hold":11,"slide":8,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":112,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":11002,"notes":{"total":362,"tap":320,"hold":20,"slide":4,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":112,"level_id":2,"level":"11","level_value":11.4,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":539,"tap":475,"hold":22,"slide":15,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":112,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ニャイン","romVersion":11002,"notes":{"total":679,"tap":535,"hold":20,"slide":70,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":397,"long":false},{"id":113,"players":5502,"title":"YA・DA・YO [Reborn]","utTitle":null,"artist":"古代 祐三「ファンタジーゾーン」","albums":["ya・da・yo [reborn]","亚达哟","ydy","六个喇叭","yadayo","幻想地带","中专说唱","不要嘛","ya・da・yo [reborn]","亚达哟","ydy","六个喇叭","yadayo","幻想地带","中专说唱","不要嘛","ya・da・yo [reborn]","亚达哟","ydy","六个喇叭","yadayo","幻想地带","中专说唱","不要嘛"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":105,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11002,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":113,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11002,"notes":{"total":106,"tap":88,"hold":10,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":113,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":11002,"notes":{"total":246,"tap":225,"hold":6,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":113,"level_id":2,"level":"13","level_value":13.0,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":534,"tap":515,"hold":1,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":113,"level_id":3,"level":"13","level_value":13.4,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":513,"tap":473,"hold":16,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":114,"players":4300,"title":"Space Harrier Main Theme [Reborn]","utTitle":{"110114":"[耐]Space Harrier Main Theme [Reborn]"},"artist":"佐野 信義「スペースハリアー」","albums":["space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利","space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利","space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":125,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24015,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":114,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11002,"notes":{"total":166,"tap":148,"hold":4,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":114,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":11002,"notes":{"total":186,"tap":151,"hold":24,"slide":10,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":114,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":208,"tap":47,"hold":147,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":114,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"チャン@DP皆伝","romVersion":11002,"notes":{"total":464,"tap":421,"hold":23,"slide":6,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110114":{"id":110114,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1490,"tap":1476,"hold":0,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":115,"players":5106,"title":"DADDY MULK -Groove remix-","utTitle":null,"artist":"Performed by SEGA Sound Unit [H.]","albums":["daddy mulk -groove remix-","爹奶","大爹马克","大爹奶","爸爸奶","忍者战士","爹地奶","爹爹奶","爸爸的雷达","daddy mulk -groove remix-","爹奶","大爹马克","大爹奶","爸爸奶","忍者战士","爹地奶","爹爹奶","爸爸的雷达","daddy mulk -groove remix-","爹奶","大爹马克","大爹奶","爸爸奶","忍者战士","爹地奶","爹爹奶","爸爸的雷达"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":154,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12007,"dxRomVersion":0,"sdRomVersion":12007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":115,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12007,"notes":{"total":137,"tap":122,"hold":7,"slide":7,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":115,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12007,"notes":{"total":310,"tap":273,"hold":13,"slide":12,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":115,"level_id":2,"level":"12","level_value":12.0,"note_designer":"合作だよ","romVersion":12007,"notes":{"total":446,"tap":400,"hold":34,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":115,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"mai-Star","romVersion":12007,"notes":{"total":785,"tap":739,"hold":6,"slide":38,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":115,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"ものくロシェ","romVersion":12007,"notes":{"total":901,"tap":798,"hold":22,"slide":71,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":116,"players":1844,"title":"ぴぴぱぷぅ!","utTitle":null,"artist":"Hiro/小山あかり","albums":["ぴぴぱぷぅ!","比巴卜","噼噼啪噗","ぴぴぱぷぅ!","比巴卜","噼噼啪噗","ぴぴぱぷぅ!","比巴卜","噼噼啪噗"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":147,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":116,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":11007,"notes":{"total":123,"tap":103,"hold":9,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":116,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11007,"notes":{"total":323,"tap":249,"hold":42,"slide":24,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":116,"level_id":2,"level":"11","level_value":11.2,"note_designer":"ニャイン","romVersion":11007,"notes":{"total":388,"tap":273,"hold":59,"slide":37,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":116,"level_id":3,"level":"13","level_value":13.0,"note_designer":"mai-Star","romVersion":11007,"notes":{"total":500,"tap":366,"hold":68,"slide":59,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":117,"players":8177,"title":"炎歌 -ほむらうた-","utTitle":null,"artist":"Hiro/森山愛子","albums":["炎歌 -ほむらうた-","广场舞","凤凰传奇","阉割","炎歌","炎歌 -ほむらうた-","广场舞","凤凰传奇","阉割","炎歌","舞萌广场舞","炎歌 -ほむらうた-","广场舞","凤凰传奇","阉割","炎歌"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":108,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":11006,"dxRomVersion":25001,"sdRomVersion":11006,"utRomVersion":0,"dx":{"0":{"id":10117,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25001,"notes":{"total":132,"tap":109,"hold":11,"slide":4,"touch":7,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10117,"level_id":1,"level":"5","level_value":5.8,"note_designer":"","romVersion":25001,"notes":{"total":195,"tap":155,"hold":14,"slide":6,"touch":17,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10117,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":25001,"notes":{"total":339,"tap":208,"hold":34,"slide":42,"touch":40,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10117,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":25001,"notes":{"total":527,"tap":372,"hold":43,"slide":74,"touch":22,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":117,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11006,"notes":{"total":132,"tap":109,"hold":12,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":117,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":11006,"notes":{"total":238,"tap":189,"hold":33,"slide":11,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":117,"level_id":2,"level":"12","level_value":12.0,"note_designer":"譜面-100号","romVersion":11006,"notes":{"total":409,"tap":345,"hold":25,"slide":33,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":117,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":11006,"notes":{"total":389,"tap":257,"hold":33,"slide":94,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":118,"players":1911,"title":"犬日和。","utTitle":null,"artist":"RYOHEI KOHNO/森綾香","albums":["犬日和。","犬日和","狗日和","狗天气","狗日的","哈皮","日和","狗日子","犬日和。","犬日和","狗日和","狗天气","狗日的","哈皮","日和","狗日子","金朗","犬日和。","犬日和","狗日和","狗天气","狗日的","哈皮","日和","狗日子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":138,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":0,"sdRomVersion":11001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":118,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11001,"notes":{"total":150,"tap":135,"hold":4,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":118,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":11001,"notes":{"total":222,"tap":179,"hold":14,"slide":3,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":118,"level_id":2,"level":"10","level_value":10.0,"note_designer":"ニャイン","romVersion":11001,"notes":{"total":337,"tap":302,"hold":8,"slide":4,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":118,"level_id":3,"level":"12","level_value":12.4,"note_designer":"mai-Star","romVersion":11001,"notes":{"total":413,"tap":356,"hold":26,"slide":8,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":119,"players":1955,"title":"ソーラン☆節","utTitle":null,"artist":"光吉猛修","albums":["ソーラン☆節","索兰节","嗦拉面","拉面","ソーラン☆節","索兰节","嗦拉面","拉面","ソーラン☆節","索兰节","嗦拉面","拉面"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11006,"dxRomVersion":0,"sdRomVersion":11006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":119,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11006,"notes":{"total":133,"tap":106,"hold":9,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":119,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":11006,"notes":{"total":205,"tap":160,"hold":23,"slide":6,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":119,"level_id":2,"level":"11","level_value":11.4,"note_designer":"ニャイン","romVersion":11006,"notes":{"total":314,"tap":212,"hold":43,"slide":39,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":119,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":11006,"notes":{"total":414,"tap":314,"hold":34,"slide":46,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":120,"players":1723,"title":"デコボコ体操第二","utTitle":null,"artist":"光吉猛修&体操隊","albums":["デコボコ体操第二","体操","体操第二","凹凸","デコボコ体操第二","体操","体操第二","凹凸","デコボコ体操第二","体操","体操第二","凹凸"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":0,"sdRomVersion":11001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":120,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11001,"notes":{"total":91,"tap":77,"hold":1,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":120,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":11001,"notes":{"total":126,"tap":89,"hold":19,"slide":12,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":120,"level_id":2,"level":"9","level_value":9.1,"note_designer":"はっぴー","romVersion":11001,"notes":{"total":194,"tap":105,"hold":34,"slide":49,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":120,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":11001,"notes":{"total":268,"tap":194,"hold":0,"slide":64,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":121,"players":2337,"title":"スイートマジック","utTitle":null,"artist":"ろん×Junky","albums":["スイートマジック","甜甜魔法","sm","羽泽鸫","sweet magic","sweetmagic","swmg","甜蜜魔法","スイートマジック","甜甜魔法","sm","羽泽鸫","sweet magic","sweetmagic","swmg","甜蜜魔法","スイートマジック","甜甜魔法","sm","羽泽鸫","sweet magic","sweetmagic","swmg","甜蜜魔法"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":123,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":121,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11000,"notes":{"total":161,"tap":146,"hold":5,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":121,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":11000,"notes":{"total":228,"tap":170,"hold":32,"slide":10,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":121,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":389,"tap":315,"hold":21,"slide":33,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":121,"level_id":3,"level":"12","level_value":12.4,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":414,"tap":303,"hold":43,"slide":39,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":503,"long":false},{"id":122,"players":3982,"title":"ゴーゴー幽霊船","utTitle":null,"artist":"米津玄師","albums":["ゴーゴー幽霊船","幽灵船","gogo幽灵船","憋憋憋","ゴーゴー幽霊船","幽灵船","gogo幽灵船","憋憋憋","ゴーゴー幽霊船","幽灵船","gogo幽灵船","憋憋憋"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":122,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11000,"notes":{"total":124,"tap":103,"hold":16,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":122,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11000,"notes":{"total":286,"tap":223,"hold":53,"slide":1,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":122,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":11000,"notes":{"total":348,"tap":239,"hold":61,"slide":40,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":122,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":401,"tap":270,"hold":94,"slide":18,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":577,"long":false},{"id":128,"players":4475,"title":"御旗のもとに","utTitle":null,"artist":"「サクラ大戦」","albums":["御旗のもとに","御旗のもとに","御旗のもとに","dx御旗"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":147,"releaseDate":"20240412","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":25000,"sdRomVersion":11001,"utRomVersion":0,"dx":{"0":{"id":10128,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":101,"tap":75,"hold":9,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10128,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25000,"notes":{"total":235,"tap":176,"hold":21,"slide":4,"touch":30,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10128,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ロシェ@ペンギン","romVersion":25000,"notes":{"total":310,"tap":185,"hold":66,"slide":25,"touch":9,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10128,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":25000,"notes":{"total":504,"tap":324,"hold":31,"slide":74,"touch":43,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":128,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11001,"notes":{"total":81,"tap":49,"hold":25,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":128,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":11001,"notes":{"total":123,"tap":62,"hold":37,"slide":22,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":128,"level_id":2,"level":"12","level_value":12.1,"note_designer":"ニャイン","romVersion":11001,"notes":{"total":194,"tap":95,"hold":59,"slide":37,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":128,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":11001,"notes":{"total":346,"tap":229,"hold":80,"slide":32,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":858,"long":false},{"id":130,"players":3695,"title":"FEEL ALIVE","utTitle":null,"artist":"ELEMENTAS feat. NAGISA","albums":["feel alive","感觉死","小蜜蜂","感觉活","女人赛跑","感觉活着","feel alive","感觉死","小蜜蜂","感觉活","女人赛跑","感觉活着","feel alive","感觉死","小蜜蜂","感觉活","女人赛跑","感觉活着"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":162,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":130,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11004,"notes":{"total":129,"tap":106,"hold":5,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":130,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":11004,"notes":{"total":247,"tap":211,"hold":20,"slide":8,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":130,"level_id":2,"level":"12","level_value":12.1,"note_designer":"ニャイン","romVersion":11004,"notes":{"total":330,"tap":279,"hold":31,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":130,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"mai-Star","romVersion":11004,"notes":{"total":469,"tap":375,"hold":29,"slide":36,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":131,"players":3672,"title":"Link","utTitle":null,"artist":"Clean Tears feat. Youna","albums":["link","cof","链接","朋友圈","林克","link","cof","链接","朋友圈","林克","link","cof","链接","朋友圈","林克"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":131,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11004,"notes":{"total":124,"tap":110,"hold":5,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":131,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":11004,"notes":{"total":174,"tap":145,"hold":19,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":131,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":11004,"notes":{"total":314,"tap":253,"hold":31,"slide":23,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":131,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":11004,"notes":{"total":308,"tap":208,"hold":14,"slide":73,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":131,"level_id":4,"level":"13","level_value":13.5,"note_designer":"じゃこレモン","romVersion":11004,"notes":{"total":475,"tap":322,"hold":29,"slide":84,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":132,"players":3179,"title":"Turn around","utTitle":null,"artist":"Clean Tears","albums":["turn around","ta","中国好声音","转弯","量子采音","橘之夏","转身","转向","turn around","ta","中国好声音","转弯","量子采音","橘之夏","转身","转向","turn around","ta","中国好声音","转弯","量子采音","橘之夏","转身","转向"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":156,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":132,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11007,"notes":{"total":145,"tap":132,"hold":8,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":132,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":11007,"notes":{"total":194,"tap":167,"hold":16,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":132,"level_id":2,"level":"13","level_value":13.1,"note_designer":"ニャイン","romVersion":11007,"notes":{"total":402,"tap":361,"hold":26,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":132,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":11007,"notes":{"total":445,"tap":356,"hold":26,"slide":55,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":133,"players":4948,"title":"We Gonna Party","utTitle":null,"artist":"Cranky","albums":["we gonna party","我们即将排队","咱想开派对","我们要派对","银趴","埃菲尔铁塔着火","我们去派对","埃菲尔铁塔圣诞树","埃菲尔铁塔","wgp","我们去银趴","铅神","铁塔","we gonna party","我们即将排队","咱想开派对","我们要派对","银趴","埃菲尔铁塔着火","我们去派对","埃菲尔铁塔圣诞树","埃菲尔铁塔","wgp","我们去银趴","铅神","铁塔","we gonna party","我们即将排队","咱想开派对","我们要派对","银趴","埃菲尔铁塔着火","我们去派对","埃菲尔铁塔圣诞树","埃菲尔铁塔","wgp","我们去银趴","铅神","铁塔"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":159,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":133,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":142,"tap":104,"hold":24,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":133,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11000,"notes":{"total":192,"tap":160,"hold":24,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":133,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":375,"tap":324,"hold":15,"slide":22,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":133,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":445,"tap":373,"hold":5,"slide":51,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":133,"level_id":4,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":11000,"notes":{"total":608,"tap":487,"hold":25,"slide":57,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":134,"players":3122,"title":"Night Fly","utTitle":null,"artist":"発熱巫女~ず","albums":["night fly","夜飞","蓝鲸","\uD83D\uDC33","晚上飞","晚上苍蝇","night fly","夜飞","蓝鲸","\uD83D\uDC33","晚上飞","晚上苍蝇","酸橙之妻","night fly","夜飞","蓝鲸","\uD83D\uDC33","晚上飞","晚上苍蝇"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":127,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":134,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":11004,"notes":{"total":75,"tap":63,"hold":6,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":134,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11004,"notes":{"total":122,"tap":66,"hold":49,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":134,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"mai-Star","romVersion":11004,"notes":{"total":224,"tap":167,"hold":39,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":134,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ニャイン","romVersion":11004,"notes":{"total":286,"tap":180,"hold":30,"slide":67,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":134,"level_id":4,"level":"13","level_value":13.4,"note_designer":"Moon Strix","romVersion":11004,"notes":{"total":387,"tap":292,"hold":23,"slide":57,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":135,"players":2083,"title":"Feel My Fire","utTitle":null,"artist":"発熱巫女~ず","albums":["feel my fire","感受我的火","海绵","感受我的烧","爱如火","fmf","感觉我烧","feel my fire","感受我的火","海绵","感受我的烧","爱如火","fmf","感觉我烧","feel my fire","感受我的火","海绵","感受我的烧","爱如火","fmf","感觉我烧"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":123,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":135,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11004,"notes":{"total":88,"tap":72,"hold":9,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":135,"level_id":1,"level":"9","level_value":9.1,"note_designer":"-","romVersion":11004,"notes":{"total":207,"tap":161,"hold":22,"slide":16,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":135,"level_id":2,"level":"11","level_value":11.1,"note_designer":"ニャイン","romVersion":11004,"notes":{"total":209,"tap":112,"hold":58,"slide":28,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":135,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":11004,"notes":{"total":309,"tap":218,"hold":34,"slide":54,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":136,"players":4539,"title":"Streak","utTitle":null,"artist":"ARM(IOSYS)","albums":["streak","米奇妙妙屋","裸奔","青楼","拆房子","绿庙","绿房","streak","米奇妙妙屋","裸奔","青楼","拆房子","绿庙","绿房","streak","米奇妙妙屋","裸奔","青楼","拆房子","绿庙","绿房","牛排"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":136,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":119,"tap":91,"hold":16,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":136,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":11000,"notes":{"total":156,"tap":118,"hold":16,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":136,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":301,"tap":283,"hold":7,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":136,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":11000,"notes":{"total":332,"tap":222,"hold":35,"slide":71,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":137,"players":2379,"title":"Spin me harder","utTitle":null,"artist":"D.watt(IOSYS)feat. Asana","albums":["spin me harder","蝴蝶","\uD83E\uDD8B","更努力转我","电蝴蝶","用力转我","更大力转我","更难的旋转","转我更猛些","蓝蝴蝶","spin me harder","蝴蝶","\uD83E\uDD8B","更努力转我","电蝴蝶","用力转我","更大力转我","更难的旋转","转我更猛些","蓝蝴蝶","spin me harder","蝴蝶","\uD83E\uDD8B","更努力转我","电蝴蝶","用力转我","更大力转我","更难的旋转","转我更猛些","蓝蝴蝶"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":130,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":137,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11004,"notes":{"total":117,"tap":95,"hold":15,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":137,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":11004,"notes":{"total":154,"tap":125,"hold":13,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":137,"level_id":2,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":11004,"notes":{"total":264,"tap":189,"hold":11,"slide":56,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":137,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":11004,"notes":{"total":337,"tap":236,"hold":58,"slide":39,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":138,"players":3984,"title":"Lionheart","utTitle":null,"artist":"Masayoshi Minoshima","albums":["lionheart","狮子心","狮心","莱因哈特","lionheart","狮子心","狮心","莱因哈特","lionheart","狮子心","狮心","莱因哈特"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":138,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":129,"tap":108,"hold":15,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":138,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11000,"notes":{"total":182,"tap":159,"hold":14,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":138,"level_id":2,"level":"11","level_value":11.4,"note_designer":"はっぴー","romVersion":11000,"notes":{"total":295,"tap":248,"hold":22,"slide":14,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":138,"level_id":3,"level":"13","level_value":13.4,"note_designer":"チャン@DP皆伝","romVersion":11000,"notes":{"total":464,"tap":383,"hold":4,"slide":61,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":139,"players":2702,"title":"Acceleration","utTitle":null,"artist":"REDALiCE","albums":["acceleration","acc","加速器","五毛","加速","acceleration","acc","加速器","五毛","加速","acceleration","acc","加速器","五毛","加速"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":139,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":11000,"notes":{"total":188,"tap":166,"hold":9,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":139,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":11000,"notes":{"total":225,"tap":193,"hold":25,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":139,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":406,"tap":361,"hold":20,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":139,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":464,"tap":421,"hold":8,"slide":28,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":140,"players":2185,"title":"Sprintrances","utTitle":null,"artist":"Taishi","albums":["sprintrances","冰山","一块五","sprintrances","冰山","一块五","sprintrances","冰山","一块五","戈仑冰人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":140,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11000,"notes":{"total":118,"tap":105,"hold":10,"slide":2,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":140,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11000,"notes":{"total":212,"tap":187,"hold":18,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":140,"level_id":2,"level":"11","level_value":11.1,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":241,"tap":180,"hold":42,"slide":10,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":140,"level_id":3,"level":"13","level_value":13.3,"note_designer":"mai-Star","romVersion":11000,"notes":{"total":353,"tap":257,"hold":44,"slide":47,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":141,"players":3021,"title":"Nerverakes","utTitle":null,"artist":"Taishi","albums":["nerverakes","两块钱","神经痛","地球仪","二块钱","nerverakes","两块钱","神经痛","地球仪","二块钱","nerverakes","两块钱","神经痛","地球仪","二块钱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":141,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":11007,"notes":{"total":122,"tap":100,"hold":16,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":141,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":11007,"notes":{"total":173,"tap":124,"hold":36,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":141,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"ニャイン","romVersion":11007,"notes":{"total":272,"tap":219,"hold":31,"slide":15,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":141,"level_id":3,"level":"14","level_value":14.1,"note_designer":"mai-Star","romVersion":11007,"notes":{"total":560,"tap":515,"hold":22,"slide":12,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":142,"players":3687,"title":"Black Out","utTitle":null,"artist":"Tsukasa(Arte Refact)","albums":["black out","黜","曼巴out","晕倒","黑出","black out","黜","曼巴out","晕倒","黑出","black out","黜","曼巴out","晕倒","黑出"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":142,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":142,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11007,"notes":{"total":108,"tap":100,"hold":2,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":142,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":11007,"notes":{"total":183,"tap":151,"hold":23,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":142,"level_id":2,"level":"13","level_value":13.0,"note_designer":"mai-Star","romVersion":11007,"notes":{"total":322,"tap":278,"hold":32,"slide":2,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":142,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":11007,"notes":{"total":339,"tap":231,"hold":43,"slide":37,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":143,"players":9801,"title":"Fragrance","utTitle":null,"artist":"Tsukasa(Arte Refact)","albums":["fragrance","喷香滴","芒果","芳香","白楼开花","白香芋","响水","大楼","香香","斜塔","香水","fragrance","喷香滴","芒果","芳香","白楼开花","白香芋","响水","大楼","香香","斜塔","香水","吕元伟带小孩","淮安皇帝素质花","李轩仪","lxy","fragrance","喷香滴","芒果","芳香","白楼开花","白香芋","响水","大楼","香香","斜塔","香水"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11004,"dxRomVersion":0,"sdRomVersion":11004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":143,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11004,"notes":{"total":91,"tap":76,"hold":7,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":143,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":11004,"notes":{"total":142,"tap":96,"hold":37,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":143,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"ニャイン","romVersion":11004,"notes":{"total":294,"tap":230,"hold":50,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":143,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":11004,"notes":{"total":655,"tap":651,"hold":0,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":143,"level_id":4,"level":"14+","level_value":14.6,"note_designer":"玉子豆腐","romVersion":11004,"notes":{"total":655,"tap":441,"hold":19,"slide":192,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":144,"players":4447,"title":"air's gravity","utTitle":null,"artist":"zts","albums":["air's gravity","空气重力","空气炸锅","air's gravity","空气重力","空气炸锅","air's gravity","空气重力","空气炸锅"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":137,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":0,"sdRomVersion":11000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":144,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":11000,"notes":{"total":130,"tap":114,"hold":7,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":144,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11000,"notes":{"total":204,"tap":165,"hold":31,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":144,"level_id":2,"level":"11","level_value":11.3,"note_designer":"ニャイン","romVersion":11000,"notes":{"total":247,"tap":198,"hold":32,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":144,"level_id":3,"level":"13","level_value":13.3,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":397,"tap":363,"hold":18,"slide":1,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":144,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":11000,"notes":{"total":492,"tap":418,"hold":20,"slide":39,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":145,"players":5106,"title":"Starlight Disco","utTitle":null,"artist":"loos feat. Meramipop","albums":["starlight disco","starlightdisco","星光","星光迪斯科","dx星光","starlight disco","starlightdisco","星光","星光迪斯科","dx星光","starlight disco","starlightdisco","星光","星光迪斯科","dx星光"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":128,"releaseDate":"20220701","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":11000,"dxRomVersion":23003,"sdRomVersion":11000,"utRomVersion":0,"dx":{"0":{"id":10145,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":107,"tap":78,"hold":1,"slide":5,"touch":22,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10145,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23003,"notes":{"total":150,"tap":113,"hold":15,"slide":7,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10145,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Starlight Disco Festa","romVersion":23003,"notes":{"total":314,"tap":172,"hold":49,"slide":33,"touch":56,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10145,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Starlight Disco Festa","romVersion":23003,"notes":{"total":439,"tap":315,"hold":21,"slide":73,"touch":20,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":145,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11000,"notes":{"total":76,"tap":59,"hold":6,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":145,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":11000,"notes":{"total":159,"tap":127,"hold":8,"slide":16,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":145,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"譜面-100号","romVersion":11000,"notes":{"total":230,"tap":128,"hold":66,"slide":32,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":145,"level_id":3,"level":"12","level_value":12.4,"note_designer":"はっぴー","romVersion":11000,"notes":{"total":279,"tap":151,"hold":87,"slide":40,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":145,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":11000,"notes":{"total":389,"tap":261,"hold":38,"slide":87,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":8129,"long":false},{"id":146,"players":13575,"title":"39","utTitle":null,"artist":"sasakure.UK x DECO*27","albums":["39","dx39","谢谢","三九","39","dx39","谢谢","三九","39","dx39","谢谢","三九"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":11005,"dxRomVersion":20000,"sdRomVersion":11005,"utRomVersion":0,"dx":{"0":{"id":10146,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":93,"tap":62,"hold":16,"slide":2,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10146,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":20000,"notes":{"total":198,"tap":136,"hold":14,"slide":11,"touch":28,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10146,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":390,"tap":201,"hold":97,"slide":19,"touch":63,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10146,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":20000,"notes":{"total":602,"tap":352,"hold":35,"slide":78,"touch":104,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":146,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11005,"notes":{"total":126,"tap":86,"hold":31,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":146,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11005,"notes":{"total":218,"tap":159,"hold":45,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":146,"level_id":2,"level":"11","level_value":11.2,"note_designer":"ニャイン","romVersion":11005,"notes":{"total":297,"tap":196,"hold":78,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":146,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"譜面-100号","romVersion":11005,"notes":{"total":512,"tap":374,"hold":55,"slide":40,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":146,"level_id":4,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":11005,"notes":{"total":575,"tap":380,"hold":66,"slide":90,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":768,"long":false},{"id":147,"players":1615,"title":"地上の戦士","utTitle":null,"artist":"「サクラ大戦」","albums":["地上の戦士","地上的战士","地上","樱花大战5","譜面-100号","地上の戦士","地上的战士","地上","樱花大战5","譜面-100号","地上の戦士","地上的战士","地上","樱花大战5","譜面-100号"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":130,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11006,"dxRomVersion":0,"sdRomVersion":11006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":147,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11006,"notes":{"total":93,"tap":62,"hold":20,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":147,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":11006,"notes":{"total":165,"tap":99,"hold":45,"slide":7,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":147,"level_id":2,"level":"11","level_value":11.4,"note_designer":"ニャイン","romVersion":11006,"notes":{"total":213,"tap":113,"hold":72,"slide":16,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":147,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"譜面-100号","romVersion":11006,"notes":{"total":345,"tap":257,"hold":28,"slide":46,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":152,"players":2091,"title":"超絶!Superlative","utTitle":null,"artist":"Keitarou Hanada「戦国大戦」","albums":["超絶!superlative","超绝","超絶!superlative","超绝","超絶!superlative","超绝"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11006,"dxRomVersion":0,"sdRomVersion":11006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":152,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11006,"notes":{"total":115,"tap":82,"hold":22,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":152,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":11006,"notes":{"total":217,"tap":142,"hold":64,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":152,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"mai-Star","romVersion":11006,"notes":{"total":363,"tap":268,"hold":68,"slide":16,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":152,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ニャイン","romVersion":11006,"notes":{"total":448,"tap":312,"hold":39,"slide":73,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":153,"players":1870,"title":"采配の刻 Power of order","utTitle":null,"artist":"Keitarou Hanada「戦国大戦」","albums":["采配の刻 power of order","采配","采配之刻","采配の刻 power of order","采配","采配之刻","采配の刻 power of order","采配","采配之刻"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":185,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11006,"dxRomVersion":0,"sdRomVersion":11006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":153,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11006,"notes":{"total":126,"tap":91,"hold":24,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":153,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":11006,"notes":{"total":205,"tap":147,"hold":33,"slide":15,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":153,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"譜面-100号","romVersion":11006,"notes":{"total":459,"tap":330,"hold":72,"slide":34,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":153,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":11006,"notes":{"total":512,"tap":326,"hold":67,"slide":95,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":154,"players":3499,"title":"DO RORO DERODERO ON DO RORO","utTitle":null,"artist":"怒髪天「百鬼大戦絵巻」","albums":["do roro derodero on do roro","dororo","多罗罗","百鬼","原批大战罕见2","百鬼大战罕见","百鬼大战绘卷","迪罗迪罗","源平2","do roro derodero on do roro","dororo","多罗罗","百鬼","原批大战罕见2","百鬼大战罕见","百鬼大战绘卷","迪罗迪罗","源平2","do roro derodero on do roro","dororo","多罗罗","百鬼","原批大战罕见2","百鬼大战罕见","百鬼大战绘卷","迪罗迪罗","源平2"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":0,"sdRomVersion":11001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":154,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11001,"notes":{"total":164,"tap":142,"hold":14,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":154,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":11001,"notes":{"total":311,"tap":271,"hold":26,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":154,"level_id":2,"level":"13","level_value":13.2,"note_designer":"譜面-100号","romVersion":11001,"notes":{"total":457,"tap":401,"hold":33,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":154,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"mai-Star","romVersion":11001,"notes":{"total":515,"tap":411,"hold":54,"slide":33,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":155,"players":3105,"title":"泣き虫O'clock","utTitle":null,"artist":"Hiro/友香","albums":["泣き虫o'clock","爱哭鬼","泣虫","泣き虫o'clock","爱哭鬼","泣虫","泣き虫o'clock","爱哭鬼","泣虫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":152,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11007,"dxRomVersion":0,"sdRomVersion":11007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":155,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11007,"notes":{"total":148,"tap":132,"hold":5,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":155,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":11007,"notes":{"total":280,"tap":190,"hold":67,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":155,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"ニャイン","romVersion":11007,"notes":{"total":358,"tap":250,"hold":77,"slide":27,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":155,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":11007,"notes":{"total":469,"tap":324,"hold":58,"slide":77,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":155,"level_id":4,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":11007,"notes":{"total":674,"tap":527,"hold":42,"slide":85,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":157,"players":1900,"title":"Natural Flow","utTitle":null,"artist":"KENTARO「Crackin’DJ」","albums":["natural flow","自然流","natural flow","自然流","natural flow","自然流"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":100,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":0,"sdRomVersion":11001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":157,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":11001,"notes":{"total":114,"tap":103,"hold":5,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":157,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":11001,"notes":{"total":198,"tap":162,"hold":23,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":157,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"譜面-100号","romVersion":11001,"notes":{"total":189,"tap":105,"hold":58,"slide":21,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":157,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ニャイン","romVersion":11001,"notes":{"total":205,"tap":104,"hold":28,"slide":47,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":508,"players":11405,"title":"恋愛裁判","utTitle":{"100508":"[協]恋愛裁判"},"artist":"40mP","albums":["恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判","恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判","恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":134,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":508,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17000,"notes":{"total":165,"tap":147,"hold":8,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":508,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":17000,"notes":{"total":304,"tap":266,"hold":21,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":508,"level_id":2,"level":"10","level_value":10.0,"note_designer":"合作だよ","romVersion":17000,"notes":{"total":393,"tap":218,"hold":109,"slide":45,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":508,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"合作だよ","romVersion":17000,"notes":{"total":632,"tap":472,"hold":65,"slide":69,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100508":{"id":100508,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":855,"tap":607,"hold":160,"slide":56,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":224,"long":false},{"id":159,"players":4160,"title":"maimaiちゃんのテーマ","utTitle":null,"artist":"YMCK","albums":["maimaiちゃんのテーマ","maimai酱","真代主题曲","舞萌酱","maimaiちゃんのテーマ","maimai酱","真代主题曲","舞萌酱","maimaiちゃんのテーマ","maimai酱","真代主题曲","舞萌酱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":136,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":11001,"dxRomVersion":0,"sdRomVersion":11001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":159,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":11001,"notes":{"total":129,"tap":105,"hold":15,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":159,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":11001,"notes":{"total":184,"tap":141,"hold":31,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":159,"level_id":2,"level":"9","level_value":9.3,"note_designer":"ニャイン","romVersion":11001,"notes":{"total":243,"tap":175,"hold":42,"slide":11,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":159,"level_id":3,"level":"12","level_value":12.4,"note_designer":"mai-Star","romVersion":11001,"notes":{"total":398,"tap":328,"hold":29,"slide":31,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":517,"players":2998,"title":"東京リアルワールド","utTitle":{"100517":"[覚]東京リアルワールド"},"artist":"out of service","albums":["東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界","東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界","東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17006,"dxRomVersion":0,"sdRomVersion":17006,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":517,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17006,"notes":{"total":227,"tap":196,"hold":17,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":517,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":17006,"notes":{"total":369,"tap":320,"hold":16,"slide":17,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":517,"level_id":2,"level":"9","level_value":9.4,"note_designer":"Jack","romVersion":17006,"notes":{"total":472,"tap":396,"hold":22,"slide":41,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":517,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":17006,"notes":{"total":641,"tap":476,"hold":27,"slide":122,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100517":{"id":100517,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":358,"tap":146,"hold":46,"slide":154,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":524,"players":4960,"title":"Hand in Hand","utTitle":{"100524":"[協]Hand in Hand"},"artist":"livetune","albums":["hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","手在手里面"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17008,"dxRomVersion":0,"sdRomVersion":17008,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":524,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17008,"notes":{"total":169,"tap":146,"hold":18,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":524,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":17008,"notes":{"total":260,"tap":239,"hold":13,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":524,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Revo@LC","romVersion":17008,"notes":{"total":411,"tap":336,"hold":20,"slide":44,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":524,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":17008,"notes":{"total":590,"tap":441,"hold":21,"slide":110,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100524":{"id":100524,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":1207,"tap":903,"hold":165,"slide":84,"touch":0,"break_":55},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":263,"long":false},{"id":184,"players":1890,"title":"I ♥","utTitle":null,"artist":"Junky","albums":["i ♥","ilove","我爱","i ♥","ilove","我爱","i ♥","ilove","我爱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":132,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12009,"dxRomVersion":0,"sdRomVersion":12009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":184,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12009,"notes":{"total":140,"tap":125,"hold":5,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":184,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":12009,"notes":{"total":248,"tap":203,"hold":11,"slide":29,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":184,"level_id":2,"level":"9","level_value":9.4,"note_designer":"はっぴー","romVersion":12009,"notes":{"total":313,"tap":231,"hold":22,"slide":42,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":184,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"maimai TEAM","romVersion":12009,"notes":{"total":509,"tap":427,"hold":29,"slide":39,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":185,"players":6645,"title":"*ハロー、プラネット。","utTitle":null,"artist":"sasakure.UK","albums":["*ハロー、プラネット。","dx你好星球","*ハロー、プラネット。","dx你好星球","*ハロー、プラネット。","dx你好星球"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20231209","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":12006,"dxRomVersion":24006,"sdRomVersion":12006,"utRomVersion":0,"dx":{"0":{"id":10185,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":24006,"notes":{"total":113,"tap":87,"hold":9,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10185,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":24006,"notes":{"total":260,"tap":214,"hold":18,"slide":9,"touch":11,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10185,"level_id":2,"level":"9","level_value":9.0,"note_designer":"Luxizhel","romVersion":24006,"notes":{"total":349,"tap":224,"hold":15,"slide":50,"touch":47,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10185,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"鳩ホルダー","romVersion":24006,"notes":{"total":538,"tap":303,"hold":43,"slide":88,"touch":88,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":185,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12006,"notes":{"total":103,"tap":83,"hold":8,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":185,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12006,"notes":{"total":174,"tap":137,"hold":16,"slide":13,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":185,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":336,"tap":247,"hold":70,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":185,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"mai-Star","romVersion":12006,"notes":{"total":561,"tap":467,"hold":31,"slide":48,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":186,"players":1915,"title":"イアイア★ナイトオブデザイア","utTitle":null,"artist":"samfree","albums":["イアイア★ナイトオブデザイア","iaia","yiayia","イアイア★ナイトオブデザイア","iaia","yiayia","イアイア★ナイトオブデザイア","iaia","yiayia"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12002,"dxRomVersion":0,"sdRomVersion":12002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":186,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12002,"notes":{"total":118,"tap":98,"hold":2,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":186,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":12002,"notes":{"total":230,"tap":185,"hold":16,"slide":16,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":186,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":247,"tap":165,"hold":43,"slide":25,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":186,"level_id":3,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":347,"tap":202,"hold":70,"slide":60,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":187,"players":4983,"title":"ローリンガール","utTitle":null,"artist":"wowaka","albums":["ローリンガール","roiling giri","rolling girl","翻滚少女","头皮屑","滚女","ローリンガール","roiling giri","rolling girl","翻滚少女","头皮屑","滚女","ローリンガール","roiling giri","rolling girl","翻滚少女","头皮屑","滚女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":195,"releaseDate":"20250801","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":12004,"dxRomVersion":0,"sdRomVersion":12004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":187,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12004,"notes":{"total":127,"tap":104,"hold":10,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":187,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":12004,"notes":{"total":242,"tap":194,"hold":20,"slide":20,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":187,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":12004,"notes":{"total":289,"tap":193,"hold":20,"slide":74,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":187,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":12004,"notes":{"total":543,"tap":378,"hold":76,"slide":79,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2023,"long":false},{"id":188,"players":10567,"title":"天ノ弱","utTitle":null,"artist":"164","albums":["天ノ弱","天之弱","dx天弱","dx天之弱","天弱","天ノ弱","天之弱","dx天弱","dx天之弱","天弱","天ノ弱","天之弱","dx天弱","dx天之弱","天弱"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20210121","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":12009,"dxRomVersion":21006,"sdRomVersion":12009,"utRomVersion":0,"dx":{"0":{"id":10188,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":21006,"notes":{"total":123,"tap":97,"hold":12,"slide":4,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10188,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":21006,"notes":{"total":324,"tap":261,"hold":22,"slide":7,"touch":29,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10188,"level_id":2,"level":"10","level_value":10.0,"note_designer":"小鳥遊さん","romVersion":21006,"notes":{"total":517,"tap":374,"hold":45,"slide":41,"touch":34,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10188,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":21006,"notes":{"total":675,"tap":444,"hold":63,"slide":118,"touch":28,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":188,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12009,"notes":{"total":158,"tap":133,"hold":10,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":188,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":12009,"notes":{"total":278,"tap":216,"hold":28,"slide":18,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":188,"level_id":2,"level":"11","level_value":11.0,"note_designer":"譜面-100号","romVersion":12009,"notes":{"total":417,"tap":277,"hold":110,"slide":24,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":188,"level_id":3,"level":"13","level_value":13.3,"note_designer":"合作だよ","romVersion":12009,"notes":{"total":588,"tap":397,"hold":38,"slide":137,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":38,"long":false},{"id":189,"players":10294,"title":"弱虫モンブラン","utTitle":null,"artist":"DECO*27","albums":["弱虫モンブラン","iidx","若虫","胆小鬼","弱虫","弱虫モンブラン","iidx","若虫","胆小鬼","弱虫","弱虫モンブラン","iidx","若虫","胆小鬼","弱虫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12008,"dxRomVersion":0,"sdRomVersion":12008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":189,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12008,"notes":{"total":122,"tap":94,"hold":24,"slide":3,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":189,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":12008,"notes":{"total":206,"tap":184,"hold":6,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":189,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":12008,"notes":{"total":267,"tap":203,"hold":38,"slide":23,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":189,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":12008,"notes":{"total":466,"tap":357,"hold":12,"slide":94,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":190,"players":9995,"title":"モザイクロール","utTitle":null,"artist":"DECO*27","albums":["モザイクロール","mosaic roll","dx马赛克卷","mozaik role","马赛克卷","モザイクロール","mosaic roll","dx马赛克卷","mozaik role","马赛克卷","モザイクロール","mosaic roll","dx马赛克卷","mozaik role","马赛克卷"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":12009,"dxRomVersion":23005,"sdRomVersion":12009,"utRomVersion":0,"dx":{"0":{"id":10190,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":23005,"notes":{"total":129,"tap":104,"hold":11,"slide":4,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10190,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":23005,"notes":{"total":365,"tap":314,"hold":13,"slide":7,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10190,"level_id":2,"level":"10","level_value":10.2,"note_designer":"じゃこレモン","romVersion":23005,"notes":{"total":462,"tap":362,"hold":32,"slide":34,"touch":3,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10190,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":23005,"notes":{"total":726,"tap":524,"hold":47,"slide":77,"touch":11,"break_":67},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":190,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12009,"notes":{"total":134,"tap":107,"hold":12,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":190,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":12009,"notes":{"total":267,"tap":237,"hold":12,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":190,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":12009,"notes":{"total":452,"tap":356,"hold":53,"slide":34,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":190,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":12009,"notes":{"total":650,"tap":553,"hold":12,"slide":78,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":191,"players":14159,"title":"脳漿炸裂ガール","utTitle":null,"artist":"れるりり","albums":["脳漿炸裂ガール","力一儿","dx脑浆炸裂","脑浆炸裂少女","脑浆炸裂","脑浆炸裂女孩","脑浆炸裂谱","dx脑浆","\uD83E\uDD2F\uD83D\uDC67","脑浆炸裂力一儿","麦当劳1+1","脑裂","脑瘫炸裂","脑浆","\uD83E\uDD2F","脳漿炸裂ガール","力一儿","dx脑浆炸裂","脑浆炸裂少女","脑浆炸裂","脑浆炸裂女孩","脑浆炸裂谱","dx脑浆","\uD83E\uDD2F\uD83D\uDC67","脑浆炸裂力一儿","麦当劳1+1","脑裂","脑瘫炸裂","脑浆","\uD83E\uDD2F","脳漿炸裂ガール","力一儿","dx脑浆炸裂","脑浆炸裂少女","脑浆炸裂","脑浆炸裂女孩","脑浆炸裂谱","dx脑浆","\uD83E\uDD2F\uD83D\uDC67","脑浆炸裂力一儿","麦当劳1+1","脑裂","脑瘫炸裂","脑浆","\uD83E\uDD2F"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":155,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":20000,"sdRomVersion":12000,"utRomVersion":0,"dx":{"0":{"id":10191,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":137,"tap":116,"hold":0,"slide":4,"touch":15,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10191,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20000,"notes":{"total":256,"tap":220,"hold":19,"slide":5,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10191,"level_id":2,"level":"11","level_value":11.3,"note_designer":"Jack","romVersion":20000,"notes":{"total":428,"tap":303,"hold":33,"slide":51,"touch":23,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10191,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":665,"tap":455,"hold":47,"slide":50,"touch":110,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":191,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":130,"tap":94,"hold":26,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":191,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":12000,"notes":{"total":297,"tap":276,"hold":6,"slide":11,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":191,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"合作だよ","romVersion":12000,"notes":{"total":448,"tap":367,"hold":30,"slide":34,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":191,"level_id":3,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":678,"tap":600,"hold":31,"slide":33,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":167,"long":false},{"id":193,"players":7605,"title":"セツナトリップ","utTitle":null,"artist":"Last Note.","albums":["セツナトリップ","刹那旅程","dx刹那旅程","dx刹那旅行","刹那旅行","dx刹那","セツナトリップ","刹那旅程","dx刹那旅程","dx刹那旅行","刹那旅行","dx刹那","セツナトリップ","刹那旅程","dx刹那旅程","dx刹那旅行","刹那旅行","dx刹那"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":12008,"dxRomVersion":23000,"sdRomVersion":12008,"utRomVersion":0,"dx":{"0":{"id":10193,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23000,"notes":{"total":114,"tap":88,"hold":8,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10193,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23000,"notes":{"total":286,"tap":208,"hold":16,"slide":12,"touch":43,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10193,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"隅田川星人","romVersion":23000,"notes":{"total":510,"tap":381,"hold":59,"slide":27,"touch":32,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10193,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":23000,"notes":{"total":776,"tap":634,"hold":24,"slide":52,"touch":35,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":193,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12008,"notes":{"total":157,"tap":118,"hold":15,"slide":12,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":193,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":12008,"notes":{"total":235,"tap":204,"hold":14,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":193,"level_id":2,"level":"11","level_value":11.0,"note_designer":"mai-Star","romVersion":12008,"notes":{"total":460,"tap":347,"hold":48,"slide":47,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":193,"level_id":3,"level":"13","level_value":13.3,"note_designer":"mai-Star","romVersion":12008,"notes":{"total":673,"tap":563,"hold":23,"slide":54,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":94,"long":false},{"id":194,"players":3142,"title":"放課後ストライド","utTitle":null,"artist":"Last Note.","albums":["放課後ストライド","放课后冲","放课后","放課後ストライド","放课后冲","放课后","放課後ストライド","放课后冲","放课后"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":225,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12004,"dxRomVersion":0,"sdRomVersion":12004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":194,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12004,"notes":{"total":183,"tap":141,"hold":23,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":194,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":12004,"notes":{"total":335,"tap":266,"hold":38,"slide":10,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":194,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":12004,"notes":{"total":557,"tap":443,"hold":39,"slide":21,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":194,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12004,"notes":{"total":708,"tap":429,"hold":28,"slide":205,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":636,"long":false},{"id":548,"players":7242,"title":"DETARAME ROCK&ROLL THEORY","utTitle":{"100548":"[疑]DETARAME ROCK&ROLL THEORY"},"artist":"箱部 なる(CV:M・A・O)","albums":["detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论","detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论","detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18008,"dxRomVersion":0,"sdRomVersion":18008,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":548,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18008,"notes":{"total":217,"tap":204,"hold":8,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":548,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":18008,"notes":{"total":428,"tap":369,"hold":23,"slide":18,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":548,"level_id":2,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":18008,"notes":{"total":619,"tap":459,"hold":117,"slide":15,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":548,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":18008,"notes":{"total":813,"tap":600,"hold":46,"slide":145,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100548":{"id":100548,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":663,"tap":475,"hold":16,"slide":150,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":170,"long":false},{"id":198,"players":8400,"title":"カゲロウデイズ","utTitle":null,"artist":"じん","albums":["カゲロウデイズ","车祸歌","阳炎眩乱","车祸曲","阳炎","车祸","カゲロウデイズ","车祸歌","阳炎眩乱","车祸曲","阳炎","车祸","カゲロウデイズ","车祸歌","阳炎眩乱","车祸曲","阳炎","车祸"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":198,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":147,"tap":120,"hold":12,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":198,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":12000,"notes":{"total":150,"tap":96,"hold":32,"slide":18,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":198,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":405,"tap":304,"hold":78,"slide":18,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":198,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":501,"tap":380,"hold":70,"slide":30,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":198,"level_id":4,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":876,"tap":688,"hold":8,"slide":169,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":760,"long":false},{"id":199,"players":9324,"title":"チルノのパーフェクトさんすう教室","utTitle":{"100199":"[蛸]チルノのパーフェクトさんすう教室"},"artist":"ARM+夕野ヨシミ(IOSYS)feat. miko","albums":["チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室","チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室","6a","koyomi","チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":175,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":199,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":122,"tap":84,"hold":30,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":199,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":12000,"notes":{"total":207,"tap":157,"hold":27,"slide":18,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":199,"level_id":2,"level":"10","level_value":10.4,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":364,"tap":248,"hold":86,"slide":26,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":199,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"某S氏","romVersion":12000,"notes":{"total":526,"tap":402,"hold":74,"slide":29,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100199":{"id":100199,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":309,"tap":58,"hold":217,"slide":27,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":96,"long":false},{"id":200,"players":15607,"title":"Bad Apple!! feat nomico","utTitle":null,"artist":"Masayoshi Minoshima","albums":["bad apple!! feat nomico","烂苹果","bdap","黑苹果","good huawei","黑白苹果","好华为","iphone","坏苹果","badapple","bad apple!! feat nomico","烂苹果","bdap","黑苹果","good huawei","黑白苹果","好华为","iphone","坏苹果","badapple","bad apple!! feat nomico","烂苹果","bdap","黑苹果","good huawei","黑白苹果","好华为","iphone","坏苹果","badapple","好安卓"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":138,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":200,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":145,"tap":127,"hold":7,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":200,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12000,"notes":{"total":265,"tap":245,"hold":5,"slide":4,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":200,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":448,"tap":376,"hold":47,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":200,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":590,"tap":453,"hold":67,"slide":34,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":200,"level_id":4,"level":"13","level_value":13.3,"note_designer":"合作だよ","romVersion":12000,"notes":{"total":698,"tap":515,"hold":34,"slide":114,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":793,"players":15532,"title":"ロキ","utTitle":{"110793":"[疑]ロキ"},"artist":"みきとP","albums":["ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰","ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰","ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":793,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19900,"notes":{"total":217,"tap":189,"hold":15,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":793,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19900,"notes":{"total":367,"tap":313,"hold":22,"slide":10,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":793,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":19900,"notes":{"total":496,"tap":355,"hold":61,"slide":63,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":793,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":19900,"notes":{"total":730,"tap":566,"hold":43,"slide":117,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":793,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19900,"notes":{"total":839,"tap":661,"hold":57,"slide":110,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110793":{"id":110793,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":669,"tap":459,"hold":20,"slide":150,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":720,"long":false},{"id":201,"players":4225,"title":"魔理沙は大変なものを盗んでいきました","utTitle":null,"artist":"ARM+夕野ヨシミ(IOSYS)feat. 藤咲かりん","albums":["魔理沙は大変なものを盗んでいきました","魔理沙","123123","魔理沙大变","魔理沙大变态","魔理沙痴","魔理沙偷走了重要的东西","大盗魔理沙","魔理沙偷走重要的东西","魔理沙大变盗","123","魔理沙は大変なものを盗んでいきました","魔理沙","123123","魔理沙大变","魔理沙大变态","魔理沙痴","魔理沙偷走了重要的东西","大盗魔理沙","魔理沙偷走重要的东西","魔理沙大变盗","123","魔理沙は大変なものを盗んでいきました","魔理沙","123123","魔理沙大变","魔理沙大变态","魔理沙痴","魔理沙偷走了重要的东西","大盗魔理沙","魔理沙偷走重要的东西","魔理沙大变盗","123"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":170,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":12002,"dxRomVersion":0,"sdRomVersion":12002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":201,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12002,"notes":{"total":189,"tap":175,"hold":5,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":201,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":12002,"notes":{"total":283,"tap":250,"hold":5,"slide":12,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":201,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":331,"tap":227,"hold":71,"slide":27,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":201,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":584,"tap":459,"hold":46,"slide":67,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":98,"long":false},{"id":202,"players":4782,"title":"Grip & Break down !!","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["grip & break down !!","grip","gbd","红魔馆内战","grip & break down !!","东方铁拳乡","grip & break down !!","grip","gbd","红魔馆内战","grip & break down !!","东方铁拳乡","grip & break down !!","grip","gbd","红魔馆内战","grip & break down !!","东方铁拳乡"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":23000,"sdRomVersion":12000,"utRomVersion":0,"dx":{"0":{"id":10202,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":224,"tap":170,"hold":19,"slide":3,"touch":7,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10202,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23000,"notes":{"total":353,"tap":275,"hold":14,"slide":21,"touch":27,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10202,"level_id":2,"level":"9","level_value":9.5,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":556,"tap":403,"hold":42,"slide":39,"touch":31,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10202,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Techno Kitchen","romVersion":23000,"notes":{"total":923,"tap":615,"hold":30,"slide":116,"touch":105,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":202,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":174,"tap":155,"hold":14,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":202,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":12000,"notes":{"total":344,"tap":300,"hold":28,"slide":11,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":202,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":421,"tap":375,"hold":16,"slide":22,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":202,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":718,"tap":563,"hold":41,"slide":88,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":573,"long":false},{"id":203,"players":4478,"title":"Help me, ERINNNNNN!!","utTitle":null,"artist":"ビートまりお(COOL&CREATE)","albums":["help me, erinnnnnn!!","erin","救我","帮我","帮帮我永琳姐","救救我","help me, erinnnnnn!!","erin","救我","帮我","帮帮我永琳姐","救救我","help me, erinnnnnn!!","erin","救我","帮我","帮帮我永琳姐","救救我"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":183,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12002,"dxRomVersion":0,"sdRomVersion":12002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":203,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12002,"notes":{"total":218,"tap":180,"hold":25,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":203,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":12002,"notes":{"total":241,"tap":201,"hold":20,"slide":18,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":203,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":412,"tap":276,"hold":61,"slide":60,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":203,"level_id":3,"level":"12","level_value":12.5,"note_designer":"譜面-100号","romVersion":12002,"notes":{"total":539,"tap":383,"hold":43,"slide":107,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2792,"long":false},{"id":204,"players":19001,"title":"ナイト・オブ・ナイツ","utTitle":null,"artist":"ビートまりお(COOL&CREATE)","albums":["ナイト・オブ・ナイツ","夜骑","dx标夜骑","night of knights","dx夜骑","幻梦","ナイト・オブ・ナイツ","夜骑","dx标夜骑","night of knights","dx夜骑","幻梦","ナイト・オブ・ナイツ","夜骑","dx标夜骑","night of knights","dx夜骑","幻梦"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":24001,"sdRomVersion":12000,"utRomVersion":0,"dx":{"0":{"id":10204,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24001,"notes":{"total":174,"tap":145,"hold":9,"slide":4,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10204,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24001,"notes":{"total":331,"tap":276,"hold":11,"slide":8,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10204,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"鳩ホルダー","romVersion":24001,"notes":{"total":548,"tap":393,"hold":43,"slide":18,"touch":36,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10204,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":708,"tap":487,"hold":28,"slide":137,"touch":27,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":204,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":135,"tap":120,"hold":9,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":204,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":12000,"notes":{"total":324,"tap":291,"hold":11,"slide":10,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":204,"level_id":2,"level":"12","level_value":12.0,"note_designer":"チャン@DP皆伝","romVersion":12000,"notes":{"total":563,"tap":488,"hold":16,"slide":14,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":204,"level_id":3,"level":"13","level_value":13.3,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":675,"tap":596,"hold":13,"slide":10,"touch":0,"break_":56},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":204,"level_id":4,"level":"14","level_value":14.4,"note_designer":"某S氏","romVersion":12000,"notes":{"total":1001,"tap":893,"hold":26,"slide":44,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":21,"long":false},{"id":205,"players":2222,"title":"全人類ノ非想天則","utTitle":null,"artist":"SOUND HOLIC feat. 匠眞","albums":["全人類ノ非想天則","全人类","非想天则","高达","全人类的非想天则","则","绯想天","全人类的飞上天","超级机器人","非想天則","全人類ノ非想天則","全人类","非想天则","高达","全人类的非想天则","则","绯想天","全人类的飞上天","超级机器人","非想天則","全人類ノ非想天則","全人类","非想天则","高达","全人类的非想天则","则","绯想天","全人类的飞上天","超级机器人","非想天則"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":168,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12004,"dxRomVersion":0,"sdRomVersion":12004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":205,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12004,"notes":{"total":160,"tap":128,"hold":22,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":205,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":12004,"notes":{"total":255,"tap":186,"hold":36,"slide":12,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":205,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"mai-Star","romVersion":12004,"notes":{"total":398,"tap":268,"hold":25,"slide":38,"touch":0,"break_":67},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":205,"level_id":3,"level":"13","level_value":13.2,"note_designer":"某S氏","romVersion":12004,"notes":{"total":586,"tap":421,"hold":48,"slide":58,"touch":0,"break_":59},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2323,"long":false},{"id":206,"players":3058,"title":"しゅわスパ大作戦☆","utTitle":{"100206":"[星]しゅわスパ大作戦☆"},"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战","しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战","しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12004,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":206,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12004,"notes":{"total":166,"tap":115,"hold":28,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":206,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12004,"notes":{"total":264,"tap":191,"hold":36,"slide":18,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":206,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":12004,"notes":{"total":368,"tap":271,"hold":40,"slide":51,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":206,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":12004,"notes":{"total":553,"tap":391,"hold":54,"slide":81,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100206":{"id":100206,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":574,"tap":405,"hold":54,"slide":81,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":1026,"long":false},{"id":207,"players":2086,"title":"時空を超えて久しぶり!","utTitle":null,"artist":"アルル(CV 園崎未恵)「ぷよぷよ」","albums":["時空を超えて久しぶり!","噗哟噗哟","时空超","puyopuyo","时空","3d弹球","噗呦噗呦","3d弹珠","水滴君","時空を超えて久しぶり!","噗哟噗哟","时空超","puyopuyo","时空","3d弹球","噗呦噗呦","3d弹珠","水滴君","時空を超えて久しぶり!","噗哟噗哟","时空超","puyopuyo","时空","3d弹球","噗呦噗呦","3d弹珠","水滴君"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":145,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":207,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":88,"tap":60,"hold":15,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":207,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":12000,"notes":{"total":215,"tap":165,"hold":21,"slide":17,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":207,"level_id":2,"level":"10","level_value":10.3,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":267,"tap":182,"hold":28,"slide":51,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":207,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":431,"tap":333,"hold":40,"slide":49,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":208,"players":1986,"title":"Her Dream Is To Be A Fantastic Sorceress","utTitle":null,"artist":"アミティ(CV 菊池志穂)「ぷよぷよ」","albums":["her dream is to be a fantastic sorceress","她的梦想是成为一名出色的女巫","her dream is to be a fantastic sorceress","她的梦想是成为一名出色的女巫","her dream is to be a fantastic sorceress","她的梦想是成为一名出色的女巫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":208,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":12000,"notes":{"total":62,"tap":42,"hold":16,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":208,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12000,"notes":{"total":135,"tap":90,"hold":26,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":208,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":267,"tap":151,"hold":73,"slide":39,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":208,"level_id":3,"level":"12","level_value":12.0,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":235,"tap":88,"hold":112,"slide":28,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":209,"players":2487,"title":"ココロスキャンのうた","utTitle":null,"artist":"ササキトモコ「音声感情測定器ココロスキャン」","albums":["ココロスキャンのうた","心灵扫描歌","音声感情测定器","migo","捂裆男","白色小人","三千","长梦不醒","少林捂裆功","飞行家","捂裆歌","武当派","捂裆派","ココロスキャンのうた","心灵扫描歌","音声感情测定器","migo","捂裆男","白色小人","三千","长梦不醒","少林捂裆功","飞行家","捂裆歌","武当派","捂裆派","ココロスキャンのうた","心灵扫描歌","音声感情测定器","migo","捂裆男","白色小人","三千","长梦不醒","少林捂裆功","飞行家","捂裆歌","武当派","捂裆派"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":203,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12001,"dxRomVersion":0,"sdRomVersion":12001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":209,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12001,"notes":{"total":142,"tap":113,"hold":22,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":209,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12001,"notes":{"total":247,"tap":207,"hold":21,"slide":12,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":209,"level_id":2,"level":"11","level_value":11.3,"note_designer":"mai-Star","romVersion":12001,"notes":{"total":468,"tap":371,"hold":53,"slide":22,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":209,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ニャイン","romVersion":12001,"notes":{"total":624,"tap":510,"hold":56,"slide":42,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":212,"players":3010,"title":"神室雪月花","utTitle":null,"artist":"桐生 一馬「龍が如く」","albums":["神室雪月花","如龙","雪月花","别急4","神室雪月花","如龙","雪月花","别急4","神室雪月花","如龙","雪月花","别急4"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":86,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":212,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":12000,"notes":{"total":67,"tap":58,"hold":4,"slide":4,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":212,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":12000,"notes":{"total":108,"tap":73,"hold":22,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":212,"level_id":2,"level":"12","level_value":12.2,"note_designer":"合作だよ","romVersion":12000,"notes":{"total":123,"tap":74,"hold":21,"slide":27,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":212,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":236,"tap":160,"hold":21,"slide":36,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":213,"players":2372,"title":"KONNANじゃないっ!","utTitle":null,"artist":"澤村 遥「龍が如く5 夢、叶えし者」","albums":["konnanじゃないっ!","美腿","如龙5","不该是这样","才不是这样!","泽村遥","柯南","konnan","konnanじゃないっ!","美腿","如龙5","不该是这样","才不是这样!","泽村遥","柯南","konnan","konnanじゃないっ!","美腿","如龙5","不该是这样","才不是这样!","泽村遥","柯南","konnan"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":213,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":130,"tap":109,"hold":4,"slide":13,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":213,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12000,"notes":{"total":216,"tap":171,"hold":16,"slide":11,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":213,"level_id":2,"level":"9","level_value":9.0,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":314,"tap":245,"hold":33,"slide":17,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":213,"level_id":3,"level":"13","level_value":13.4,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":492,"tap":370,"hold":33,"slide":69,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":214,"players":1838,"title":"awake","utTitle":null,"artist":"下田麻美「Shining・Force CROSS ELYSION」","albums":["awake","醒了","起了","awake","醒了","起了","awake","醒了","起了"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":214,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":96,"tap":75,"hold":14,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":214,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":12000,"notes":{"total":145,"tap":92,"hold":34,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":214,"level_id":2,"level":"9","level_value":9.3,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":225,"tap":163,"hold":36,"slide":16,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":214,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":391,"tap":284,"hold":29,"slide":65,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":216,"players":3332,"title":"Mysterious Destiny","utTitle":null,"artist":"「BAYONETTA(ベヨネッタ)」","albums":["mysterious destiny","神秘命运","贝姐","猎天使魔女","md","mysterious destiny","神秘命运","贝姐","猎天使魔女","md","mysterious destiny","神秘命运","贝姐","猎天使魔女","md"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12001,"dxRomVersion":0,"sdRomVersion":12001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":216,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12001,"notes":{"total":115,"tap":86,"hold":24,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":216,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12001,"notes":{"total":230,"tap":193,"hold":21,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":216,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":12001,"notes":{"total":454,"tap":337,"hold":61,"slide":50,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":216,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12001,"notes":{"total":372,"tap":185,"hold":0,"slide":185,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":217,"players":1807,"title":"Riders Of The Light","utTitle":null,"artist":"「BAYONETTA(ベヨネッタ)」","albums":["riders of the light","坂本","光骑","光之骑士","riders of the light","坂本","光骑","光之骑士","riders of the light","坂本","光骑","光之骑士"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":143,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12001,"dxRomVersion":0,"sdRomVersion":12001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":217,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12001,"notes":{"total":107,"tap":84,"hold":6,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":217,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":12001,"notes":{"total":242,"tap":212,"hold":22,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":217,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":12001,"notes":{"total":383,"tap":276,"hold":77,"slide":28,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":217,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ニャイン","romVersion":12001,"notes":{"total":428,"tap":284,"hold":75,"slide":45,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":218,"players":2077,"title":"Terminal Storm","utTitle":null,"artist":"三草康二郎「CODE OF JOKER」","albums":["terminal storm","终端风暴","麻花","terminal storm","终端风暴","麻花","terminal storm","终端风暴","麻花"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":218,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":93,"tap":73,"hold":12,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":218,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":12000,"notes":{"total":171,"tap":127,"hold":33,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":218,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":390,"tap":308,"hold":54,"slide":23,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":218,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":483,"tap":375,"hold":28,"slide":48,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":219,"players":4993,"title":"記憶、記録","utTitle":null,"artist":"LOPIT(SEGA)","albums":["記憶、記録","lopit","恐怖谷","爆裂鼓手","记忆记录","菜头","命脉","记忆纪录","記憶、記録","lopit","恐怖谷","爆裂鼓手","记忆记录","菜头","命脉","记忆纪录","苏文弢打鼓","記憶、記録","lopit","恐怖谷","爆裂鼓手","记忆记录","菜头","命脉","记忆纪录","敲锣打鼓"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":219,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":123,"tap":88,"hold":23,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":219,"level_id":1,"level":"9","level_value":9.2,"note_designer":"-","romVersion":12000,"notes":{"total":427,"tap":381,"hold":37,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":219,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":473,"tap":412,"hold":26,"slide":23,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":219,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":651,"tap":461,"hold":27,"slide":76,"touch":0,"break_":87},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":219,"level_id":4,"level":"14","level_value":14.3,"note_designer":"シチミヘルツ","romVersion":12000,"notes":{"total":752,"tap":567,"hold":20,"slide":66,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":220,"players":3328,"title":"セガサターン起動音[H.][Remix]","utTitle":{"100220":"[宴]セガサターン起動音[H.][Remix]"},"artist":"Hiro","albums":["セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","夸脱","mon3tr"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":148,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12006,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":220,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":12006,"notes":{"total":60,"tap":42,"hold":10,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":220,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":12006,"notes":{"total":166,"tap":137,"hold":10,"slide":10,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":220,"level_id":2,"level":"11","level_value":11.1,"note_designer":"mai-Star","romVersion":12006,"notes":{"total":256,"tap":192,"hold":37,"slide":14,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":220,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":368,"tap":271,"hold":4,"slide":72,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100220":{"id":100220,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":950,"tap":904,"hold":0,"slide":2,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2450,"long":false},{"id":223,"players":5196,"title":"夜咄ディセイブ","utTitle":null,"artist":"じん","albums":["夜咄ディセイブ","夜咄deceive","kano角色歌","夜出","夜谈欺骗","夜咄","夜咄ディセイブ","夜咄deceive","kano角色歌","夜出","夜谈欺骗","夜咄","夜咄ディセイブ","夜咄deceive","kano角色歌","夜出","夜谈欺骗","夜咄"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":260,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12002,"dxRomVersion":0,"sdRomVersion":12002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":223,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12002,"notes":{"total":147,"tap":114,"hold":21,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":223,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":12002,"notes":{"total":276,"tap":228,"hold":35,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":223,"level_id":2,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":436,"tap":336,"hold":65,"slide":17,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":223,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":635,"tap":462,"hold":23,"slide":136,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":240,"long":false},{"id":224,"players":3882,"title":"ウサテイ","utTitle":null,"artist":"あまね+ビートまりお(COOL&CREATE)","albums":["ウサテイ","帝帝跑跑跑","石门快乐歌","因幡帝","\uD83D\uDC07","乌撒","兔子跑","兔子快跑","小老帝","兔子","ウサテイ","帝帝跑跑跑","石门快乐歌","因幡帝","\uD83D\uDC07","乌撒","兔子跑","兔子快跑","小老帝","兔子","铃仙追杀小老帝","ウサテイ","帝帝跑跑跑","石门快乐歌","因幡帝","\uD83D\uDC07","乌撒","兔子跑","兔子快跑","小老帝","兔子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12002,"dxRomVersion":0,"sdRomVersion":12002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":224,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12002,"notes":{"total":159,"tap":137,"hold":8,"slide":4,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":224,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12002,"notes":{"total":269,"tap":224,"hold":28,"slide":12,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":224,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":12002,"notes":{"total":465,"tap":406,"hold":42,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":224,"level_id":3,"level":"14","level_value":14.0,"note_designer":"はっぴー","romVersion":12002,"notes":{"total":646,"tap":549,"hold":16,"slide":65,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":604,"long":false},{"id":225,"players":5141,"title":"sweet little sister","utTitle":null,"artist":"Silver Forest","albums":["sweet little sister","甜小姐姐","小甜妹","sls","甜二妹","sweet little sister","甜小姐姐","小甜妹","sls","甜二妹","sweet little sister","甜小姐姐","小甜妹","sls","甜二妹"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":168,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":25004,"sdRomVersion":13000,"utRomVersion":0,"dx":{"0":{"id":10225,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":204,"tap":180,"hold":11,"slide":2,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10225,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25004,"notes":{"total":309,"tap":264,"hold":16,"slide":13,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10225,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Luxizhel","romVersion":25004,"notes":{"total":474,"tap":390,"hold":27,"slide":27,"touch":13,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10225,"level_id":3,"level":"13","level_value":13.4,"note_designer":"じゃこレモン","romVersion":25004,"notes":{"total":777,"tap":520,"hold":29,"slide":141,"touch":21,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":225,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":180,"tap":163,"hold":5,"slide":5,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":225,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":13000,"notes":{"total":310,"tap":263,"hold":29,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":225,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"某S氏","romVersion":13000,"notes":{"total":433,"tap":315,"hold":43,"slide":61,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":225,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":617,"tap":451,"hold":41,"slide":95,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":41,"long":false},{"id":226,"players":5636,"title":"Blew Moon","utTitle":null,"artist":"t+pazolite","albums":["blew moon","吹月亮","哇哇哇哇哇哇耶耶耶","\uD83C\uDF19","蓝月亮","吹月","blew shit","blew moon","吹月亮","哇哇哇哇哇哇耶耶耶","\uD83C\uDF19","蓝月亮","吹月","blew shit","blew moon","吹月亮","哇哇哇哇哇哇耶耶耶","\uD83C\uDF19","蓝月亮","吹月","blew shit"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":226,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":208,"tap":165,"hold":30,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":226,"level_id":1,"level":"9","level_value":9.2,"note_designer":"-","romVersion":12000,"notes":{"total":485,"tap":450,"hold":17,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":226,"level_id":2,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":495,"tap":386,"hold":79,"slide":15,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":226,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":608,"tap":459,"hold":50,"slide":39,"touch":0,"break_":60},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":226,"level_id":4,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":787,"tap":593,"hold":47,"slide":122,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":228,"players":1939,"title":"Dreampainter","utTitle":null,"artist":"Sta feat.tigerlily and DOT96","albums":["dreampainter","绘梦者","sta金曲","梦境绘画者","\uD83C\uDFA9","dreampainter","绘梦者","sta金曲","梦境绘画者","\uD83C\uDFA9","dreampainter","绘梦者","sta金曲","梦境绘画者","\uD83C\uDFA9"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":136,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14001,"dxRomVersion":0,"sdRomVersion":14001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":228,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14001,"notes":{"total":124,"tap":106,"hold":9,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":228,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":14001,"notes":{"total":316,"tap":280,"hold":24,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":228,"level_id":2,"level":"11","level_value":11.1,"note_designer":"某S氏","romVersion":14001,"notes":{"total":353,"tap":250,"hold":71,"slide":24,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":228,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":14001,"notes":{"total":469,"tap":336,"hold":29,"slide":99,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":229,"players":5240,"title":"ぐるぐるWASH!コインランドリー・ディスコ","utTitle":null,"artist":"D.watt(IOSYS)feat.ちよこ","albums":["ぐるぐるwash!コインランドリー・ディスコ","咕噜咕噜","屏幕清洁工","suomi","咕噜咕噜wash","洗衣机","檄代主题曲","滚筒洗衣机","洗衣房","ぐるぐるwash!コインランドリー・ディスコ","咕噜咕噜","屏幕清洁工","suomi","咕噜咕噜wash","洗衣机","檄代主题曲","滚筒洗衣机","洗衣房","洗衣机前跳舞","ぐるぐるwash!コインランドリー・ディスコ","咕噜咕噜","屏幕清洁工","suomi","咕噜咕噜wash","洗衣机","檄代主题曲","滚筒洗衣机","洗衣房"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":229,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":148,"tap":138,"hold":5,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":229,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":13000,"notes":{"total":202,"tap":144,"hold":29,"slide":22,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":229,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":309,"tap":227,"hold":12,"slide":59,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":229,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"譜面-100号","romVersion":13000,"notes":{"total":383,"tap":218,"hold":21,"slide":116,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":230,"players":6379,"title":"CYCLES","utTitle":{"100230":"[宴]CYCLES"},"artist":"Masayoshi Minoshima feat. 綾倉盟","albums":["cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路","cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路","cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":135,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":230,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":13003,"notes":{"total":187,"tap":143,"hold":31,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":230,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":13003,"notes":{"total":299,"tap":244,"hold":32,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":230,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":366,"tap":230,"hold":19,"slide":97,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":230,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":13003,"notes":{"total":496,"tap":252,"hold":8,"slide":217,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100230":{"id":100230,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":780,"tap":357,"hold":0,"slide":361,"touch":0,"break_":62},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":715,"long":false},{"id":231,"players":2590,"title":"Heartbeats","utTitle":null,"artist":"RAMM feat. 若井友希","albums":["heartbeats","心跳","小红金曲","heartbeats","心跳","小红金曲","heartbeats","心跳","小红金曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13003,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":231,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13003,"notes":{"total":158,"tap":125,"hold":24,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":231,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":13003,"notes":{"total":311,"tap":253,"hold":15,"slide":30,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":231,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":13003,"notes":{"total":420,"tap":330,"hold":22,"slide":62,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":231,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":532,"tap":412,"hold":29,"slide":61,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":232,"players":2886,"title":"Life Feels Good","utTitle":null,"artist":"Cranky","albums":["life feels good","感觉很好","生活真美好","生活感觉好","生活好","好日子","真快活","倍儿爽","lfg","life feels good","感觉很好","生活真美好","生活感觉好","生活好","好日子","真快活","倍儿爽","lfg","life feels good","感觉很好","生活真美好","生活感觉好","生活好","好日子","真快活","倍儿爽","lfg"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13003,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":232,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13003,"notes":{"total":177,"tap":158,"hold":10,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":232,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":13003,"notes":{"total":346,"tap":288,"hold":23,"slide":18,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":232,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":562,"tap":466,"hold":29,"slide":31,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":232,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":13003,"notes":{"total":693,"tap":594,"hold":17,"slide":72,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":233,"players":3900,"title":"MYTHOS","utTitle":null,"artist":"Cranky feat. まらしぃ & てっぺい先生","albums":["mythos","卖淫团伙原神","神话","233","小提琴","卖骚死","\uD83C\uDFBB","卖银团伙原神","mythos","卖淫团伙原神","神话","233","小提琴","卖骚死","\uD83C\uDFBB","卖银团伙原神","mythos","卖淫团伙原神","神话","233","小提琴","卖骚死","\uD83C\uDFBB","卖银团伙原神"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":158,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13003,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":233,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13003,"notes":{"total":152,"tap":116,"hold":12,"slide":15,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":233,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":13003,"notes":{"total":269,"tap":225,"hold":19,"slide":12,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":233,"level_id":2,"level":"12","level_value":12.2,"note_designer":"合作だよ","romVersion":13003,"notes":{"total":462,"tap":354,"hold":14,"slide":60,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":233,"level_id":3,"level":"14","level_value":14.4,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":735,"tap":633,"hold":6,"slide":80,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":234,"players":2251,"title":"End of Twilight","utTitle":null,"artist":"ALiCE'S EMOTiON feat. Ayumi Nomiya","albums":["end of twilight","摩天楼","夜之城","暮色","暮光终结","\uD83C\uDF03","暮色终结","end of twilight","摩天楼","夜之城","暮色","暮光终结","\uD83C\uDF03","暮色终结","汤圆","end of twilight","摩天楼","夜之城","暮色","暮光终结","\uD83C\uDF03","暮色终结"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13003,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":234,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13003,"notes":{"total":177,"tap":155,"hold":11,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":234,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":13003,"notes":{"total":290,"tap":233,"hold":19,"slide":25,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":234,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":490,"tap":385,"hold":43,"slide":43,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":234,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":13003,"notes":{"total":584,"tap":458,"hold":33,"slide":83,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":235,"players":6713,"title":"火炎地獄","utTitle":null,"artist":"山根ミチル","albums":["火炎地獄","dx地狱","天虹","光谷世界城","火炎地狱","dx火炎","dx火焰地狱","dx火炎地狱","火炎地獄","dx地狱","天虹","光谷世界城","火炎地狱","dx火炎","dx火焰地狱","dx火炎地狱","火炎地獄","dx地狱","天虹","光谷世界城","火炎地狱","dx火炎","dx火焰地狱","dx火炎地狱"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":216,"releaseDate":"20221007","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":13006,"dxRomVersion":23006,"sdRomVersion":13006,"utRomVersion":0,"dx":{"0":{"id":10235,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":23006,"notes":{"total":148,"tap":107,"hold":7,"slide":13,"touch":10,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10235,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":23006,"notes":{"total":252,"tap":193,"hold":16,"slide":13,"touch":12,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10235,"level_id":2,"level":"12","level_value":12.5,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":543,"tap":389,"hold":63,"slide":42,"touch":22,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10235,"level_id":3,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":23006,"notes":{"total":824,"tap":356,"hold":17,"slide":72,"touch":309,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":235,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13006,"notes":{"total":104,"tap":81,"hold":7,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":235,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":13006,"notes":{"total":347,"tap":315,"hold":10,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":235,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"某S氏","romVersion":13006,"notes":{"total":442,"tap":323,"hold":51,"slide":50,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":235,"level_id":3,"level":"14","level_value":14.1,"note_designer":"mai-Star","romVersion":13006,"notes":{"total":685,"tap":457,"hold":26,"slide":140,"touch":0,"break_":62},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":236,"players":3050,"title":"ユビキリ","utTitle":null,"artist":"山根ミチル","albums":["ユビキリ","拉勾勾","勾指起誓","xql","舞萌爱情故事","勾手指","拉勾","ユビキリ","拉勾勾","勾指起誓","xql","舞萌爱情故事","勾手指","拉勾","ユビキリ","拉勾勾","勾指起誓","xql","舞萌爱情故事","勾手指","拉勾"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":174,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18599,"dxRomVersion":0,"sdRomVersion":18599,"utRomVersion":0,"dx":{},"sd":{"0":{"id":236,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18599,"notes":{"total":176,"tap":162,"hold":2,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":236,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18599,"notes":{"total":368,"tap":294,"hold":38,"slide":26,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":236,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"rioN","romVersion":18599,"notes":{"total":529,"tap":376,"hold":55,"slide":88,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":236,"level_id":3,"level":"13","level_value":13.3,"note_designer":"原田ひろゆき","romVersion":18599,"notes":{"total":642,"tap":396,"hold":13,"slide":195,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":237,"players":2030,"title":"Pixel Voyage","utTitle":null,"artist":"YMCK","albums":["pixel voyage","飞机","小飞机","像素旅行","pixel voyage","飞机","小飞机","像素旅行","pixel voyage","飞机","小飞机","像素旅行"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":237,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":118,"tap":86,"hold":23,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":237,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12000,"notes":{"total":217,"tap":189,"hold":7,"slide":19,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":237,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":294,"tap":204,"hold":66,"slide":17,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":237,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"某S氏","romVersion":12000,"notes":{"total":485,"tap":321,"hold":88,"slide":57,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":238,"players":2991,"title":"Get Happy","utTitle":null,"artist":"Jimmy Weckl","albums":["get happy","系统g","小系统z","给他哈皮","得到开心","得乐","get happy","系统g","小系统z","给他哈皮","得到开心","得乐","get happy","系统g","小系统z","给他哈皮","得到开心","得乐","水果沙拉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":238,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":162,"tap":118,"hold":34,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":238,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":12000,"notes":{"total":272,"tap":239,"hold":2,"slide":16,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":238,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":547,"tap":487,"hold":33,"slide":25,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":238,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"合作だよ","romVersion":12000,"notes":{"total":680,"tap":533,"hold":45,"slide":60,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":239,"players":5671,"title":"System “Z”","utTitle":null,"artist":"Jimmy Weckl","albums":["system “z”","zyf","系统贼","麦乐鸡","小系","\uD83E\uDD57","蔬菜沙拉","系统z","z","沙拉","system “z”","zyf","系统贼","麦乐鸡","小系","\uD83E\uDD57","蔬菜沙拉","系统z","z","沙拉","system “z”","zyf","系统贼","麦乐鸡","小系","\uD83E\uDD57","蔬菜沙拉","系统z","z","沙拉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":147,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12005,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":239,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":142,"tap":101,"hold":23,"slide":16,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":239,"level_id":1,"level":"9","level_value":9.1,"note_designer":"-","romVersion":12005,"notes":{"total":249,"tap":204,"hold":22,"slide":17,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":239,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"譜面-100号","romVersion":12005,"notes":{"total":507,"tap":447,"hold":23,"slide":30,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":239,"level_id":3,"level":"14","level_value":14.4,"note_designer":"合作だよ","romVersion":12005,"notes":{"total":777,"tap":626,"hold":17,"slide":128,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":239,"level_id":4,"level":"14","level_value":14.0,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":753,"tap":603,"hold":15,"slide":130,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":240,"players":4930,"title":"Beat of getting entangled","utTitle":null,"artist":"Shoichiro Hirata","albums":["beat of getting entangled","boge","一坨蓝","别急13","❓","胡辣汤","beat of getting entangled","boge","一坨蓝","别急13","❓","胡辣汤","beat of getting entangled","boge","一坨蓝","别急13","❓","胡辣汤"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":240,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":146,"tap":115,"hold":15,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":240,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":12000,"notes":{"total":374,"tap":323,"hold":34,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":240,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":490,"tap":349,"hold":109,"slide":19,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":240,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":586,"tap":413,"hold":81,"slide":43,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":240,"level_id":4,"level":"14","level_value":14.5,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":857,"tap":692,"hold":58,"slide":79,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":241,"players":4465,"title":"Cosmic Train","utTitle":null,"artist":"Shoichiro Hirata feat.SUIMI","albums":["cosmic train","星穹列车","green主题曲","小星穹铁道","地铁","星穹铁道","星空列车","ct","超代主题曲","宇宙列车","cosmic train","星穹列车","green主题曲","小星穹铁道","地铁","星穹铁道","星空列车","ct","超代主题曲","宇宙列车","cosmic train","星穹列车","green主题曲","小星穹铁道","地铁","星穹铁道","星空列车","ct","超代主题曲","宇宙列车"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":130,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":241,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":120,"tap":98,"hold":10,"slide":9,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":241,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":12000,"notes":{"total":217,"tap":199,"hold":0,"slide":16,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":241,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":362,"tap":283,"hold":38,"slide":30,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":241,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":417,"tap":200,"hold":91,"slide":117,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":242,"players":8004,"title":"ナミダと流星","utTitle":null,"artist":"芳川よしの","albums":["ナミダと流星","眼泪流星","泪与流星","dx流星","流星","眼泪与流星","ナミダと流星","眼泪流星","泪与流星","dx流星","流星","眼泪与流星","ナミダと流星","眼泪流星","泪与流星","dx流星","流星","眼泪与流星"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20231124","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":24005,"sdRomVersion":15000,"utRomVersion":0,"dx":{"0":{"id":10242,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":24005,"notes":{"total":197,"tap":169,"hold":15,"slide":3,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10242,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":24005,"notes":{"total":285,"tap":216,"hold":34,"slide":9,"touch":22,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10242,"level_id":2,"level":"11","level_value":11.0,"note_designer":"みそかつ侍","romVersion":24005,"notes":{"total":495,"tap":349,"hold":59,"slide":44,"touch":9,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10242,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":24005,"notes":{"total":678,"tap":475,"hold":39,"slide":126,"touch":18,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":242,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15000,"notes":{"total":139,"tap":121,"hold":11,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":242,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":15000,"notes":{"total":326,"tap":279,"hold":26,"slide":13,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":242,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Revo@LC","romVersion":15000,"notes":{"total":429,"tap":346,"hold":43,"slide":36,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":242,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":15000,"notes":{"total":517,"tap":312,"hold":50,"slide":150,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":244,"players":2270,"title":"おても☆Yan","utTitle":null,"artist":"光吉猛修","albums":["おても☆yan","双押跳拍","刀锋女王","陕北民歌","山歌","阿铁摸鸭","日本民歌","yan","阿铁摸呀","\uD83D\uDE03","\uD83D\uDE03\uD83D\uDC4D","烟","おても","おても☆yan","双押跳拍","刀锋女王","陕北民歌","山歌","阿铁摸鸭","日本民歌","yan","阿铁摸呀","\uD83D\uDE03","\uD83D\uDE03\uD83D\uDC4D","烟","おても","おても☆yan","双押跳拍","刀锋女王","陕北民歌","山歌","阿铁摸鸭","日本民歌","yan","阿铁摸呀","\uD83D\uDE03","\uD83D\uDE03\uD83D\uDC4D","烟","おても"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":90,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14009,"dxRomVersion":0,"sdRomVersion":14009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":244,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14009,"notes":{"total":125,"tap":105,"hold":8,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":244,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":14009,"notes":{"total":283,"tap":252,"hold":8,"slide":12,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":244,"level_id":2,"level":"10","level_value":10.5,"note_designer":"rioN","romVersion":14009,"notes":{"total":374,"tap":301,"hold":50,"slide":10,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":244,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"譜面-100号","romVersion":14009,"notes":{"total":529,"tap":429,"hold":58,"slide":13,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":246,"players":2117,"title":"maiム・maiム feat.週刊少年マガジン","utTitle":null,"artist":"にしもと先生、タクマ、どんちゃん「ちょっと盛りました。」","albums":["maiム・maiム feat.週刊少年マガジン","啦啦啦啦啦","周刊少年","两男一女","功夫","maiム・maiム feat.週刊少年マガジン","啦啦啦啦啦","周刊少年","两男一女","功夫","maiム・maiム feat.週刊少年マガジン","啦啦啦啦啦","周刊少年","两男一女","功夫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":246,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":138,"tap":98,"hold":18,"slide":18,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":246,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":12000,"notes":{"total":326,"tap":262,"hold":29,"slide":12,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":246,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":562,"tap":446,"hold":34,"slide":29,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":246,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":684,"tap":497,"hold":12,"slide":103,"touch":0,"break_":72},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":247,"players":3153,"title":"Danza zandA","utTitle":null,"artist":"福山光晴","albums":["danza zanda","万达","小号歌","蛋砸","danza","蛋砸砸蛋","砸蛋","danza zanda","万达","小号歌","蛋砸","danza","蛋砸砸蛋","砸蛋","danza zanda","万达","小号歌","蛋砸","danza","蛋砸砸蛋","砸蛋"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":129,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13010,"dxRomVersion":0,"sdRomVersion":13010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":247,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13010,"notes":{"total":150,"tap":125,"hold":16,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":247,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":13010,"notes":{"total":241,"tap":202,"hold":23,"slide":13,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":247,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Techno Kitchen","romVersion":13010,"notes":{"total":406,"tap":335,"hold":29,"slide":32,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":247,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":13010,"notes":{"total":638,"tap":530,"hold":23,"slide":58,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":247,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Techno Kitchen","romVersion":13010,"notes":{"total":615,"tap":438,"hold":50,"slide":73,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":248,"players":3187,"title":"Backyun! -悪い女-","utTitle":null,"artist":"青木千紘/愛海","albums":["backyun! -悪い女-","恶女","妖艳魔女","我异域了","坏女人","恶之女","backyun! -悪い女-","恶女","妖艳魔女","我异域了","坏女人","恶之女","backyun! -悪い女-","恶女","妖艳魔女","我异域了","坏女人","恶之女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":248,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":125,"tap":106,"hold":9,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":248,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12000,"notes":{"total":261,"tap":222,"hold":3,"slide":10,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":248,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":357,"tap":278,"hold":35,"slide":40,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":248,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":451,"tap":349,"hold":35,"slide":41,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":248,"level_id":4,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":12000,"notes":{"total":559,"tap":396,"hold":42,"slide":90,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":251,"players":3329,"title":"Monochrome Rainbow","utTitle":null,"artist":"Sta","albums":["monochrome rainbow","黑白彩虹","\uD83D\uDE0E","dx单色彩虹","dx黑白彩虹","monochrome rainbow","黑白彩虹","\uD83D\uDE0E","dx单色彩虹","dx黑白彩虹","monochrome rainbow","黑白彩虹","\uD83D\uDE0E","dx单色彩虹","dx黑白彩虹"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":24002,"sdRomVersion":13000,"utRomVersion":0,"dx":{"0":{"id":10251,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":24002,"notes":{"total":145,"tap":121,"hold":7,"slide":6,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10251,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":24002,"notes":{"total":284,"tap":220,"hold":24,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10251,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":24002,"notes":{"total":421,"tap":306,"hold":61,"slide":25,"touch":14,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10251,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":24002,"notes":{"total":658,"tap":455,"hold":44,"slide":77,"touch":66,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":251,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13000,"notes":{"total":103,"tap":87,"hold":10,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":251,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":13000,"notes":{"total":268,"tap":244,"hold":11,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":251,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":386,"tap":329,"hold":18,"slide":33,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":251,"level_id":3,"level":"13","level_value":13.0,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":500,"tap":396,"hold":12,"slide":76,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":252,"players":4395,"title":"みんなのマイマイマー","utTitle":null,"artist":"ビートまりお(COOL&CREATE)+ ARM(IOSYS)","albums":["みんなのマイマイマー","大家的maimai","大家的maimai人","大家的妈妈","\uD83C\uDF65​","\uD83C\uDF65","maimai","大家的maimai吗","みんなのマイマイマー","大家的maimai","大家的maimai人","大家的妈妈","\uD83C\uDF65​","\uD83C\uDF65","maimai","大家的maimai吗","みんなのマイマイマー","大家的maimai","大家的maimai人","大家的妈妈","\uD83C\uDF65​","\uD83C\uDF65","maimai","大家的maimai吗"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":252,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":144,"tap":109,"hold":22,"slide":2,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":252,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":12000,"notes":{"total":380,"tap":350,"hold":3,"slide":14,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":252,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":436,"tap":314,"hold":56,"slide":45,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":252,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":625,"tap":438,"hold":59,"slide":30,"touch":0,"break_":98},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":252,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"みんなでマイマイマー","romVersion":12000,"notes":{"total":750,"tap":458,"hold":28,"slide":164,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":253,"players":2075,"title":"円舞曲、君に","utTitle":null,"artist":"「サクラ大戦奏組」","albums":["円舞曲、君に","舞曲","圆舞曲","円舞曲、君に","舞曲","圆舞曲","円舞曲、君に","舞曲","圆舞曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":128,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":253,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":104,"tap":77,"hold":21,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":253,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":12000,"notes":{"total":132,"tap":83,"hold":35,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":253,"level_id":2,"level":"11","level_value":11.3,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":272,"tap":179,"hold":58,"slide":21,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":253,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":394,"tap":293,"hold":47,"slide":48,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":254,"players":1908,"title":"Live & Learn","utTitle":null,"artist":"Crush 40「ソニックアドベンチャー2」","albums":["live & learn","sa2","索尼克大冒险2","活和学","开心超人","live & learn","sa2","索尼克大冒险2","活和学","开心超人","live & learn","sa2","索尼克大冒险2","活和学","开心超人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":172,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13010,"dxRomVersion":0,"sdRomVersion":13010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":254,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13010,"notes":{"total":128,"tap":98,"hold":18,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":254,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13010,"notes":{"total":255,"tap":212,"hold":19,"slide":18,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":254,"level_id":2,"level":"11","level_value":11.3,"note_designer":"Jack","romVersion":13010,"notes":{"total":443,"tap":327,"hold":51,"slide":44,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":254,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Techno Kitchen","romVersion":13010,"notes":{"total":660,"tap":484,"hold":39,"slide":62,"touch":0,"break_":75},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":255,"players":2997,"title":"Burning Hearts ~炎のANGEL~","utTitle":null,"artist":"幡谷尚史 Arranged by SEGA Sound Unit [H.]「バーニングレンジャー」","albums":["burning hearts ~炎のangel~","炎天使","br","阳炎","烧心","burning hearts ~炎のangel~","炎天使","br","阳炎","烧心","burning hearts ~炎のangel~","炎天使","br","阳炎","烧心"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":255,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12000,"notes":{"total":129,"tap":98,"hold":17,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":255,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":12000,"notes":{"total":249,"tap":189,"hold":24,"slide":30,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":255,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":290,"tap":189,"hold":53,"slide":17,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":255,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":12000,"notes":{"total":407,"tap":309,"hold":53,"slide":19,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":255,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":557,"tap":372,"hold":37,"slide":98,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":483,"long":false},{"id":256,"players":6594,"title":"いーあるふぁんくらぶ","utTitle":null,"artist":"みきとP","albums":["いーあるふぁんくらぶ","烟雾列车","12","中日友好歌","12fan","fanclub","dx王力宏","王力宏","一二俱乐部","熊猫头","12fanclub","周杰伦","一二粉丝俱乐部","いーあるふぁんくらぶ","烟雾列车","12","中日友好歌","12fan","fanclub","dx王力宏","王力宏","一二俱乐部","熊猫头","12fanclub","周杰伦","一二粉丝俱乐部","いーあるふぁんくらぶ","烟雾列车","12","中日友好歌","12fan","fanclub","dx王力宏","王力宏","一二俱乐部","熊猫头","12fanclub","周杰伦","一二粉丝俱乐部"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":20000,"sdRomVersion":12000,"utRomVersion":0,"dx":{"0":{"id":10256,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":127,"tap":103,"hold":2,"slide":5,"touch":15,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10256,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20000,"notes":{"total":267,"tap":200,"hold":14,"slide":19,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10256,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":323,"tap":223,"hold":50,"slide":6,"touch":36,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10256,"level_id":3,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":533,"tap":349,"hold":32,"slide":40,"touch":108,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":256,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":120,"tap":84,"hold":16,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":256,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12000,"notes":{"total":264,"tap":197,"hold":44,"slide":11,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":256,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":255,"tap":175,"hold":33,"slide":36,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":256,"level_id":3,"level":"12","level_value":12.2,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":448,"tap":348,"hold":39,"slide":33,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":256,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"しろいろ","romVersion":12000,"notes":{"total":662,"tap":500,"hold":13,"slide":104,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":367,"long":false},{"id":258,"players":7008,"title":"Nyan Cat EX","utTitle":null,"artist":"daniwell","albums":["nyan cat ex","彩虹猫","nya","\uD83C\uDF08\uD83D\uDC31","哈基米","湖南省歌","nyan cat ex","彩虹猫","nya","\uD83C\uDF08\uD83D\uDC31","哈基米","湖南省歌","哈基奈","nyan cat ex","彩虹猫","nya","\uD83C\uDF08\uD83D\uDC31","哈基米","湖南省歌"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12008,"dxRomVersion":0,"sdRomVersion":12008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":258,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12008,"notes":{"total":153,"tap":137,"hold":2,"slide":2,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":258,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":12008,"notes":{"total":273,"tap":241,"hold":0,"slide":13,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":258,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"maimai TEAM","romVersion":12008,"notes":{"total":492,"tap":485,"hold":0,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":258,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"チャン@DP皆伝","romVersion":12008,"notes":{"total":710,"tap":630,"hold":0,"slide":40,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":259,"players":4901,"title":"ぽっぴっぽー","utTitle":{"100259":"[協]ぽっぴっぽー"},"artist":" ","albums":["ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米","ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米","ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240118","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":12006,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":259,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12006,"notes":{"total":116,"tap":109,"hold":3,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":259,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12006,"notes":{"total":268,"tap":234,"hold":2,"slide":14,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":259,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":362,"tap":285,"hold":52,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":259,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":507,"tap":430,"hold":36,"slide":37,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100259":{"id":100259,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":868,"tap":659,"hold":141,"slide":56,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2132,"long":false},{"id":260,"players":4298,"title":"LUCIA","utTitle":null,"artist":"SHIKI","albums":["lucia","圣枪游侠","露西亚","卢锡安","露西娅","lucia","圣枪游侠","露西亚","卢锡安","露西娅","lucia","圣枪游侠","露西亚","卢锡安","露西娅"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":154,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12003,"dxRomVersion":0,"sdRomVersion":12003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":260,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12003,"notes":{"total":142,"tap":123,"hold":9,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":260,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12003,"notes":{"total":219,"tap":177,"hold":22,"slide":11,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":260,"level_id":2,"level":"12","level_value":12.3,"note_designer":"はっぴー","romVersion":12003,"notes":{"total":410,"tap":269,"hold":82,"slide":44,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":260,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":534,"tap":416,"hold":24,"slide":77,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":260,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":12003,"notes":{"total":698,"tap":572,"hold":44,"slide":49,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":261,"players":7072,"title":"Death Scythe","utTitle":null,"artist":"SHIKI","albums":["death scythe","ds","死镰","死亡镰刀","死镰1","death scythe","ds","死镰","死亡镰刀","死镰1","death scythe","ds","死镰","死亡镰刀","死镰1"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12003,"dxRomVersion":0,"sdRomVersion":12003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":261,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12003,"notes":{"total":182,"tap":142,"hold":21,"slide":11,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":261,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":12003,"notes":{"total":282,"tap":231,"hold":22,"slide":9,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":261,"level_id":2,"level":"12","level_value":12.1,"note_designer":"某S氏","romVersion":12003,"notes":{"total":546,"tap":493,"hold":15,"slide":22,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":261,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":12003,"notes":{"total":763,"tap":630,"hold":16,"slide":101,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":261,"level_id":4,"level":"14","level_value":14.2,"note_designer":"隅田川星人","romVersion":12003,"notes":{"total":976,"tap":811,"hold":32,"slide":89,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":262,"players":2719,"title":"BREAK YOU!!","utTitle":null,"artist":"A-One","albums":["break you!!","破坏你","爆你","炸你","breakyou","碎了你","绝赞你","跟你爆了","break you!!","破坏你","爆你","炸你","breakyou","碎了你","绝赞你","跟你爆了","break you!!","破坏你","爆你","炸你","breakyou","碎了你","绝赞你","跟你爆了"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":167,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12003,"dxRomVersion":0,"sdRomVersion":12003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":262,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12003,"notes":{"total":209,"tap":187,"hold":3,"slide":7,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":262,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":12003,"notes":{"total":219,"tap":162,"hold":36,"slide":12,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":262,"level_id":2,"level":"11","level_value":11.0,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":543,"tap":414,"hold":43,"slide":57,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":262,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"譜面-100号","romVersion":12003,"notes":{"total":772,"tap":588,"hold":42,"slide":108,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":263,"players":2221,"title":"JUMPIN' JUMPIN'","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["jumpin' jumpin'","跳跳","sh金曲","jj","jumpin' jumpin'","跳跳","sh金曲","jj","jumpin' jumpin'","跳跳","sh金曲","jj"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":163,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12003,"dxRomVersion":0,"sdRomVersion":12003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":263,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12003,"notes":{"total":139,"tap":108,"hold":18,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":263,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":12003,"notes":{"total":295,"tap":227,"hold":31,"slide":24,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":263,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":437,"tap":291,"hold":68,"slide":58,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":263,"level_id":3,"level":"13","level_value":13.1,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":591,"tap":433,"hold":29,"slide":93,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":264,"players":3267,"title":"L'épilogue","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["l'épilogue","法文歌","后记","l'épilogue","法文歌","后记","l'épilogue","法文歌","后记"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12003,"dxRomVersion":0,"sdRomVersion":12003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":264,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12003,"notes":{"total":172,"tap":134,"hold":20,"slide":14,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":264,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":12003,"notes":{"total":334,"tap":275,"hold":19,"slide":24,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":264,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":481,"tap":366,"hold":52,"slide":49,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":264,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"mai-Star","romVersion":12003,"notes":{"total":763,"tap":654,"hold":31,"slide":60,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":497,"long":false},{"id":265,"players":2981,"title":"Save This World νMIX","utTitle":null,"artist":"「PHANTASY STAR PORTABLE」","albums":["save this world νmix","救世","psp","梦幻之星携带版","救世啊","拯救世界","save this world νmix","救世","psp","梦幻之星携带版","救世啊","拯救世界","save this world νmix","救世","psp","梦幻之星携带版","救世啊","拯救世界"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":143,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12001,"dxRomVersion":0,"sdRomVersion":12001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":265,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12001,"notes":{"total":123,"tap":90,"hold":23,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":265,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":12001,"notes":{"total":196,"tap":84,"hold":85,"slide":25,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":265,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"某S氏","romVersion":12001,"notes":{"total":361,"tap":280,"hold":31,"slide":44,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":265,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12001,"notes":{"total":348,"tap":196,"hold":60,"slide":89,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":265,"level_id":4,"level":"13","level_value":13.3,"note_designer":"しろいろ","romVersion":12001,"notes":{"total":596,"tap":395,"hold":34,"slide":161,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":266,"players":2511,"title":"Living Universe","utTitle":null,"artist":"「PHANTASY STAR PORTABLE2」","albums":["living universe","活在宇宙","psp2","living universe","活在宇宙","psp2","living universe","活在宇宙","psp2"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12001,"dxRomVersion":0,"sdRomVersion":12001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":266,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12001,"notes":{"total":74,"tap":56,"hold":9,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":266,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":12001,"notes":{"total":169,"tap":137,"hold":24,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":266,"level_id":2,"level":"10","level_value":10.0,"note_designer":"ニャイン","romVersion":12001,"notes":{"total":192,"tap":116,"hold":45,"slide":19,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":266,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"某S氏","romVersion":12001,"notes":{"total":239,"tap":150,"hold":45,"slide":37,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":266,"level_id":4,"level":"12+","level_value":12.6,"note_designer":"rioN","romVersion":12001,"notes":{"total":495,"tap":375,"hold":24,"slide":73,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":267,"players":1884,"title":"Ignite Infinity","utTitle":null,"artist":"「PHANTASY STAR PORTABLE2 ∞」","albums":["ignite infinity","psp2","ignite infinity","psp2","ignite infinity","psp2"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":267,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12000,"notes":{"total":97,"tap":81,"hold":5,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":267,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":12000,"notes":{"total":174,"tap":116,"hold":45,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":267,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"譜面-100号","romVersion":12000,"notes":{"total":301,"tap":174,"hold":49,"slide":76,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":267,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":335,"tap":231,"hold":55,"slide":43,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":268,"players":4175,"title":"トルコ行進曲 - オワタ\(^o^)/","utTitle":null,"artist":"オワタP","albums":["トルコ行進曲 - オワタ\(^o^)/","\\(^o^)/","土耳其进行曲","\uD83C\uDDF9\uD83C\uDDF7","土耳其","トルコ行進曲 - オワタ\(^o^)/","\\(^o^)/","土耳其进行曲","\uD83C\uDDF9\uD83C\uDDF7","土耳其","トルコ行進曲 - オワタ\(^o^)/","\\(^o^)/","土耳其进行曲","\uD83C\uDDF9\uD83C\uDDF7","土耳其"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12000,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":268,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":126,"tap":107,"hold":11,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":268,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":12000,"notes":{"total":225,"tap":174,"hold":31,"slide":6,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":268,"level_id":2,"level":"10","level_value":10.0,"note_designer":"mai-Star","romVersion":12000,"notes":{"total":413,"tap":352,"hold":30,"slide":9,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":268,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ニャイン","romVersion":12000,"notes":{"total":609,"tap":539,"hold":21,"slide":17,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":269,"players":9891,"title":"裏表ラバーズ","utTitle":null,"artist":"wowaka","albums":["裏表ラバーズ","里表恋人","里表情人","里表","◐","裏表ラバーズ","里表恋人","里表情人","里表","◐","裏表ラバーズ","里表恋人","里表情人","里表","◐"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":159,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":12006,"dxRomVersion":0,"sdRomVersion":12006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":269,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12006,"notes":{"total":199,"tap":184,"hold":5,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":269,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":12006,"notes":{"total":280,"tap":228,"hold":18,"slide":25,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":269,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"譜面-100号","romVersion":12006,"notes":{"total":504,"tap":443,"hold":10,"slide":9,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":269,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":651,"tap":556,"hold":2,"slide":82,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":166,"long":false},{"id":270,"players":4084,"title":"Outlaw's Lullaby","utTitle":null,"artist":"「龍が如く2」","albums":["outlaw's lullaby","史蒂夫抽烟","ol","ehk","如龙","如龙2","公奶龙","史蒂夫抽烈焰棒","outlaw's lullaby","史蒂夫抽烟","ol","ehk","如龙","如龙2","公奶龙","史蒂夫抽烈焰棒","outlaw's lullaby","史蒂夫抽烟","ol","ehk","如龙","如龙2","公奶龙","史蒂夫抽烈焰棒"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":145,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13008,"dxRomVersion":0,"sdRomVersion":13008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":270,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13008,"notes":{"total":116,"tap":95,"hold":12,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":270,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":13008,"notes":{"total":310,"tap":283,"hold":13,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":270,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":13008,"notes":{"total":394,"tap":321,"hold":46,"slide":18,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":270,"level_id":3,"level":"14","level_value":14.0,"note_designer":"譜面-100号","romVersion":13008,"notes":{"total":694,"tap":546,"hold":64,"slide":42,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":764,"long":false},{"id":271,"players":1768,"title":"Brand-new Japanesque","utTitle":null,"artist":"「龍が如く 見参!」","albums":["brand-new japanesque","如龙0","如龙见参","全新日本人","如龙","新人类","brand-new japanesque","如龙0","如龙见参","全新日本人","如龙","新人类","brand-new japanesque","如龙0","如龙见参","全新日本人","如龙"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":135,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13008,"dxRomVersion":0,"sdRomVersion":13008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":271,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13008,"notes":{"total":100,"tap":88,"hold":6,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":271,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":13008,"notes":{"total":288,"tap":263,"hold":8,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":271,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":13008,"notes":{"total":284,"tap":187,"hold":58,"slide":19,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":271,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":13008,"notes":{"total":470,"tap":372,"hold":47,"slide":43,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":278,"players":3380,"title":"レッツゴー!陰陽師","utTitle":null,"artist":"「新豪血寺一族 -煩悩解放-」","albums":["レッツゴー!陰陽師","let'go!阴阳师","恶灵退散!恶灵退散!恶灵退散!","超级蓝绿","阴阳师","林正英","挑眉","仪式魔法","レッツゴー!陰陽師","let'go!阴阳师","恶灵退散!恶灵退散!恶灵退散!","超级蓝绿","阴阳师","林正英","挑眉","仪式魔法","レッツゴー!陰陽師","let'go!阴阳师","恶灵退散!恶灵退散!恶灵退散!","超级蓝绿","阴阳师","林正英","挑眉","仪式魔法"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":278,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":13009,"notes":{"total":92,"tap":78,"hold":8,"slide":1,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":278,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":13009,"notes":{"total":302,"tap":256,"hold":27,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":278,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Jack","romVersion":13009,"notes":{"total":332,"tap":256,"hold":31,"slide":31,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":278,"level_id":3,"level":"13","level_value":13.3,"note_designer":"某S氏","romVersion":13009,"notes":{"total":598,"tap":435,"hold":22,"slide":126,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":395,"long":false},{"id":281,"players":2832,"title":"ダブルラリアット","utTitle":{"110281":"[回]ダブルラリアット"},"artist":"アゴアニキ","albums":null,"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":138,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":281,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14000,"notes":{"total":155,"tap":130,"hold":19,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":281,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":14000,"notes":{"total":197,"tap":161,"hold":20,"slide":11,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":281,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"某S氏","romVersion":14000,"notes":{"total":277,"tap":175,"hold":52,"slide":42,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":281,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":14000,"notes":{"total":467,"tap":324,"hold":17,"slide":110,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110281":{"id":110281,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":868,"long":false},{"id":282,"players":5206,"title":"からくりピエロ","utTitle":null,"artist":"40mP","albums":["からくりピエロ","\uD83E\uDD21","活动沙口","活动小丑","小丑","からくりピエロ","\uD83E\uDD21","活动沙口","活动小丑","小丑","からくりピエロ","\uD83E\uDD21","活动沙口","活动小丑","小丑"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":102,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":282,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13009,"notes":{"total":114,"tap":107,"hold":0,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":282,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":13009,"notes":{"total":193,"tap":162,"hold":10,"slide":16,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":282,"level_id":2,"level":"10","level_value":10.1,"note_designer":"Jack","romVersion":13009,"notes":{"total":335,"tap":254,"hold":30,"slide":43,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":282,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":429,"tap":332,"hold":28,"slide":42,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":282,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":13009,"notes":{"total":567,"tap":485,"hold":10,"slide":62,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":278,"long":false},{"id":283,"players":4531,"title":"ネトゲ廃人シュプレヒコール","utTitle":null,"artist":"さつき が てんこもり","albums":["ネトゲ廃人シュプレヒコール","\uD83D\uDE09","网游废人的呐喊","网络废人的呐喊","网游废人","废人","网络废人","ネトゲ廃人シュプレヒコール","\uD83D\uDE09","网游废人的呐喊","网络废人的呐喊","网游废人","废人","网络废人","ネトゲ廃人シュプレヒコール","\uD83D\uDE09","网游废人的呐喊","网络废人的呐喊","网游废人","废人","网络废人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18023,"dxRomVersion":0,"sdRomVersion":18023,"utRomVersion":0,"dx":{},"sd":{"0":{"id":283,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18023,"notes":{"total":282,"tap":259,"hold":12,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":283,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18023,"notes":{"total":406,"tap":325,"hold":46,"slide":25,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":283,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":18023,"notes":{"total":589,"tap":468,"hold":65,"slide":39,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":283,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":18023,"notes":{"total":888,"tap":688,"hold":65,"slide":102,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":168,"long":false},{"id":285,"players":2722,"title":"magician's operation","utTitle":null,"artist":"EZFG","albums":["magician's operation","黑屏","魔法手指","黑手","魔术手","魔法师手术","magician's operation","黑屏","魔法手指","黑手","魔术手","魔法师手术","magician's operation","黑屏","魔法手指","黑手","魔术手","魔法师手术","那刻夏"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13001,"dxRomVersion":0,"sdRomVersion":13001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":285,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13001,"notes":{"total":121,"tap":107,"hold":4,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":285,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":13001,"notes":{"total":190,"tap":146,"hold":28,"slide":9,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":285,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":13001,"notes":{"total":385,"tap":317,"hold":58,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":285,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":13001,"notes":{"total":557,"tap":443,"hold":31,"slide":77,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":288,"players":17764,"title":"六兆年と一夜物語","utTitle":null,"artist":"kemu","albums":["六兆年と一夜物語","希腊奶","dx希腊奶","dx六兆年","6m","六兆年","6000000000000年","六兆年零一夜物语","安慕希","六兆年と一夜物語","希腊奶","dx希腊奶","dx六兆年","6m","六兆年","6000000000000年","六兆年零一夜物语","安慕希","六兆年と一夜物語","希腊奶","dx希腊奶","dx六兆年","6m","六兆年","6000000000000年","六兆年零一夜物语","安慕希"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":186,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":15011,"dxRomVersion":20000,"sdRomVersion":15011,"utRomVersion":0,"dx":{"0":{"id":10288,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":150,"tap":129,"hold":6,"slide":4,"touch":4,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10288,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20000,"notes":{"total":288,"tap":237,"hold":23,"slide":8,"touch":4,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10288,"level_id":2,"level":"9","level_value":9.4,"note_designer":"華火職人","romVersion":20000,"notes":{"total":354,"tap":260,"hold":24,"slide":11,"touch":29,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10288,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"うさぎランドリー","romVersion":20000,"notes":{"total":704,"tap":554,"hold":25,"slide":47,"touch":57,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":288,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15011,"notes":{"total":160,"tap":146,"hold":2,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":288,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":15011,"notes":{"total":314,"tap":291,"hold":8,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":288,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":15011,"notes":{"total":399,"tap":317,"hold":22,"slide":31,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":288,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":15011,"notes":{"total":748,"tap":660,"hold":6,"slide":69,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":47,"long":false},{"id":289,"players":3744,"title":"みくみくにしてあげる♪【してやんよ】","utTitle":null,"artist":"ika","albums":["みくみくにしてあげる♪【してやんよ】","\uD83D\uDCC9","狗·眼·①·瞎","飞龙","把你mikumiku掉","みくみくにしてあげる♪【してやんよ】","\uD83D\uDCC9","狗·眼·①·瞎","飞龙","把你mikumiku掉","みくみくにしてあげる♪【してやんよ】","\uD83D\uDCC9","狗·眼·①·瞎","飞龙","把你mikumiku掉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":0,"sdRomVersion":15000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":289,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15000,"notes":{"total":134,"tap":114,"hold":10,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":289,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":15000,"notes":{"total":287,"tap":255,"hold":16,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":289,"level_id":2,"level":"9","level_value":9.4,"note_designer":"某S氏","romVersion":15000,"notes":{"total":354,"tap":286,"hold":29,"slide":27,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":289,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":15000,"notes":{"total":471,"tap":364,"hold":26,"slide":67,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":316,"long":false},{"id":290,"players":1736,"title":"リリリリ★バーニングナイト","utTitle":null,"artist":"samfree","albums":["リリリリ★バーニングナイト","lilylily★burningnight","酒吧","美女躺着","力力","lilylily","lilylilyburningnight","lily","酒吧跳舞","リリリリ★バーニングナイト","lilylily★burningnight","酒吧","美女躺着","力力","lilylily","lilylilyburningnight","lily","酒吧跳舞","リリリリ★バーニングナイト","lilylily★burningnight","酒吧","美女躺着","力力","lilylily","lilylilyburningnight","lily","酒吧跳舞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":165,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":290,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":13009,"notes":{"total":192,"tap":171,"hold":3,"slide":14,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":290,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":13009,"notes":{"total":328,"tap":265,"hold":25,"slide":20,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":290,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":13009,"notes":{"total":379,"tap":286,"hold":27,"slide":43,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":290,"level_id":3,"level":"10+","level_value":10.9,"note_designer":"Jack","romVersion":13009,"notes":{"total":464,"tap":352,"hold":61,"slide":30,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":291,"players":2618,"title":"ハロ/ハワユ","utTitle":null,"artist":"ナノウ","albums":["ハロ/ハワユ","八口","hello/HowDearYou","ハロ","hello,how are you","hello how are you","hello/howareyou","你好/你咋了","你好","hello","ハロ/ハワユ","八口","hello/HowDearYou","ハロ","hello,how are you","hello how are you","hello/howareyou","你好/你咋了","你好","hello","ハロ/ハワユ","八口","hello/HowDearYou","ハロ","hello,how are you","hello how are you","hello/howareyou","你好/你咋了","你好","hello"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":95,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13011,"dxRomVersion":0,"sdRomVersion":13011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":291,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13011,"notes":{"total":115,"tap":109,"hold":3,"slide":1,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":291,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":13011,"notes":{"total":180,"tap":149,"hold":21,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":291,"level_id":2,"level":"9","level_value":9.4,"note_designer":"はっぴー","romVersion":13011,"notes":{"total":246,"tap":177,"hold":50,"slide":15,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":291,"level_id":3,"level":"12","level_value":12.0,"note_designer":"mai-Star","romVersion":13011,"notes":{"total":492,"tap":416,"hold":32,"slide":35,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":295,"players":5403,"title":"緋色のDance","utTitle":null,"artist":"岸田教団&THE明星ロケッツ","albums":["緋色のdance","绯色dance","绯色","绯色之舞","緋色のdance","绯色dance","绯色","绯色之舞","緋色のdance","绯色dance","绯色","绯色之舞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":155,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":295,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14000,"notes":{"total":135,"tap":107,"hold":16,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":295,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":14000,"notes":{"total":274,"tap":249,"hold":0,"slide":15,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":295,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":14000,"notes":{"total":417,"tap":358,"hold":32,"slide":17,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":295,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":14000,"notes":{"total":598,"tap":522,"hold":6,"slide":58,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":295,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":14000,"notes":{"total":484,"tap":229,"hold":0,"slide":229,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":149,"long":false},{"id":296,"players":3502,"title":"明星ロケット","utTitle":null,"artist":"岸田教団&THE明星ロケッツ","albums":["明星ロケット","幻想事变","明星火箭","明星","明星ロケット","幻想事变","明星火箭","明星","明星ロケット","幻想事变","明星火箭","明星"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":163,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":296,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14000,"notes":{"total":122,"tap":102,"hold":10,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":296,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":14000,"notes":{"total":270,"tap":224,"hold":22,"slide":17,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":296,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":14000,"notes":{"total":293,"tap":223,"hold":47,"slide":19,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":296,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":14000,"notes":{"total":396,"tap":297,"hold":13,"slide":76,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":296,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":14000,"notes":{"total":512,"tap":375,"hold":17,"slide":108,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2086,"long":false},{"id":297,"players":1838,"title":"The Great Journey","utTitle":null,"artist":"光吉猛修「ホルカ・トルカ」","albums":["the great journey","黄金矿工","好旅行","大冒险","the great journey","黄金矿工","好旅行","大冒险","the great journey","黄金矿工","好旅行","大冒险"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":135,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14001,"dxRomVersion":0,"sdRomVersion":14001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":297,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14001,"notes":{"total":184,"tap":160,"hold":10,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":297,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":14001,"notes":{"total":255,"tap":227,"hold":16,"slide":9,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":297,"level_id":2,"level":"10","level_value":10.5,"note_designer":"mai-Star","romVersion":14001,"notes":{"total":341,"tap":248,"hold":57,"slide":25,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":297,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":14001,"notes":{"total":520,"tap":417,"hold":51,"slide":33,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":298,"players":1851,"title":"お嫁にしなさいっ!","utTitle":null,"artist":"ARM+夕野ヨシミ(IOSYS)","albums":["お嫁にしなさいっ!","婚礼","婚礼进行曲","女同7","东方萃翠酒醉","结婚","东方花嫁","お嫁にしなさいっ!","婚礼","婚礼进行曲","女同7","东方萃翠酒醉","结婚","东方花嫁","お嫁にしなさいっ!","婚礼","婚礼进行曲","女同7","东方萃翠酒醉","结婚","东方花嫁"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":298,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13000,"notes":{"total":132,"tap":102,"hold":23,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":298,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13000,"notes":{"total":266,"tap":229,"hold":24,"slide":5,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":298,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":386,"tap":311,"hold":27,"slide":17,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":298,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":13000,"notes":{"total":534,"tap":422,"hold":17,"slide":70,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":792,"long":false},{"id":299,"players":12765,"title":"ロストワンの号哭","utTitle":null,"artist":"Neru","albums":["ロストワンの号哭","号哭","哭哭","kappa","没有1我要哭了","失去1的号哭","lost one的号哭","lost one 的号哭","ロストワンの号哭","号哭","哭哭","kappa","没有1我要哭了","失去1的号哭","lost one的号哭","lost one 的号哭","ロストワンの号哭","号哭","哭哭","kappa","没有1我要哭了","失去1的号哭","lost one的号哭","lost one 的号哭","鹅哭"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":0,"sdRomVersion":15000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":299,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15000,"notes":{"total":215,"tap":196,"hold":8,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":299,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":15000,"notes":{"total":371,"tap":330,"hold":11,"slide":18,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":299,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":15000,"notes":{"total":545,"tap":419,"hold":78,"slide":38,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":299,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":15000,"notes":{"total":946,"tap":828,"hold":26,"slide":68,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":299,"level_id":4,"level":"14","level_value":14.2,"note_designer":"mai-Star","romVersion":15000,"notes":{"total":946,"tap":723,"hold":50,"slide":162,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":83,"long":false},{"id":301,"players":11268,"title":"患部で止まってすぐ溶ける~狂気の優曇華院","utTitle":null,"artist":"ARM+夕野ヨシミ(IOSYS)feat. miko","albums":["患部で止まってすぐ溶ける~狂気の優曇華院","患部溶解","患部","优云华院","兔子药","优昙华院","座药","overdrive","一把米诺","dx患部","患部で止まってすぐ溶ける~狂気の優曇華院","患部溶解","患部","优云华院","兔子药","优昙华院","座药","overdrive","一把米诺","dx患部","患部で止まってすぐ溶ける~狂気の優曇華院","患部溶解","患部","优云华院","兔子药","优昙华院","座药","overdrive","一把米诺","dx患部"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":13006,"dxRomVersion":20000,"sdRomVersion":13006,"utRomVersion":0,"dx":{"0":{"id":10301,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":20000,"notes":{"total":103,"tap":77,"hold":9,"slide":2,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10301,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":20000,"notes":{"total":309,"tap":247,"hold":12,"slide":12,"touch":27,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10301,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":560,"tap":291,"hold":92,"slide":4,"touch":167,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10301,"level_id":3,"level":"13","level_value":13.5,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":695,"tap":436,"hold":29,"slide":107,"touch":113,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":301,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13006,"notes":{"total":144,"tap":128,"hold":9,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":301,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":13006,"notes":{"total":326,"tap":295,"hold":2,"slide":18,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":301,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":13006,"notes":{"total":529,"tap":439,"hold":50,"slide":27,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":301,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":13006,"notes":{"total":752,"tap":594,"hold":23,"slide":110,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":301,"level_id":4,"level":"14","level_value":14.0,"note_designer":"某S氏","romVersion":13006,"notes":{"total":904,"tap":712,"hold":21,"slide":94,"touch":0,"break_":77},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":187,"long":false},{"id":302,"players":5562,"title":"ケロ⑨destiny","utTitle":null,"artist":"Silver Forest","albums":["ケロ⑨destiny","9","⑨","kero","ケロ⑨destiny","9","⑨","kero","ケロ⑨destiny","9","⑨","kero"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20230203","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":23008,"sdRomVersion":15000,"utRomVersion":0,"dx":{"0":{"id":10302,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":23008,"notes":{"total":178,"tap":151,"hold":8,"slide":5,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10302,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":23008,"notes":{"total":255,"tap":184,"hold":35,"slide":13,"touch":16,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10302,"level_id":2,"level":"10","level_value":10.2,"note_designer":"アマリリス","romVersion":23008,"notes":{"total":430,"tap":252,"hold":97,"slide":22,"touch":15,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10302,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Redarrow","romVersion":23008,"notes":{"total":691,"tap":431,"hold":58,"slide":78,"touch":54,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":302,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15000,"notes":{"total":182,"tap":170,"hold":7,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":302,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":15000,"notes":{"total":213,"tap":187,"hold":10,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":302,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":15000,"notes":{"total":424,"tap":226,"hold":144,"slide":18,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":302,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"某S氏","romVersion":15000,"notes":{"total":622,"tap":458,"hold":70,"slide":62,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":456,"long":false},{"id":303,"players":2271,"title":"Endless, Sleepless Night","utTitle":null,"artist":"samfree feat.(V)・∀・(V)かにぱん。(A-ONE)","albums":["endless, sleepless night","漫漫长眠夜","灵梦1","俄罗斯娜娜","欧美博丽灵梦","不眠之夜","无尽不眠夜","不眠夜","esn","博丽灵梦","东方不眠夜","美国灵梦","endless, sleepless night","漫漫长眠夜","灵梦1","俄罗斯娜娜","欧美博丽灵梦","不眠之夜","无尽不眠夜","不眠夜","esn","博丽灵梦","东方不眠夜","美国灵梦","endless, sleepless night","漫漫长眠夜","灵梦1","俄罗斯娜娜","欧美博丽灵梦","不眠之夜","无尽不眠夜","不眠夜","esn","博丽灵梦","东方不眠夜","美国灵梦"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":165,"releaseDate":"20250704","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":13010,"dxRomVersion":0,"sdRomVersion":13010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":303,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13010,"notes":{"total":163,"tap":146,"hold":8,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":303,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":13010,"notes":{"total":323,"tap":263,"hold":28,"slide":21,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":303,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":13010,"notes":{"total":464,"tap":349,"hold":57,"slide":40,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":303,"level_id":3,"level":"13","level_value":13.3,"note_designer":"mai-Star","romVersion":13010,"notes":{"total":684,"tap":549,"hold":25,"slide":91,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":305,"players":1844,"title":"POP STAR","utTitle":null,"artist":"平井堅 [cover]","albums":["pop star","匡威","popstar","流行星","pop star","匡威","popstar","流行星","pop star","匡威","popstar","流行星"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":305,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13009,"notes":{"total":132,"tap":118,"hold":4,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":305,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":13009,"notes":{"total":260,"tap":239,"hold":10,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":305,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":286,"tap":195,"hold":25,"slide":47,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":305,"level_id":3,"level":"11","level_value":11.4,"note_designer":"某S氏","romVersion":13009,"notes":{"total":450,"tap":341,"hold":38,"slide":60,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":308,"players":4797,"title":"Back 2 Back","utTitle":null,"artist":"長沼英樹「ソニック ラッシュ」","albums":["back 2 back","b歌","回2回","b2b","一笔画","2B","回二回","back 2 back","b歌","回2回","b2b","一笔画","2B","回二回","back 2 back","b歌","回2回","b2b","一笔画","2B","回二回","背2背"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13010,"dxRomVersion":0,"sdRomVersion":13010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":308,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":13010,"notes":{"total":223,"tap":210,"hold":4,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":308,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":13010,"notes":{"total":214,"tap":164,"hold":10,"slide":12,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":308,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"譜面-100号","romVersion":13010,"notes":{"total":435,"tap":338,"hold":0,"slide":83,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":308,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":13010,"notes":{"total":381,"tap":190,"hold":0,"slide":189,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":309,"players":2360,"title":"神々の祈り","utTitle":null,"artist":"舞風-MAIKAZE/沙紗飛鳥","albums":["神々の祈り","\uD83C\uDF41","神明的祈祷","神祈","神々の祈り","\uD83C\uDF41","神明的祈祷","神祈","神々の祈り","\uD83C\uDF41","神明的祈祷","神祈"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":130,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13006,"dxRomVersion":0,"sdRomVersion":13006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":309,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13006,"notes":{"total":112,"tap":99,"hold":6,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":309,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":13006,"notes":{"total":210,"tap":168,"hold":22,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":309,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":13006,"notes":{"total":218,"tap":133,"hold":52,"slide":30,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":309,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":13006,"notes":{"total":422,"tap":297,"hold":58,"slide":61,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":310,"players":3499,"title":"エピクロスの虹はもう見えない","utTitle":null,"artist":"SYNC.ART'S feat. 美里","albums":["エピクロスの虹はもう見えない","圣母","虹见","上海红茶馆","再见不到伊壁鸠鲁的彩虹","エピクロスの虹はもう見えない","圣母","虹见","上海红茶馆","再见不到伊壁鸠鲁的彩虹","エピクロスの虹はもう見えない","圣母","虹见","上海红茶馆","再见不到伊壁鸠鲁的彩虹"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":155,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13006,"dxRomVersion":0,"sdRomVersion":13006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":310,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13006,"notes":{"total":112,"tap":96,"hold":7,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":310,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":13006,"notes":{"total":176,"tap":137,"hold":17,"slide":13,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":310,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":13006,"notes":{"total":264,"tap":184,"hold":39,"slide":26,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":310,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"某S氏","romVersion":13006,"notes":{"total":464,"tap":357,"hold":26,"slide":72,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":310,"level_id":4,"level":"13","level_value":13.2,"note_designer":"rioN","romVersion":13006,"notes":{"total":444,"tap":204,"hold":130,"slide":94,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":49,"long":false},{"id":311,"players":2611,"title":"シアワセうさぎ","utTitle":null,"artist":"あまね+ビートまりお(COOL&CREATE)","albums":["シアワセうさぎ","幸福兔","シアワセうさぎ","幸福兔","シアワセうさぎ","幸福兔"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":140,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13010,"dxRomVersion":0,"sdRomVersion":13010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":311,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13010,"notes":{"total":146,"tap":122,"hold":17,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":311,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":13010,"notes":{"total":258,"tap":218,"hold":13,"slide":14,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":311,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":13010,"notes":{"total":291,"tap":223,"hold":40,"slide":23,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":311,"level_id":3,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":13010,"notes":{"total":435,"tap":343,"hold":41,"slide":44,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2469,"long":false},{"id":312,"players":3813,"title":"ってゐ! ~えいえんてゐVer~","utTitle":null,"artist":"石鹸屋","albums":["ってゐ! ~えいえんてゐver~","永远亭","因幡帝","翘屁股","屁股","翘臀","帝帝","ってゐ! ~えいえんてゐver~","永远亭","因幡帝","翘屁股","屁股","翘臀","帝帝","ってゐ! ~えいえんてゐver~","永远亭","因幡帝","翘屁股","屁股","翘臀","帝帝"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":156,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":0,"sdRomVersion":15000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":312,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":15000,"notes":{"total":151,"tap":131,"hold":9,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":312,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":15000,"notes":{"total":256,"tap":228,"hold":10,"slide":12,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":312,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Jack","romVersion":15000,"notes":{"total":458,"tap":387,"hold":12,"slide":42,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":312,"level_id":3,"level":"12","level_value":12.5,"note_designer":"rioN","romVersion":15000,"notes":{"total":616,"tap":457,"hold":3,"slide":146,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":312,"level_id":4,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":15000,"notes":{"total":853,"tap":654,"hold":0,"slide":187,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":313,"players":2523,"title":"待チ人ハ来ズ。","utTitle":null,"artist":"豚乙女","albums":["待チ人ハ来ズ。","待人来","等人","小伞","小伞歌","等的人没有来","待人未至","东方旋转木马","待チ人ハ来ズ。","待人来","等人","小伞","小伞歌","等的人没有来","待人未至","东方旋转木马","待チ人ハ来ズ。","待人来","等人","小伞","小伞歌","等的人没有来","待人未至","东方旋转木马"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":313,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13009,"notes":{"total":132,"tap":105,"hold":15,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":313,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13009,"notes":{"total":275,"tap":204,"hold":32,"slide":30,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":313,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":13009,"notes":{"total":346,"tap":243,"hold":68,"slide":25,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":313,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":693,"tap":544,"hold":44,"slide":84,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":793,"long":false},{"id":314,"players":2852,"title":"Cosmic Magic Shooter","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["cosmic magic shooter","魔术射手","魔弹射手","魔法射手","感情的摩天楼","宇宙魔术射手","cms","摩天轮","宇宙魔法射手","cosmic magic shooter","魔术射手","魔弹射手","魔法射手","感情的摩天楼","宇宙魔术射手","cms","摩天轮","宇宙魔法射手","cosmic magic shooter","魔术射手","魔弹射手","魔法射手","感情的摩天楼","宇宙魔术射手","cms","摩天轮","宇宙魔法射手"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":163,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14007,"dxRomVersion":0,"sdRomVersion":14007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":314,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14007,"notes":{"total":138,"tap":119,"hold":11,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":314,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":14007,"notes":{"total":292,"tap":253,"hold":9,"slide":22,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":314,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":14007,"notes":{"total":428,"tap":325,"hold":70,"slide":22,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":314,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"mai-Star","romVersion":14007,"notes":{"total":763,"tap":585,"hold":23,"slide":134,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":874,"long":false},{"id":315,"players":12807,"title":"深海少女","utTitle":null,"artist":"ゆうゆ","albums":["深海少女","dx深海少女","水神5","深海少女","dx深海少女","水神5","深海少女","dx深海少女","水神5","初音未来跳海2"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":137,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":13011,"dxRomVersion":24000,"sdRomVersion":13011,"utRomVersion":0,"dx":{"0":{"id":10315,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":125,"tap":92,"hold":16,"slide":4,"touch":12,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10315,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24000,"notes":{"total":268,"tap":199,"hold":23,"slide":10,"touch":24,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10315,"level_id":2,"level":"9","level_value":9.5,"note_designer":"佑","romVersion":24000,"notes":{"total":344,"tap":229,"hold":50,"slide":26,"touch":18,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10315,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ロシェ@ペンギン","romVersion":24000,"notes":{"total":714,"tap":530,"hold":38,"slide":92,"touch":31,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":315,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13011,"notes":{"total":145,"tap":125,"hold":12,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":315,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":13011,"notes":{"total":221,"tap":151,"hold":33,"slide":25,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":315,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":13011,"notes":{"total":276,"tap":131,"hold":107,"slide":28,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":315,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":13011,"notes":{"total":577,"tap":424,"hold":46,"slide":99,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":279,"long":false},{"id":316,"players":3524,"title":"M.S.S.Planet","utTitle":null,"artist":"M.S.S Project","albums":["m.s.s.planet","dxmss","mss","m.s.s.planet","dxmss","mss","m.s.s.planet","dxmss","mss"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":13001,"dxRomVersion":23005,"sdRomVersion":13001,"utRomVersion":0,"dx":{"0":{"id":10316,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":23005,"notes":{"total":126,"tap":102,"hold":2,"slide":4,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10316,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":23005,"notes":{"total":308,"tap":260,"hold":9,"slide":15,"touch":11,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10316,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":429,"tap":293,"hold":33,"slide":40,"touch":24,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10316,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":700,"tap":442,"hold":13,"slide":122,"touch":86,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":316,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13001,"notes":{"total":144,"tap":117,"hold":12,"slide":4,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":316,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":13001,"notes":{"total":279,"tap":221,"hold":23,"slide":23,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":316,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":13001,"notes":{"total":398,"tap":256,"hold":67,"slide":34,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":316,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"mai-Star","romVersion":13001,"notes":{"total":552,"tap":403,"hold":20,"slide":93,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":117,"long":false},{"id":318,"players":3669,"title":"東方スイーツ!~鬼畜姉妹と受難メイド~","utTitle":null,"artist":"Innocent Keyと小宮真央、ココ、樹詩音","albums":["東方スイーツ!~鬼畜姉妹と受難メイド~","咲夜哭哭","东方受难","鬼畜姐妹","東方スイーツ!~鬼畜姉妹と受難メイド~","咲夜哭哭","东方受难","鬼畜姐妹","東方スイーツ!~鬼畜姉妹と受難メイド~","咲夜哭哭","东方受难","鬼畜姐妹"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":179,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15008,"dxRomVersion":0,"sdRomVersion":15008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":318,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15008,"notes":{"total":180,"tap":160,"hold":12,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":318,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":15008,"notes":{"total":271,"tap":235,"hold":22,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":318,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"某S氏","romVersion":15008,"notes":{"total":398,"tap":296,"hold":33,"slide":57,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":318,"level_id":3,"level":"13","level_value":13.2,"note_designer":"rioN","romVersion":15008,"notes":{"total":552,"tap":406,"hold":30,"slide":103,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":319,"players":7712,"title":"幻想のサテライト","utTitle":null,"artist":"豚乙女","albums":["幻想のサテライト","dx幻想卫星","卫星","幻想卫星","homo","幻想的卫星","幻想のサテライト","dx幻想卫星","卫星","幻想卫星","homo","幻想的卫星","幻想のサテライト","dx幻想卫星","卫星","幻想卫星","homo","幻想的卫星"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":230,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":20000,"sdRomVersion":13009,"utRomVersion":0,"dx":{"0":{"id":10319,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":156,"tap":120,"hold":14,"slide":4,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10319,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20000,"notes":{"total":270,"tap":212,"hold":24,"slide":10,"touch":10,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10319,"level_id":2,"level":"10","level_value":10.4,"note_designer":"シチミヘルツ","romVersion":20000,"notes":{"total":426,"tap":313,"hold":38,"slide":32,"touch":35,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10319,"level_id":3,"level":"13","level_value":13.5,"note_designer":"某S氏","romVersion":20000,"notes":{"total":728,"tap":395,"hold":55,"slide":85,"touch":188,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":319,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13009,"notes":{"total":157,"tap":128,"hold":13,"slide":5,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":319,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":13009,"notes":{"total":368,"tap":351,"hold":6,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":319,"level_id":2,"level":"11","level_value":11.3,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":481,"tap":386,"hold":36,"slide":23,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":319,"level_id":3,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":13009,"notes":{"total":850,"tap":621,"hold":41,"slide":169,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":305,"long":false},{"id":320,"players":1838,"title":"最速最高シャッターガール","utTitle":null,"artist":"ビートまりお(COOL&CREATE)","albums":["最速最高シャッターガール","文文","最速最高","最速最高シャッターガール","文文","最速最高","最速最高シャッターガール","文文","最速最高"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":320,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":134,"tap":106,"hold":11,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":320,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":13000,"notes":{"total":248,"tap":210,"hold":19,"slide":12,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":320,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":13000,"notes":{"total":443,"tap":322,"hold":76,"slide":37,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":320,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":591,"tap":504,"hold":22,"slide":49,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":321,"players":2110,"title":"バラライカ","utTitle":null,"artist":"Performed by 光吉猛修","albums":["バラライカ","空手","空手道","亚拉那一卡","バラライカ","空手","空手道","亚拉那一卡","バラライカ","空手","空手道","亚拉那一卡"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":321,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13009,"notes":{"total":139,"tap":130,"hold":2,"slide":1,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":321,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":13009,"notes":{"total":265,"tap":234,"hold":0,"slide":11,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":321,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":361,"tap":289,"hold":8,"slide":21,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":321,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":13009,"notes":{"total":480,"tap":312,"hold":14,"slide":80,"touch":0,"break_":74},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":322,"players":3425,"title":"林檎華憐歌","utTitle":null,"artist":"ビートまりお母(尾崎順子)","albums":["林檎華憐歌","大妈唱歌","马妈歌","苹果歌","拜拜拜拜","林檎","小苹果","拜拜","林檎华怜歌","林檎華憐歌","大妈唱歌","马妈歌","苹果歌","拜拜拜拜","林檎","小苹果","拜拜","林檎华怜歌","林檎華憐歌","大妈唱歌","马妈歌","苹果歌","拜拜拜拜","林檎","小苹果","拜拜","林檎华怜歌"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":144,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":322,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13000,"notes":{"total":181,"tap":168,"hold":10,"slide":1,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":322,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":13000,"notes":{"total":275,"tap":227,"hold":17,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":322,"level_id":2,"level":"11","level_value":11.3,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":462,"tap":357,"hold":21,"slide":49,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":322,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":13000,"notes":{"total":719,"tap":636,"hold":27,"slide":50,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":323,"players":1905,"title":"YATTA!","utTitle":null,"artist":"はっぱ隊 [cover]","albums":["yatta!","yatta","胡萝卜","\uD83E\uDD55","好耶!","好耶","yatta!","yatta","胡萝卜","\uD83E\uDD55","好耶!","好耶","yatta!","yatta","胡萝卜","\uD83E\uDD55","好耶!","好耶"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":133,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":323,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13000,"notes":{"total":118,"tap":104,"hold":6,"slide":1,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":323,"level_id":1,"level":"6","level_value":6.9,"note_designer":"-","romVersion":13000,"notes":{"total":223,"tap":178,"hold":36,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":323,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":323,"tap":229,"hold":57,"slide":15,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":323,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":13000,"notes":{"total":402,"tap":276,"hold":22,"slide":100,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":324,"players":5342,"title":"Jack-the-Ripper◆","utTitle":null,"artist":"sasakure.UK","albums":["jack-the-ripper◆","ripper","开膛手","杰哥","jtr","杰哥雷普","开膛手杰克","jack the ripper","杰克开膛手","jack-the-ripper◆","ripper","开膛手","杰哥","jtr","杰哥雷普","开膛手杰克","jack the ripper","杰克开膛手","jack-the-ripper◆","ripper","开膛手","杰哥","jtr","杰哥雷普","开膛手杰克","jack the ripper","杰克开膛手"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":210,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13009,"dxRomVersion":0,"sdRomVersion":13009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":324,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13009,"notes":{"total":191,"tap":151,"hold":25,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":324,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":13009,"notes":{"total":467,"tap":436,"hold":7,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":324,"level_id":2,"level":"12","level_value":12.2,"note_designer":"mai-Star","romVersion":13009,"notes":{"total":610,"tap":451,"hold":88,"slide":44,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":324,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":13009,"notes":{"total":933,"tap":741,"hold":85,"slide":94,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":197,"long":false},{"id":325,"players":2234,"title":"Windy Hill -Zone 1","utTitle":null,"artist":"大谷智哉「ソニック ロストワールド」","albums":["windy hill -zone 1","索尼克失落的世界","小追星","索4","追星上位","windy hill -zone 1","索尼克失落的世界","小追星","索4","追星上位","windy hill -zone 1","索尼克失落的世界","小追星","索4","追星上位"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":194,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":325,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":177,"tap":156,"hold":11,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":325,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":13000,"notes":{"total":342,"tap":308,"hold":11,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":325,"level_id":2,"level":"11","level_value":11.0,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":501,"tap":433,"hold":38,"slide":16,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":325,"level_id":3,"level":"13","level_value":13.4,"note_designer":"チャン@DP皆伝","romVersion":13000,"notes":{"total":741,"tap":682,"hold":21,"slide":25,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":326,"players":3441,"title":"コトバ・カラフル","utTitle":null,"artist":"うたよめ575<正岡小豆(大坪由佳)小林抹茶(大橋彩香)>","albums":["コトバ・カラフル","双押妹","女同","多彩言语","575","女同歌","歌组575","双押姐妹花","女同贴贴","コトバ・カラフル","双押妹","女同","多彩言语","575","女同歌","歌组575","双押姐妹花","女同贴贴","コトバ・カラフル","双押妹","女同","多彩言语","575","女同歌","歌组575","双押姐妹花","女同贴贴"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":169,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":326,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13000,"notes":{"total":84,"tap":70,"hold":6,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":326,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":13000,"notes":{"total":170,"tap":144,"hold":11,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":326,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":275,"tap":234,"hold":17,"slide":9,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":326,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":13000,"notes":{"total":575,"tap":459,"hold":3,"slide":53,"touch":0,"break_":60},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":327,"players":5999,"title":"タカハせ!名人マン","utTitle":{"100327":"[狂]タカハせ!名人マン"},"artist":"ビートまりお + ARM feat. 高橋名人","albums":["タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人","タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人","タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":150,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":13007,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":327,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13007,"notes":{"total":133,"tap":103,"hold":17,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":327,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":13007,"notes":{"total":290,"tap":247,"hold":17,"slide":9,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":327,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":13007,"notes":{"total":383,"tap":281,"hold":47,"slide":27,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":327,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":13007,"notes":{"total":571,"tap":437,"hold":64,"slide":48,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100327":{"id":100327,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":1252,"tap":682,"hold":564,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":328,"players":3562,"title":"言ノ葉カルマ","utTitle":null,"artist":"そらる・ろん×れるりり","albums":["言ノ葉カルマ","言叶业","soraru","言叶","因果","言叶之业","言ノ葉カルマ","言叶业","soraru","言叶","因果","言叶之业","言ノ葉カルマ","言叶业","soraru","言叶","因果","言叶之业"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13006,"dxRomVersion":0,"sdRomVersion":13006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":328,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13006,"notes":{"total":179,"tap":157,"hold":10,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":328,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":13006,"notes":{"total":278,"tap":226,"hold":15,"slide":22,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":328,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":13006,"notes":{"total":566,"tap":496,"hold":27,"slide":26,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":328,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":13006,"notes":{"total":792,"tap":633,"hold":20,"slide":105,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":328,"level_id":4,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":13006,"notes":{"total":775,"tap":627,"hold":44,"slide":92,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":99,"long":false},{"id":329,"players":1495,"title":"かせげ!ジャリンコヒーロー","utTitle":null,"artist":"角田信朗「ヒーローバンク」","albums":["かせげ!ジャリンコヒーロー","¥","哈姆","哈姆?","英雄银行","かせげ!ジャリンコヒーロー","¥","哈姆","哈姆?","英雄银行","かせげ!ジャリンコヒーロー","¥","哈姆","哈姆?","英雄银行"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":186,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13002,"dxRomVersion":0,"sdRomVersion":13002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":329,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13002,"notes":{"total":121,"tap":102,"hold":7,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":329,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13002,"notes":{"total":204,"tap":157,"hold":25,"slide":8,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":329,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"譜面-100号","romVersion":13002,"notes":{"total":328,"tap":230,"hold":6,"slide":33,"touch":0,"break_":59},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":329,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":13002,"notes":{"total":416,"tap":311,"hold":30,"slide":50,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":330,"players":2399,"title":"キズナの物語","utTitle":null,"artist":"Trefle「チェインクロニクル」","albums":["キズナの物語","羁绊的故事","羁绊物语","锁链战记","羁绊的物语","物语","キズナの物語","羁绊的故事","羁绊物语","锁链战记","羁绊的物语","物语","キズナの物語","羁绊的故事","羁绊物语","锁链战记","羁绊的物语","物语","刀剑神域"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":128,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13002,"dxRomVersion":0,"sdRomVersion":13002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":330,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13002,"notes":{"total":119,"tap":93,"hold":17,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":330,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":13002,"notes":{"total":203,"tap":147,"hold":14,"slide":30,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":330,"level_id":2,"level":"9","level_value":9.1,"note_designer":"Jack","romVersion":13002,"notes":{"total":271,"tap":212,"hold":20,"slide":27,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":330,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":13002,"notes":{"total":356,"tap":196,"hold":10,"slide":140,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":331,"players":1986,"title":"Heart Beats","utTitle":null,"artist":"向日葵×emon(Tes.)","albums":["heart beats","喝茶","心跳","铅笔画","heart beats","喝茶","心跳","铅笔画","heart beats","喝茶","心跳","铅笔画","幸福的兔子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14008,"dxRomVersion":0,"sdRomVersion":14008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":331,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14008,"notes":{"total":180,"tap":166,"hold":5,"slide":2,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":331,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":14008,"notes":{"total":343,"tap":303,"hold":18,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":331,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"rioN","romVersion":14008,"notes":{"total":416,"tap":328,"hold":46,"slide":30,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":331,"level_id":3,"level":"12","level_value":12.4,"note_designer":"Jack","romVersion":14008,"notes":{"total":692,"tap":562,"hold":48,"slide":61,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":337,"players":4060,"title":"鼓動","utTitle":null,"artist":"青木 千紘「龍が如く 維新!」","albums":["鼓動","鼓动","如龙3","如龙维新","咕咚","别急22","星召大惊讶","鼓動","鼓动","如龙3","如龙维新","咕咚","别急22","星召大惊讶","鼓動","鼓动","如龙3","如龙维新","咕咚","别急22","星召大惊讶","鼓励"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":121,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":337,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":122,"tap":109,"hold":2,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":337,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":13000,"notes":{"total":237,"tap":208,"hold":11,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":337,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":13000,"notes":{"total":379,"tap":359,"hold":0,"slide":2,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":337,"level_id":3,"level":"13","level_value":13.3,"note_designer":"譜面-100号","romVersion":13000,"notes":{"total":436,"tap":317,"hold":27,"slide":75,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":339,"players":5848,"title":"DRAGONLADY","utTitle":null,"artist":"Nankumo/CUBE3","albums":["dragonlady","喇叭","ub","舍得","纵连女士","龙女士","母奶龙","龙玉涛","尼美舒利","龙之梦","龙女","dragonlady","喇叭","ub","舍得","纵连女士","龙女士","母奶龙","龙玉涛","尼美舒利","龙之梦","龙女","辣片","dragonlady","喇叭","ub","舍得","纵连女士","龙女士","母奶龙","龙玉涛","尼美舒利","龙之梦","龙女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":13000,"dxRomVersion":0,"sdRomVersion":13000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":339,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13000,"notes":{"total":146,"tap":127,"hold":7,"slide":2,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":339,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":13000,"notes":{"total":303,"tap":247,"hold":20,"slide":24,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":339,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"譜面-100号","romVersion":13000,"notes":{"total":391,"tap":267,"hold":2,"slide":95,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":339,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"チャン@DP皆伝","romVersion":13000,"notes":{"total":642,"tap":609,"hold":0,"slide":19,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":19,"long":false},{"id":341,"players":3738,"title":"二息歩行","utTitle":null,"artist":"DECO*27","albums":["二息歩行","儿媳不行","半块钱","二息电摇","citywalk","二息步行","二息歩行","儿媳不行","半块钱","二息电摇","citywalk","二息步行","二息歩行","儿媳不行","半块钱","二息电摇","citywalk","二息步行"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13001,"dxRomVersion":0,"sdRomVersion":13001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":341,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13001,"notes":{"total":124,"tap":103,"hold":15,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":341,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13001,"notes":{"total":265,"tap":227,"hold":13,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":341,"level_id":2,"level":"10","level_value":10.1,"note_designer":"mai-Star","romVersion":13001,"notes":{"total":400,"tap":332,"hold":5,"slide":48,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":341,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ロシェ@ペンギン","romVersion":13001,"notes":{"total":542,"tap":402,"hold":40,"slide":92,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":342,"players":1787,"title":"ファンタジーゾーン OPA-OPA! -GMT remix-","utTitle":null,"artist":"Hiro(SEGA)「ファンタジーゾーン」","albums":["ファンタジーゾーン opa-opa! -gmt remix-","opa","\uD83C\uDE38\uD83C\uDF1E\uD83C\uDF1D","幻想空间","申日月","三道理sayya","土著怪脸","ファンタジーゾーン opa-opa! -gmt remix-","opa","\uD83C\uDE38\uD83C\uDF1E\uD83C\uDF1D","幻想空间","申日月","三道理sayya","土著怪脸","ファンタジーゾーン opa-opa! -gmt remix-","opa","\uD83C\uDE38\uD83C\uDF1E\uD83C\uDF1D","幻想空间","申日月","三道理sayya","土著怪脸"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":142,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13004,"dxRomVersion":0,"sdRomVersion":13004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":342,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13004,"notes":{"total":160,"tap":130,"hold":21,"slide":2,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":342,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":13004,"notes":{"total":238,"tap":169,"hold":48,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":342,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":13004,"notes":{"total":455,"tap":371,"hold":51,"slide":22,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":342,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":13004,"notes":{"total":586,"tap":473,"hold":38,"slide":44,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":343,"players":1794,"title":"電車で電車でGO!GO!GO!GC! -GMT remix-","utTitle":null,"artist":"COSIO(ZUNTATA/TAITO)/沢城千春「電車でGO!」","albums":["電車で電車でgo!go!go!gc! -gmt remix-","电车","电车go","电车难题","電車で電車でgo!go!go!gc! -gmt remix-","电车","电车go","电车难题","電車で電車でgo!go!go!gc! -gmt remix-","电车","电车go","电车难题"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":134,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13004,"dxRomVersion":0,"sdRomVersion":13004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":343,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13004,"notes":{"total":178,"tap":164,"hold":4,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":343,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13004,"notes":{"total":252,"tap":178,"hold":9,"slide":24,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":343,"level_id":2,"level":"9","level_value":9.5,"note_designer":"某S氏","romVersion":13004,"notes":{"total":342,"tap":263,"hold":18,"slide":26,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":343,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":13004,"notes":{"total":546,"tap":437,"hold":7,"slide":75,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":344,"players":2020,"title":"RIDGE RACER STEPS -GMT remix-","utTitle":null,"artist":"Yuji Masubuchi(BNGI)「RIDGE RACER」","albums":["ridge racer steps -gmt remix-","汽车总动员","山脊赛车","赛车","ridge racer steps -gmt remix-","汽车总动员","山脊赛车","赛车","ridge racer steps -gmt remix-","汽车总动员","山脊赛车","赛车"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":240,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13004,"dxRomVersion":0,"sdRomVersion":13004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":344,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":13004,"notes":{"total":161,"tap":136,"hold":8,"slide":15,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":344,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":13004,"notes":{"total":260,"tap":228,"hold":11,"slide":14,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":344,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":13004,"notes":{"total":511,"tap":468,"hold":19,"slide":20,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":344,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":13004,"notes":{"total":640,"tap":509,"hold":12,"slide":87,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":345,"players":2957,"title":"リッジでリッジでGO!GO!GO! -GMT mashup-","utTitle":null,"artist":"Hiro(SEGA)「RIDGE RACER」「電車でGO!」","albums":["リッジでリッジでgo!go!go! -gmt mashup-","电车","绝赞电车","go学长","世嘉mashup","电车gogogo","电车go","山脊赛车×电车go","リッジでリッジでgo!go!go! -gmt mashup-","电车","绝赞电车","go学长","世嘉mashup","电车gogogo","电车go","山脊赛车×电车go","リッジでリッジでgo!go!go! -gmt mashup-","电车","绝赞电车","go学长","世嘉mashup","电车gogogo","电车go","山脊赛车×电车go","键盘电车"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":146,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13005,"dxRomVersion":0,"sdRomVersion":13005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":345,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13005,"notes":{"total":168,"tap":146,"hold":10,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":345,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":13005,"notes":{"total":372,"tap":326,"hold":16,"slide":23,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":345,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":13005,"notes":{"total":514,"tap":396,"hold":27,"slide":57,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":345,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"某S氏","romVersion":13005,"notes":{"total":733,"tap":536,"hold":10,"slide":28,"touch":0,"break_":159},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":346,"players":1936,"title":"オパ! オパ! RACER -GMT mashup-","utTitle":null,"artist":"COSIO(ZUNTATA/TAITO)「ファンタジーゾーン」「RIDGE RACER」","albums":["オパ! オパ! racer -gmt mashup-","赛车","才八","幻想空间×山脊赛车","太东mashup","坟头对撞","才八才八","オパ! オパ! racer -gmt mashup-","赛车","才八","幻想空间×山脊赛车","太东mashup","坟头对撞","才八才八","オパ! オパ! racer -gmt mashup-","赛车","才八","幻想空间×山脊赛车","太东mashup","坟头对撞","才八才八","扫键电车"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":172,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13005,"dxRomVersion":0,"sdRomVersion":13005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":346,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13005,"notes":{"total":162,"tap":135,"hold":17,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":346,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":13005,"notes":{"total":299,"tap":266,"hold":6,"slide":13,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":346,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":13005,"notes":{"total":378,"tap":287,"hold":12,"slide":68,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":346,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"チャン@DP皆伝","romVersion":13005,"notes":{"total":558,"tap":451,"hold":37,"slide":49,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":347,"players":3093,"title":"電車で電車でOPA!OPA!OPA! -GMT mashup-","utTitle":null,"artist":"Yuji Masubuchi(BNGI)「電車でGO!」「ファンタジーゾーン」","albums":["電車で電車でopa!opa!opa! -gmt mashup-","电车","电车go×幻想空间","电车opa","星星电车","南梦宫mashup","⭐\uD83D\uDE8E","0000","電車で電車でopa!opa!opa! -gmt mashup-","电车","电车go×幻想空间","电车opa","星星电车","南梦宫mashup","⭐\uD83D\uDE8E","0000","電車で電車でopa!opa!opa! -gmt mashup-","电车","电车go×幻想空间","电车opa","星星电车","南梦宫mashup","⭐\uD83D\uDE8E","0000"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":134,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":13005,"dxRomVersion":0,"sdRomVersion":13005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":347,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":13005,"notes":{"total":148,"tap":131,"hold":11,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":347,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":13005,"notes":{"total":366,"tap":329,"hold":6,"slide":20,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":347,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"mai-Star","romVersion":13005,"notes":{"total":471,"tap":373,"hold":46,"slide":21,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":347,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"譜面-100号","romVersion":13005,"notes":{"total":572,"tap":363,"hold":14,"slide":169,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":348,"players":6396,"title":"Axeria","utTitle":null,"artist":"AcuticNotes","albums":["axeria","ax","axeria","ax","jack仇恨教育1","axeria","ax"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":193,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15019,"dxRomVersion":0,"sdRomVersion":15019,"utRomVersion":0,"dx":{},"sd":{"0":{"id":348,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15019,"notes":{"total":233,"tap":218,"hold":3,"slide":9,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":348,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":15019,"notes":{"total":323,"tap":276,"hold":29,"slide":12,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":348,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"mai-Star","romVersion":15019,"notes":{"total":575,"tap":453,"hold":60,"slide":56,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":348,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Jack","romVersion":15019,"notes":{"total":888,"tap":700,"hold":53,"slide":133,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":349,"players":2383,"title":"ピーマンたべたら","utTitle":null,"artist":"カタオカツグミ","albums":["ピーマンたべたら","吃了青椒的话","\uD83E\uDED1","青椒","柿子椒","青椒歌","cyber","ピーマンたべたら","吃了青椒的话","\uD83E\uDED1","青椒","柿子椒","青椒歌","cyber","ピーマンたべたら","吃了青椒的话","\uD83E\uDED1","青椒","柿子椒","青椒歌","cyber"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14007,"dxRomVersion":0,"sdRomVersion":14007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":349,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14007,"notes":{"total":149,"tap":127,"hold":14,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":349,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":14007,"notes":{"total":241,"tap":209,"hold":10,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":349,"level_id":2,"level":"11","level_value":11.4,"note_designer":"Jack","romVersion":14007,"notes":{"total":506,"tap":443,"hold":12,"slide":46,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":349,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Revo@LC","romVersion":14007,"notes":{"total":691,"tap":521,"hold":5,"slide":88,"touch":0,"break_":77},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":700,"players":5734,"title":"疾走あんさんぶる","utTitle":{"100700":"[協]疾走あんさんぶる"},"artist":"ビートまりお(COOL&CREATE)","albums":["疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹","疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹","疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":195,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":0,"sdRomVersion":19011,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":700,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19011,"notes":{"total":262,"tap":243,"hold":8,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":700,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19011,"notes":{"total":424,"tap":362,"hold":45,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":700,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":19011,"notes":{"total":613,"tap":490,"hold":72,"slide":43,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":700,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":19011,"notes":{"total":890,"tap":720,"hold":52,"slide":104,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100700":{"id":100700,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":1365,"tap":1092,"hold":220,"slide":2,"touch":0,"break_":51},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":1025,"long":false},{"id":351,"players":4929,"title":"MIRROR of MAGIC","utTitle":null,"artist":"Shoichiro Hirata feat.SUIMI","albums":["mirror of magic","mom","魔镜","魔法镜子","镜魔","镜子魔法","橙代主题曲","mirror of magic","mom","魔镜","魔法镜子","镜魔","镜子魔法","橙代主题曲","mirror of magic","mom","魔镜","魔法镜子","镜魔","镜子魔法","橙代主题曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":135,"releaseDate":"20260116","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":351,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14000,"notes":{"total":202,"tap":191,"hold":5,"slide":1,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":351,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":14000,"notes":{"total":344,"tap":302,"hold":20,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":351,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":14000,"notes":{"total":402,"tap":291,"hold":36,"slide":61,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":351,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":14000,"notes":{"total":552,"tap":406,"hold":52,"slide":82,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":352,"players":2158,"title":"究極焼肉レストラン!お燐の地獄亭!","utTitle":null,"artist":"ARM+夕野ヨシミ(IOSYS)feat. 藤枝あかね","albums":["究極焼肉レストラン!お燐の地獄亭!","究极烧肉","烤肉","究極焼肉レストラン!お燐の地獄亭!","究极烧肉","烤肉","究極焼肉レストラン!お燐の地獄亭!","究极烧肉","烤肉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":185,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14007,"dxRomVersion":0,"sdRomVersion":14007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":352,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14007,"notes":{"total":148,"tap":135,"hold":7,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":352,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":14007,"notes":{"total":225,"tap":200,"hold":2,"slide":13,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":352,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":14007,"notes":{"total":379,"tap":302,"hold":21,"slide":22,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":352,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":14007,"notes":{"total":459,"tap":346,"hold":29,"slide":61,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":664,"long":false},{"id":353,"players":2327,"title":"shake it!","utTitle":null,"artist":"emon","albums":["shake it!","摇它","骑自行车的男人","shake it","骑车","shake it!","摇它","骑自行车的男人","shake it","骑车","shake it!","摇它","骑自行车的男人","shake it","骑车","自行车"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14003,"dxRomVersion":0,"sdRomVersion":14003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":353,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14003,"notes":{"total":152,"tap":146,"hold":1,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":353,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":14003,"notes":{"total":258,"tap":227,"hold":16,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":353,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":14003,"notes":{"total":374,"tap":300,"hold":44,"slide":20,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":353,"level_id":3,"level":"12","level_value":12.5,"note_designer":"Techno Kitchen","romVersion":14003,"notes":{"total":497,"tap":355,"hold":69,"slide":48,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":359,"players":3616,"title":"YU-MU","utTitle":null,"artist":"岸田教団&THE明星ロケッツ","albums":["yu-mu","文早苗","yumu","榆木","yu-mu","文早苗","yumu","榆木","yu-mu","文早苗","yumu","榆木"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16006,"dxRomVersion":0,"sdRomVersion":16006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":359,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16006,"notes":{"total":127,"tap":110,"hold":6,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":359,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":16006,"notes":{"total":282,"tap":218,"hold":47,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":359,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":16006,"notes":{"total":414,"tap":322,"hold":54,"slide":24,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":359,"level_id":3,"level":"13","level_value":13.2,"note_designer":"rioN","romVersion":16006,"notes":{"total":576,"tap":439,"hold":36,"slide":91,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":360,"players":4670,"title":"物凄い勢いでけーねが物凄いうた","utTitle":null,"artist":"Halozy","albums":["物凄い勢いでけーねが物凄いうた","以惊人的气势发出了惊人的声音","物凄势","物凄","罪","白泽球","慧音","三倍ice☆cream","物凄い勢いでけーねが物凄いうた","以惊人的气势发出了惊人的声音","物凄势","物凄","罪","白泽球","慧音","三倍ice☆cream","物凄い勢いでけーねが物凄いうた","以惊人的气势发出了惊人的声音","物凄势","物凄","罪","白泽球","慧音","三倍ice☆cream"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16001,"dxRomVersion":0,"sdRomVersion":16001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":360,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16001,"notes":{"total":149,"tap":135,"hold":6,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":360,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":16001,"notes":{"total":321,"tap":251,"hold":20,"slide":28,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":360,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":16001,"notes":{"total":388,"tap":280,"hold":27,"slide":54,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":360,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"mai-Star","romVersion":16001,"notes":{"total":599,"tap":452,"hold":30,"slide":84,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":462,"long":false},{"id":362,"players":1824,"title":"BETTER CHOICE","utTitle":null,"artist":"Jimmy Weckl feat.高貴みな","albums":["better choice","更好选择","更好的选择","\uD83D\uDC44","烈焰红唇","better choice","更好选择","更好的选择","\uD83D\uDC44","烈焰红唇","better choice","更好选择","更好的选择","\uD83D\uDC44","烈焰红唇"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":130,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14003,"dxRomVersion":0,"sdRomVersion":14003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":362,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14003,"notes":{"total":128,"tap":107,"hold":11,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":362,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":14003,"notes":{"total":347,"tap":320,"hold":10,"slide":15,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":362,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Techno Kitchen","romVersion":14003,"notes":{"total":370,"tap":291,"hold":42,"slide":28,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":362,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":14003,"notes":{"total":550,"tap":456,"hold":38,"slide":42,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":363,"players":27099,"title":"Oshama Scramble!","utTitle":{"100363":"[宴]Oshama Scramble!"},"artist":"t+pazolite","albums":["oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","dx牛奶猫","dx奶牛猫","oshama scramble!","dx奶","凯尔希打嵯峨","猫娘贴贴","凯尔希嵯峨贴贴","牛乳","dx牛奶","牛奶猫","丰胸奶","喝奶","\uD83E\uDD5B","奶猫","牛奶","dx奶猫","巧克力与香子兰","dx黑白哈基米","黑白哈基米","os!","牛奶猫dx"],"hasDx":true,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":190,"releaseDate":"20231012","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":15007,"dxRomVersion":20000,"sdRomVersion":15007,"utRomVersion":24003,"dx":{"0":{"id":10363,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":169,"tap":110,"hold":7,"slide":12,"touch":35,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10363,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":20000,"notes":{"total":408,"tap":317,"hold":29,"slide":10,"touch":35,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10363,"level_id":2,"level":"11","level_value":11.4,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":555,"tap":247,"hold":56,"slide":54,"touch":193,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10363,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":20000,"notes":{"total":1000,"tap":747,"hold":21,"slide":52,"touch":81,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":363,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15007,"notes":{"total":259,"tap":238,"hold":8,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":363,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":15007,"notes":{"total":486,"tap":438,"hold":23,"slide":9,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":363,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Techno Kitchen","romVersion":15007,"notes":{"total":594,"tap":299,"hold":79,"slide":116,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":363,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Jack","romVersion":15007,"notes":{"total":1111,"tap":944,"hold":0,"slide":68,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100363":{"id":100363,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":290,"tap":87,"hold":36,"slide":132,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":333,"long":false},{"id":364,"players":6311,"title":"D✪N’T ST✪P R✪CKIN’","utTitle":null,"artist":"EB(aka EarBreaker)","albums":["d✪n’t st✪p r✪ckin’","摇滚别停","dsr","小机器人","年度最佳游戏","秧bot","⭐⭐⭐","机器人","dont stop rockin","q群管家","年度最佳","宇宙机器人","tga年度最佳","\uD83E\uDD16","astrobot","d✪n’t st✪p r✪ckin’","摇滚别停","dsr","小机器人","年度最佳游戏","秧bot","⭐⭐⭐","机器人","dont stop rockin","q群管家","年度最佳","宇宙机器人","tga年度最佳","\uD83E\uDD16","astrobot","d✪n’t st✪p r✪ckin’","摇滚别停","dsr","小机器人","年度最佳游戏","秧bot","⭐⭐⭐","机器人","dont stop rockin","q群管家","年度最佳","宇宙机器人","tga年度最佳","\uD83E\uDD16","astrobot","玩机器"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15007,"dxRomVersion":0,"sdRomVersion":15007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":364,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15007,"notes":{"total":223,"tap":200,"hold":11,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":364,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":15007,"notes":{"total":405,"tap":357,"hold":31,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":364,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":15007,"notes":{"total":543,"tap":396,"hold":80,"slide":52,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":364,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Revo@LC","romVersion":15007,"notes":{"total":802,"tap":611,"hold":29,"slide":143,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":364,"level_id":4,"level":"13","level_value":13.5,"note_designer":"華火職人","romVersion":15007,"notes":{"total":669,"tap":482,"hold":24,"slide":116,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":365,"players":12130,"title":"ガラテアの螺旋","utTitle":null,"artist":"sasakure.UK","albums":["ガラテアの螺旋","白洛轩","伽拉泰亚的螺旋","螺旋","ガラテアのにゃんこ","\uD83C\uDF00","galatiaの螺旋","伽拉","ガラテアの螺旋","白洛轩","伽拉泰亚的螺旋","螺旋","ガラテアのにゃんこ","\uD83C\uDF00","galatiaの螺旋","伽拉","ガラテアの螺旋","白洛轩","伽拉泰亚的螺旋","螺旋","ガラテアのにゃんこ","\uD83C\uDF00","galatiaの螺旋","伽拉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15007,"dxRomVersion":0,"sdRomVersion":15007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":365,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15007,"notes":{"total":197,"tap":186,"hold":6,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":365,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":15007,"notes":{"total":307,"tap":261,"hold":32,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":365,"level_id":2,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":15007,"notes":{"total":561,"tap":493,"hold":17,"slide":46,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":365,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"チャン@DP皆伝","romVersion":15007,"notes":{"total":859,"tap":747,"hold":27,"slide":75,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":365,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"サファ太","romVersion":15007,"notes":{"total":899,"tap":676,"hold":120,"slide":93,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":366,"players":8378,"title":"oboro","utTitle":null,"artist":"ヒゲドライバー","albums":["oboro","火球","dx小火球","小火球","dx火球","oboro","火球","dx小火球","小火球","dx火球","oboro","火球","dx小火球","小火球","dx火球"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20231006","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":14008,"dxRomVersion":24005,"sdRomVersion":14008,"utRomVersion":0,"dx":{"0":{"id":10366,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":24005,"notes":{"total":160,"tap":132,"hold":13,"slide":4,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10366,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":24005,"notes":{"total":314,"tap":256,"hold":14,"slide":8,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10366,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":408,"tap":258,"hold":40,"slide":41,"touch":27,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10366,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":664,"tap":429,"hold":43,"slide":67,"touch":78,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":366,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14008,"notes":{"total":218,"tap":204,"hold":4,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":366,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":14008,"notes":{"total":370,"tap":344,"hold":8,"slide":15,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":366,"level_id":2,"level":"12","level_value":12.0,"note_designer":"mai-Star","romVersion":14008,"notes":{"total":505,"tap":379,"hold":54,"slide":64,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":366,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":14008,"notes":{"total":636,"tap":505,"hold":39,"slide":77,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":367,"players":6220,"title":"Dragoon","utTitle":null,"artist":"Shandy kubota","albums":["dragoon","龙","麻辣兔头","\uD83D\uDC32","龙先生","绝味鸭头","奶龙","多拉贡","鸭头","龙骑士","麻辣鸭头","绝味鸭脖","白龙","\uD83D\uDC09","dragoon","龙","麻辣兔头","\uD83D\uDC32","龙先生","绝味鸭头","奶龙","多拉贡","鸭头","龙骑士","麻辣鸭头","绝味鸭脖","白龙","\uD83D\uDC09","库克","lingslap是龙逼","dragoon","龙","麻辣兔头","\uD83D\uDC32","龙先生","绝味鸭头","奶龙","多拉贡","鸭头","龙骑士","麻辣鸭头","绝味鸭脖","白龙","\uD83D\uDC09"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20250606","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":14008,"dxRomVersion":0,"sdRomVersion":14008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":367,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14008,"notes":{"total":151,"tap":129,"hold":9,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":367,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":14008,"notes":{"total":359,"tap":311,"hold":21,"slide":18,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":367,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"Jack","romVersion":14008,"notes":{"total":512,"tap":412,"hold":44,"slide":49,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":367,"level_id":3,"level":"13","level_value":13.4,"note_designer":"mai-Star","romVersion":14008,"notes":{"total":650,"tap":470,"hold":76,"slide":86,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":367,"level_id":4,"level":"14","level_value":14.5,"note_designer":"シチミヘルツ","romVersion":14008,"notes":{"total":818,"tap":594,"hold":93,"slide":122,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":374,"players":6608,"title":"アンハッピーリフレイン","utTitle":null,"artist":"wowaka","albums":["アンハッピーリフレイン","副歌","ur","unhappy refrain","不高兴的副歌","unhappy","\uD83D\uDC97","アンハッピーリフレイン","副歌","ur","unhappy refrain","不高兴的副歌","unhappy","\uD83D\uDC97","アンハッピーリフレイン","副歌","ur","unhappy refrain","不高兴的副歌","unhappy","\uD83D\uDC97"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":205,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14006,"dxRomVersion":0,"sdRomVersion":14006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":374,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14006,"notes":{"total":177,"tap":169,"hold":2,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":374,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":14006,"notes":{"total":325,"tap":295,"hold":15,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":374,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":14006,"notes":{"total":549,"tap":447,"hold":32,"slide":48,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":374,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":14006,"notes":{"total":756,"tap":615,"hold":10,"slide":113,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":371,"long":false},{"id":375,"players":4753,"title":"One Step Ahead","utTitle":null,"artist":"伊東歌詞太郎","albums":["one step ahead","向前一步","一步向前","一步个头","one step ahead","向前一步","一步向前","一步个头","one step ahead","向前一步","一步向前","一步个头"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":186,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":25006,"sdRomVersion":14000,"utRomVersion":0,"dx":{"0":{"id":10375,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":196,"tap":155,"hold":17,"slide":4,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10375,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25006,"notes":{"total":285,"tap":231,"hold":21,"slide":6,"touch":25,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10375,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":485,"tap":390,"hold":25,"slide":26,"touch":15,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10375,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":25006,"notes":{"total":654,"tap":415,"hold":54,"slide":121,"touch":16,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":375,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14000,"notes":{"total":228,"tap":211,"hold":4,"slide":11,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":375,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":14000,"notes":{"total":275,"tap":235,"hold":25,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":375,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":14000,"notes":{"total":401,"tap":311,"hold":55,"slide":21,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":375,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":14000,"notes":{"total":491,"tap":333,"hold":52,"slide":91,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":376,"players":4376,"title":"L9","utTitle":null,"artist":"paraoka","albums":["l9","轴交互","绿9","l9","轴交互","绿9","l9","轴交互","绿9"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":256,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":0,"sdRomVersion":15000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":376,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15000,"notes":{"total":186,"tap":176,"hold":2,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":376,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":15000,"notes":{"total":381,"tap":336,"hold":26,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":376,"level_id":2,"level":"11","level_value":11.1,"note_designer":"合作だよ","romVersion":15000,"notes":{"total":567,"tap":506,"hold":21,"slide":33,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":376,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ロシェ@ペンギン","romVersion":15000,"notes":{"total":835,"tap":676,"hold":36,"slide":114,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":45,"long":false},{"id":378,"players":4854,"title":"planet dancer","utTitle":null,"artist":"樽木栄一郎","albums":["planet dancer","男人坐椅子","蹲马桶","pd","行星舞者","残月跳舞","星球舞者","planet dancer","男人坐椅子","蹲马桶","pd","行星舞者","残月跳舞","星球舞者","孙正涵拉不出屎","吕元伟窜稀","朱梓墨拉不出史","planet dancer","男人坐椅子","蹲马桶","pd","行星舞者","残月跳舞","星球舞者"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":127,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14006,"dxRomVersion":0,"sdRomVersion":14006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":378,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14006,"notes":{"total":134,"tap":114,"hold":8,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":378,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":14006,"notes":{"total":336,"tap":298,"hold":26,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":378,"level_id":2,"level":"11","level_value":11.2,"note_designer":"合作だよ","romVersion":14006,"notes":{"total":420,"tap":298,"hold":65,"slide":40,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":378,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":14006,"notes":{"total":549,"tap":384,"hold":0,"slide":157,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":378,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"ロシェ@ペンギン","romVersion":14006,"notes":{"total":732,"tap":595,"hold":87,"slide":37,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":379,"players":8370,"title":"Caliburne ~Story of the Legendary sword~","utTitle":null,"artist":"Project Grimoire","albums":["caliburne ~story of the legendary sword~","生煎1","圣剑","生煎","咖喱棒","圣剑1","石中剑","圣剑一","福瑞","福瑞1","caliburne ~story of the legendary sword~","生煎1","圣剑","生煎","咖喱棒","圣剑1","石中剑","圣剑一","福瑞","福瑞1","caliburne ~story of the legendary sword~","生煎1","圣剑","生煎","咖喱棒","圣剑1","石中剑","圣剑一","福瑞","福瑞1"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14010,"dxRomVersion":0,"sdRomVersion":14010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":379,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14010,"notes":{"total":216,"tap":173,"hold":30,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":379,"level_id":1,"level":"9","level_value":9.4,"note_designer":"-","romVersion":14010,"notes":{"total":501,"tap":426,"hold":25,"slide":42,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":379,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"合作だよ","romVersion":14010,"notes":{"total":680,"tap":533,"hold":35,"slide":93,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":379,"level_id":3,"level":"14","level_value":14.3,"note_designer":"はっぴー","romVersion":14010,"notes":{"total":956,"tap":734,"hold":10,"slide":208,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":499,"long":false},{"id":380,"players":4303,"title":"どうしてこうなった","utTitle":null,"artist":"うどんゲルゲ","albums":["どうしてこうなった","怎么这样","为什么会这样呢","怎会如此","为什么会变成这样呢","跳舞狗","白板","跳舞洗狗","为什么会变成这样","怎么回事呢","どうしてこうなった","怎么这样","为什么会这样呢","怎会如此","为什么会变成这样呢","跳舞狗","白板","跳舞洗狗","为什么会变成这样","怎么回事呢","どうしてこうなった","怎么这样","为什么会这样呢","怎会如此","为什么会变成这样呢","跳舞狗","白板","跳舞洗狗","为什么会变成这样","怎么回事呢"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15009,"dxRomVersion":0,"sdRomVersion":15009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":380,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15009,"notes":{"total":254,"tap":244,"hold":2,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":380,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":15009,"notes":{"total":350,"tap":327,"hold":4,"slide":15,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":380,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"某S氏","romVersion":15009,"notes":{"total":596,"tap":457,"hold":15,"slide":49,"touch":0,"break_":75},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":380,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":15009,"notes":{"total":934,"tap":735,"hold":70,"slide":84,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":381,"players":7079,"title":"B.B.K.K.B.K.K.","utTitle":null,"artist":"nora2r","albums":["b.b.k.k.b.k.k.","汉堡王","↑↑↓↓↑↓↓","bbk","bbkk","bbkkbkk","bass kick","↑↓","bk","b.b.k.k.b.k.k.","汉堡王","↑↑↓↓↑↓↓","bbk","bbkk","bbkkbkk","bass kick","↑↓","bk","b.b.k.k.b.k.k.","汉堡王","↑↑↓↓↑↓↓","bbk","bbkk","bbkkbkk","bass kick","↑↓","bk"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":381,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14000,"notes":{"total":258,"tap":247,"hold":4,"slide":1,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":381,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":14000,"notes":{"total":502,"tap":456,"hold":13,"slide":24,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":381,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":14000,"notes":{"total":676,"tap":581,"hold":26,"slide":61,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":381,"level_id":3,"level":"14","level_value":14.0,"note_designer":"mai-Star","romVersion":14000,"notes":{"total":904,"tap":767,"hold":12,"slide":116,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":3,"long":false},{"id":382,"players":4969,"title":"おこちゃま戦争","utTitle":null,"artist":"ギガ/れをる","albums":["おこちゃま戦争","孩子气","孩子气的战争","孩子气战争","战争","おこちゃま戦争","孩子气","孩子气的战争","孩子气战争","战争","おこちゃま戦争","孩子气","孩子气的战争","孩子气战争","战争"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":382,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14000,"notes":{"total":232,"tap":198,"hold":24,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":382,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":14000,"notes":{"total":376,"tap":345,"hold":7,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":382,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":14000,"notes":{"total":449,"tap":349,"hold":58,"slide":28,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":382,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":14000,"notes":{"total":740,"tap":658,"hold":27,"slide":40,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":368,"long":false},{"id":383,"players":2275,"title":"Link","utTitle":null,"artist":"Circle of friends(天月-あまつき-・un:c・伊東歌詞太郎・コニー・はしやん)","albums":["link(cof)","cof","link","朋友圈","link(cof)","cof","link","朋友圈","link(cof)","cof","link","朋友圈"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":198,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":383,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14000,"notes":{"total":278,"tap":269,"hold":4,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":383,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":14000,"notes":{"total":337,"tap":282,"hold":26,"slide":17,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":383,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":14000,"notes":{"total":425,"tap":367,"hold":28,"slide":22,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":383,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":14000,"notes":{"total":613,"tap":485,"hold":57,"slide":60,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":384,"players":5867,"title":"VERTeX","utTitle":null,"artist":"Hiro「maimai」より","albums":["vertex","\uD83C\uDF0A","芙卡洛斯","水神一","羽落心弦","水神1","芙宁娜","水神","vertex","\uD83C\uDF0A","芙卡洛斯","水神一","羽落心弦","水神1","芙宁娜","水神","vertex","\uD83C\uDF0A","芙卡洛斯","水神一","羽落心弦","水神1","芙宁娜","水神"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":237,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14004,"dxRomVersion":0,"sdRomVersion":14004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":384,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14004,"notes":{"total":197,"tap":184,"hold":4,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":384,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":14004,"notes":{"total":321,"tap":306,"hold":6,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":384,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"mai-Star","romVersion":14004,"notes":{"total":527,"tap":433,"hold":46,"slide":26,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":384,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Jack","romVersion":14004,"notes":{"total":888,"tap":725,"hold":36,"slide":119,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":486,"long":false},{"id":385,"players":4771,"title":"Ignis Danse","utTitle":null,"artist":"Yuji Masubuchi「太鼓の達人」より","albums":["ignis danse","火神","卫宫士郎","史尔特尔","跳高","红孩儿","一个妮子","一起去吃烤肉吧","火影忍者","ignis danse","火神","卫宫士郎","史尔特尔","跳高","红孩儿","一个妮子","一起去吃烤肉吧","火影忍者","ignis danse","火神","卫宫士郎","史尔特尔","跳高","红孩儿","一个妮子","一起去吃烤肉吧","火影忍者"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":246,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14004,"dxRomVersion":0,"sdRomVersion":14004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":385,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14004,"notes":{"total":144,"tap":125,"hold":8,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":385,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":14004,"notes":{"total":313,"tap":265,"hold":14,"slide":17,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":385,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":14004,"notes":{"total":643,"tap":538,"hold":64,"slide":10,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":385,"level_id":3,"level":"14","level_value":14.5,"note_designer":"はっぴー","romVersion":14004,"notes":{"total":999,"tap":779,"hold":17,"slide":104,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":386,"players":4094,"title":"Scars of FAUNA","utTitle":null,"artist":"猫叉Master「jubeat」より","albums":["scars of fauna","土神","钟离","scars of fauna","土神","钟离","scars of fauna","土神","钟离"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":165,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14004,"dxRomVersion":0,"sdRomVersion":14004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":386,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":14004,"notes":{"total":152,"tap":138,"hold":4,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":386,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":14004,"notes":{"total":382,"tap":341,"hold":25,"slide":9,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":386,"level_id":2,"level":"11","level_value":11.2,"note_designer":"mai-Star","romVersion":14004,"notes":{"total":444,"tap":341,"hold":55,"slide":29,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":386,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"チャン@DP皆伝","romVersion":14004,"notes":{"total":777,"tap":655,"hold":21,"slide":92,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":387,"players":5925,"title":"FUJIN Rumble","utTitle":null,"artist":"COSIO(ZUNTATA)「グルーヴコースター」より","albums":["fujin rumble","fujin","先天太乙神风诀","风神","巴巴托斯","福晋软贝","温迪","gc风神","大风神","fujin rumble","fujin","先天太乙神风诀","风神","巴巴托斯","福晋软贝","温迪","gc风神","大风神","fujin rumble","fujin","先天太乙神风诀","风神","巴巴托斯","福晋软贝","温迪","gc风神","大风神"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":192,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14004,"dxRomVersion":0,"sdRomVersion":14004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":387,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14004,"notes":{"total":191,"tap":154,"hold":17,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":387,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":14004,"notes":{"total":344,"tap":308,"hold":10,"slide":13,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":387,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":14004,"notes":{"total":509,"tap":413,"hold":24,"slide":65,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":387,"level_id":3,"level":"14","level_value":14.5,"note_designer":"某S氏","romVersion":14004,"notes":{"total":1000,"tap":982,"hold":3,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":388,"players":6624,"title":"きたさいたま2000","utTitle":null,"artist":"LindaAI-CUE(BNGI)「太鼓の達人」より","albums":["きたさいたま2000","北琦玉2000","过北脱新","五兄弟","埼玉2000","全网最帅五兄弟","\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01","下北泽2000","北琦玉","太鼓2000","光污染小人","2000","北埼玉","kita","琦玉2000","北埼玉2000","きたさいたま2000","北琦玉2000","过北脱新","五兄弟","埼玉2000","全网最帅五兄弟","\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01","下北泽2000","北琦玉","太鼓2000","光污染小人","2000","北埼玉","kita","琦玉2000","北埼玉2000","四个精子","windows2000","难听","きたさいたま2000","北琦玉2000","过北脱新","五兄弟","埼玉2000","全网最帅五兄弟","\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01\uD83D\uDE01","下北泽2000","北琦玉","太鼓2000","光污染小人","2000","北埼玉","kita","琦玉2000","北埼玉2000"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":222,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14002,"dxRomVersion":0,"sdRomVersion":14002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":388,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14002,"notes":{"total":199,"tap":187,"hold":4,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":388,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":14002,"notes":{"total":278,"tap":209,"hold":31,"slide":20,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":388,"level_id":2,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":14002,"notes":{"total":637,"tap":593,"hold":8,"slide":23,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":388,"level_id":3,"level":"14","level_value":14.2,"note_designer":"合作だよ","romVersion":14002,"notes":{"total":840,"tap":697,"hold":27,"slide":89,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":389,"players":7463,"title":"FLOWER","utTitle":null,"artist":"DJ YOSHITAKA「jubeat」より","albums":["flower","全機種制霸","\uD83C\uDF39","花","花神","flower","全機種制霸","\uD83C\uDF39","花","花神","flower","全機種制霸","\uD83C\uDF39","花","花神","扶寿二","扶老二"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":173,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14002,"dxRomVersion":0,"sdRomVersion":14002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":389,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14002,"notes":{"total":212,"tap":190,"hold":18,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":389,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":14002,"notes":{"total":297,"tap":248,"hold":24,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":389,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":14002,"notes":{"total":573,"tap":510,"hold":34,"slide":23,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":389,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"mai-Star","romVersion":14002,"notes":{"total":812,"tap":648,"hold":56,"slide":78,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":389,"level_id":4,"level":"14","level_value":14.2,"note_designer":"小鳥遊さん","romVersion":14002,"notes":{"total":961,"tap":771,"hold":91,"slide":55,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":203,"long":false},{"id":390,"players":5094,"title":"Got more raves?","utTitle":null,"artist":"E.G.G.「グルーヴコースター」より","albums":["got more raves?","gmr","郭沫若","got more raves?","gmr","郭沫若","got more raves?","gmr","郭沫若"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":266,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14002,"dxRomVersion":0,"sdRomVersion":14002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":390,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":14002,"notes":{"total":225,"tap":197,"hold":20,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":390,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":14002,"notes":{"total":363,"tap":330,"hold":16,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":390,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"某S氏","romVersion":14002,"notes":{"total":502,"tap":412,"hold":71,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":390,"level_id":3,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":14002,"notes":{"total":902,"tap":762,"hold":25,"slide":81,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":399,"players":2994,"title":"不毛!","utTitle":null,"artist":"ぽてんしゃる0","albums":["不毛!","不毛","木毛","不毛!","不毛","木毛","不毛!","不毛","木毛"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":14008,"dxRomVersion":0,"sdRomVersion":14008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":399,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":14008,"notes":{"total":144,"tap":131,"hold":3,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":399,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":14008,"notes":{"total":344,"tap":324,"hold":8,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":399,"level_id":2,"level":"10","level_value":10.1,"note_designer":"某S氏","romVersion":14008,"notes":{"total":487,"tap":383,"hold":35,"slide":49,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":399,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":14008,"notes":{"total":710,"tap":502,"hold":28,"slide":158,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":400,"players":4452,"title":"デッドレッドガールズ","utTitle":null,"artist":"MARUDARUMA","albums":["デッドレッドガールズ","dead red girls","荒野大镖妹","死红女","デッドレッドガールズ","dead red girls","荒野大镖妹","死红女","デッドレッドガールズ","dead red girls","荒野大镖妹","死红女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":230,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15013,"dxRomVersion":0,"sdRomVersion":15013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":400,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15013,"notes":{"total":195,"tap":181,"hold":4,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":400,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":15013,"notes":{"total":404,"tap":348,"hold":18,"slide":24,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":400,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"rioN","romVersion":15013,"notes":{"total":636,"tap":558,"hold":44,"slide":20,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":400,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":15013,"notes":{"total":917,"tap":744,"hold":22,"slide":136,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":401,"players":3961,"title":"赤心性:カマトト荒療治","utTitle":null,"artist":"スズム","albums":["赤心性:カマトト荒療治","赤心性","赤心性:カマトト荒療治","赤心性","赤心性:カマトト荒療治","赤心性"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":205,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":0,"sdRomVersion":15000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":401,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15000,"notes":{"total":200,"tap":191,"hold":2,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":401,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":15000,"notes":{"total":442,"tap":422,"hold":8,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":401,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":15000,"notes":{"total":561,"tap":423,"hold":35,"slide":55,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":401,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":15000,"notes":{"total":832,"tap":593,"hold":14,"slide":177,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":403,"players":3208,"title":"悪戯","utTitle":null,"artist":"ろん×田中秀和(MONACA)","albums":["悪戯","恶戏","恶习","悪戯","恶戏","恶习","悪戯","恶戏","恶习"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15003,"dxRomVersion":0,"sdRomVersion":15003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":403,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15003,"notes":{"total":207,"tap":191,"hold":5,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":403,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":15003,"notes":{"total":294,"tap":227,"hold":25,"slide":19,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":403,"level_id":2,"level":"10","level_value":10.4,"note_designer":"はっぴー","romVersion":15003,"notes":{"total":454,"tap":385,"hold":37,"slide":15,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":403,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"rioN","romVersion":15003,"notes":{"total":714,"tap":557,"hold":62,"slide":69,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":402,"long":false},{"id":404,"players":6118,"title":"響縁","utTitle":null,"artist":"豚乙女","albums":["響縁","猫耳灵梦","dx响缘","响缘","響縁","猫耳灵梦","dx响缘","响缘","响绿","響縁","猫耳灵梦","dx响缘","响缘"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":15000,"dxRomVersion":23004,"sdRomVersion":15000,"utRomVersion":0,"dx":{"0":{"id":10404,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":23004,"notes":{"total":118,"tap":93,"hold":6,"slide":2,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10404,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":23004,"notes":{"total":302,"tap":232,"hold":15,"slide":6,"touch":27,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10404,"level_id":2,"level":"10","level_value":10.5,"note_designer":"じゃこレモン","romVersion":23004,"notes":{"total":519,"tap":428,"hold":22,"slide":20,"touch":28,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10404,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":23004,"notes":{"total":707,"tap":547,"hold":44,"slide":88,"touch":12,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":404,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15000,"notes":{"total":181,"tap":164,"hold":12,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":404,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":15000,"notes":{"total":305,"tap":282,"hold":6,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":404,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"某S氏","romVersion":15000,"notes":{"total":442,"tap":362,"hold":39,"slide":27,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":404,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":15000,"notes":{"total":674,"tap":507,"hold":20,"slide":125,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":411,"players":22277,"title":"初音ミクの消失","utTitle":null,"artist":"cosMo@暴走P","albums":["初音ミクの消失","dx消失","绿南十字","消失","初音未来的消失","初音ミクの消失","dx消失","绿南十字","消失","初音未来的消失","初音ミクの消失","dx消失","绿南十字","消失","初音未来的消失"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":240,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":24002,"sdRomVersion":16000,"utRomVersion":0,"dx":{"0":{"id":10411,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":24002,"notes":{"total":257,"tap":232,"hold":8,"slide":3,"touch":7,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10411,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":24002,"notes":{"total":375,"tap":324,"hold":13,"slide":10,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10411,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Luxizhel","romVersion":24002,"notes":{"total":640,"tap":506,"hold":56,"slide":33,"touch":32,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10411,"level_id":3,"level":"14","level_value":14.5,"note_designer":"はっぴー","romVersion":24002,"notes":{"total":1039,"tap":828,"hold":50,"slide":102,"touch":20,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":411,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16000,"notes":{"total":257,"tap":243,"hold":5,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":411,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":16000,"notes":{"total":443,"tap":376,"hold":53,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":411,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"某S氏","romVersion":16000,"notes":{"total":633,"tap":503,"hold":60,"slide":43,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":411,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"チャン@DP皆伝","romVersion":16000,"notes":{"total":961,"tap":784,"hold":34,"slide":104,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":7,"long":false},{"id":412,"players":2830,"title":"イノコリ先生","utTitle":null,"artist":"HoneyWorks","albums":["イノコリ先生","留堂老师","先生","男同","男同老师","男同互瞪","イノコリ先生","留堂老师","先生","男同","男同老师","男同互瞪","イノコリ先生","留堂老师","先生","男同","男同老师","男同互瞪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16004,"dxRomVersion":0,"sdRomVersion":16004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":412,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16004,"notes":{"total":162,"tap":142,"hold":10,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":412,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":16004,"notes":{"total":358,"tap":316,"hold":15,"slide":18,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":412,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":16004,"notes":{"total":495,"tap":338,"hold":92,"slide":48,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":412,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":16004,"notes":{"total":807,"tap":656,"hold":41,"slide":91,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":413,"players":3673,"title":"キャプテン・ムラサのケツアンカー","utTitle":null,"artist":"ARM+夕野ヨシミ(IOSYS)feat.山本椛","albums":["キャプテン・ムラサのケツアンカー","村纱水蜜","船长","キャプテン・ムラサのケツアンカー","村纱水蜜","船长","キャプテン・ムラサのケツアンカー","村纱水蜜","船长"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15008,"dxRomVersion":0,"sdRomVersion":15008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":413,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15008,"notes":{"total":164,"tap":145,"hold":10,"slide":2,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":413,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":15008,"notes":{"total":236,"tap":209,"hold":14,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":413,"level_id":2,"level":"11","level_value":11.5,"note_designer":"某S氏","romVersion":15008,"notes":{"total":361,"tap":275,"hold":30,"slide":37,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":413,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":15008,"notes":{"total":573,"tap":430,"hold":16,"slide":93,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2032,"long":false},{"id":414,"players":4208,"title":"若い力 -SEGA HARD GIRLS MIX-","utTitle":null,"artist":"SC-3000(シーさん)/CV.相沢 舞、SG-1000(せん)/CV.芹澤 優、SG-1000Ⅱ(せんつー)/CV.大空直美、ゲームギア(ムギ)/CV.田中美海、ロボピッチャ(ぴっちゃん)/CV.もものはるな「Hi☆sCoool! セハガール」 [アニメPV]","albums":["若い力 -sega hard girls mix-","若以力","世嘉少女","年轻的力量","sbga","sega社歌","sega","世嘉社歌","世嘉女孩","若力","世嘉硬件女孩","若い力 -sega hard girls mix-","若以力","世嘉少女","年轻的力量","sbga","sega社歌","sega","世嘉社歌","世嘉女孩","若力","世嘉硬件女孩","若い力 -sega hard girls mix-","若以力","世嘉少女","年轻的力量","sbga","sega社歌","sega","世嘉社歌","世嘉女孩","若力","世嘉硬件女孩"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":162,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15006,"dxRomVersion":0,"sdRomVersion":15006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":414,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15006,"notes":{"total":178,"tap":151,"hold":19,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":414,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":15006,"notes":{"total":340,"tap":311,"hold":10,"slide":16,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":414,"level_id":2,"level":"10","level_value":10.0,"note_designer":"某S氏","romVersion":15006,"notes":{"total":383,"tap":264,"hold":41,"slide":53,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":414,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":15006,"notes":{"total":695,"tap":538,"hold":10,"slide":116,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":414,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"チャン@DP皆伝","romVersion":15006,"notes":{"total":495,"tap":276,"hold":0,"slide":197,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":394,"long":false},{"id":417,"players":16785,"title":"ウミユリ海底譚","utTitle":{"110417":"[習]ウミユリ海底譚"},"artist":"n-buna","albums":["ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","金朗","ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","海底捞"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":15005,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":417,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15005,"notes":{"total":180,"tap":164,"hold":6,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":417,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":15005,"notes":{"total":380,"tap":336,"hold":34,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":417,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"某S氏","romVersion":15005,"notes":{"total":463,"tap":386,"hold":39,"slide":22,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":417,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":15005,"notes":{"total":759,"tap":648,"hold":21,"slide":76,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110417":{"id":110417,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":666,"tap":549,"hold":7,"slide":109,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":225,"long":false},{"id":418,"players":4613,"title":"welcome to maimai!! with マイマイマー","utTitle":null,"artist":"Hiro feat.越田Rute隆人&ビートまりお","albums":["welcome to maimai!! with マイマイマー","maimai","go! go! 575","欢迎来到舞萌的世界","welcome to maimai!! with マイマイマー","maimai","go! go! 575","欢迎来到舞萌的世界","welcome to maimai!! with マイマイマー","maimai","go! go! 575","欢迎来到舞萌的世界"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":163,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15004,"dxRomVersion":0,"sdRomVersion":15004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":418,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15004,"notes":{"total":207,"tap":175,"hold":11,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":418,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":15004,"notes":{"total":424,"tap":350,"hold":36,"slide":22,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":418,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":15004,"notes":{"total":478,"tap":300,"hold":65,"slide":33,"touch":0,"break_":80},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":418,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"某S氏","romVersion":15004,"notes":{"total":644,"tap":417,"hold":71,"slide":104,"touch":0,"break_":52},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":419,"players":4947,"title":"ストリーミングハート","utTitle":null,"artist":"DECO*27","albums":["ストリーミングハート","嘉然","流心","嘉然比心","ストリーミングハート","嘉然","流心","嘉然比心","ストリーミングハート","嘉然","流心","嘉然比心"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":210,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15013,"dxRomVersion":0,"sdRomVersion":15013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":419,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":15013,"notes":{"total":173,"tap":157,"hold":10,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":419,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":15013,"notes":{"total":293,"tap":225,"hold":33,"slide":21,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":419,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":15013,"notes":{"total":517,"tap":400,"hold":71,"slide":24,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":419,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":15013,"notes":{"total":742,"tap":594,"hold":45,"slide":93,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":113,"long":false},{"id":420,"players":5332,"title":"Change Our MIRAI!","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["change our mirai!","改变未来","四对奶子","小心彩绿","com","五个女人","不含月铃姐妹","五对奶子","四大一小","五对柰子","dx五对奶子","change our mirai!","改变未来","四对奶子","小心彩绿","com","五个女人","不含月铃姐妹","五对奶子","四大一小","五对柰子","dx五对奶子","change our mirai!","改变未来","四对奶子","小心彩绿","com","五个女人","不含月铃姐妹","五对奶子","四大一小","五对柰子","dx五对奶子"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":256,"releaseDate":"20191115","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":15010,"dxRomVersion":20103,"sdRomVersion":15010,"utRomVersion":0,"dx":{"0":{"id":10420,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20103,"notes":{"total":194,"tap":138,"hold":32,"slide":6,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10420,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":20103,"notes":{"total":322,"tap":219,"hold":56,"slide":16,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10420,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"小鳥遊さん","romVersion":20103,"notes":{"total":539,"tap":280,"hold":77,"slide":39,"touch":84,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10420,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":20103,"notes":{"total":827,"tap":575,"hold":83,"slide":101,"touch":41,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":420,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15010,"notes":{"total":174,"tap":141,"hold":15,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":420,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":15010,"notes":{"total":348,"tap":277,"hold":40,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":420,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":15010,"notes":{"total":618,"tap":445,"hold":90,"slide":55,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":420,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン","romVersion":15010,"notes":{"total":846,"tap":640,"hold":59,"slide":114,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":145,"long":false},{"id":421,"players":5743,"title":"Aiolos","utTitle":null,"artist":"xi","albums":["aiolos","艾欧洛斯","阿米诺斯","艾俄洛斯","肉包","aio","aiolos","艾欧洛斯","阿米诺斯","艾俄洛斯","肉包","aio","aiolos","艾欧洛斯","阿米诺斯","艾俄洛斯","肉包","aio"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15017,"dxRomVersion":0,"sdRomVersion":15017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":421,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15017,"notes":{"total":298,"tap":273,"hold":6,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":421,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":15017,"notes":{"total":402,"tap":348,"hold":22,"slide":22,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":421,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":15017,"notes":{"total":727,"tap":638,"hold":23,"slide":48,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":421,"level_id":3,"level":"14","level_value":14.3,"note_designer":"某S氏","romVersion":15017,"notes":{"total":1100,"tap":989,"hold":20,"slide":61,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2432,"long":false},{"id":422,"players":6676,"title":"LANCE","utTitle":null,"artist":"Ras","albums":["lance","懒死","兰瑟","烂死","蓝瑟","枪","兰斯","缆车","开元","蓝枪","lance","懒死","兰瑟","烂死","蓝瑟","枪","兰斯","缆车","开元","蓝枪","lance","懒死","兰瑟","烂死","蓝瑟","枪","兰斯","缆车","开元","蓝枪"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":156,"releaseDate":"20241011","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":15014,"dxRomVersion":25006,"sdRomVersion":15014,"utRomVersion":0,"dx":{"0":{"id":10422,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":194,"tap":168,"hold":11,"slide":4,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10422,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25006,"notes":{"total":345,"tap":290,"hold":15,"slide":6,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10422,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":502,"tap":373,"hold":56,"slide":38,"touch":18,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10422,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":25006,"notes":{"total":860,"tap":644,"hold":54,"slide":67,"touch":42,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":422,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":15014,"notes":{"total":212,"tap":198,"hold":8,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":422,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":15014,"notes":{"total":354,"tap":297,"hold":24,"slide":17,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":422,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":15014,"notes":{"total":589,"tap":485,"hold":44,"slide":51,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":422,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"mai-Star","romVersion":15014,"notes":{"total":855,"tap":704,"hold":28,"slide":109,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":424,"players":3550,"title":"橙の幻想郷音頭","utTitle":null,"artist":"発熱巫女~ず","albums":["橙の幻想郷音頭","橙","幻想乡音头","音头","\uD83D\uDC31","橙舞","欢乐斗地主","橙音头","橙之幻想乡","橙的幻想乡音头","橙の幻想郷音頭","橙","幻想乡音头","音头","\uD83D\uDC31","橙舞","欢乐斗地主","橙音头","橙之幻想乡","橙的幻想乡音头","橙の幻想郷音頭","橙","幻想乡音头","音头","\uD83D\uDC31","橙舞","欢乐斗地主","橙音头","橙之幻想乡","橙的幻想乡音头"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":136,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16013,"dxRomVersion":0,"sdRomVersion":16013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":424,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16013,"notes":{"total":206,"tap":195,"hold":4,"slide":1,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":424,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16013,"notes":{"total":206,"tap":182,"hold":16,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":424,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":16013,"notes":{"total":477,"tap":348,"hold":23,"slide":71,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":424,"level_id":3,"level":"13","level_value":13.3,"note_designer":"某S氏","romVersion":16013,"notes":{"total":564,"tap":456,"hold":7,"slide":75,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":123,"long":false},{"id":425,"players":4085,"title":"東方妖々夢 ~the maximum moving about~","utTitle":null,"artist":"石鹸屋","albums":["東方妖々夢 ~the maximum moving about~","妖妖梦","东方不可拘束","东方妖梦","东方妖妖梦","车万不可拘束","東方妖々夢 ~the maximum moving about~","妖妖梦","东方不可拘束","东方妖梦","东方妖妖梦","车万不可拘束","東方妖々夢 ~the maximum moving about~","妖妖梦","东方不可拘束","东方妖梦","东方妖妖梦","车万不可拘束"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":196,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16013,"dxRomVersion":0,"sdRomVersion":16013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":425,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16013,"notes":{"total":329,"tap":307,"hold":10,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":425,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":16013,"notes":{"total":483,"tap":445,"hold":15,"slide":17,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":425,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"しろいろ","romVersion":16013,"notes":{"total":611,"tap":526,"hold":30,"slide":47,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":425,"level_id":3,"level":"13","level_value":13.3,"note_designer":"合作だよ","romVersion":16013,"notes":{"total":780,"tap":558,"hold":45,"slide":167,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":121,"long":false},{"id":426,"players":5791,"title":"蒼空に舞え、墨染の桜","utTitle":null,"artist":"Silver Forest","albums":["蒼空に舞え、墨染の桜","妖梦","苍空舞","苍空飞舞墨染之樱","苍空","糯香柠檬茶","墨染","墨染樱","蒼空に舞え、墨染の桜","妖梦","苍空舞","苍空飞舞墨染之樱","苍空","糯香柠檬茶","墨染","墨染樱","蒼空に舞え、墨染の桜","妖梦","苍空舞","苍空飞舞墨染之樱","苍空","糯香柠檬茶","墨染","墨染樱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":150,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16013,"dxRomVersion":0,"sdRomVersion":16013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":426,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16013,"notes":{"total":215,"tap":180,"hold":29,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":426,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":16013,"notes":{"total":349,"tap":306,"hold":30,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":426,"level_id":2,"level":"11","level_value":11.0,"note_designer":"rioN","romVersion":16013,"notes":{"total":517,"tap":377,"hold":78,"slide":54,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":426,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":16013,"notes":{"total":698,"tap":459,"hold":47,"slide":182,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":93,"long":false},{"id":427,"players":4889,"title":"少女幻葬戦慄曲 ~ Necro Fantasia","utTitle":null,"artist":"どぶウサギ","albums":["少女幻葬戦慄曲 ~ necro fantasia","幻葬","少女幻葬","死灵幻想曲","少女幻葬戦慄曲 ~ necro fantasia","幻葬","少女幻葬","死灵幻想曲","少女幻葬戦慄曲 ~ necro fantasia","幻葬","少女幻葬","死灵幻想曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":182,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16013,"dxRomVersion":0,"sdRomVersion":16013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":427,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16013,"notes":{"total":268,"tap":237,"hold":17,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":427,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":16013,"notes":{"total":418,"tap":378,"hold":32,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":427,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"畳返し","romVersion":16013,"notes":{"total":476,"tap":361,"hold":78,"slide":30,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":427,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"rioN","romVersion":16013,"notes":{"total":978,"tap":798,"hold":18,"slide":137,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":431,"players":8090,"title":"Contrapasso -paradiso-","utTitle":null,"artist":"t+pazolite","albums":["contrapasso -paradiso-","⚙","天堂","天堂齿轮","⚙️","齿轮","cp","齿轮天堂","ctps","contrapasso -paradiso-","⚙","天堂","天堂齿轮","⚙️","齿轮","cp","齿轮天堂","ctps","contrapasso -paradiso-","⚙","天堂","天堂齿轮","⚙️","齿轮","cp","齿轮天堂","ctps"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":243,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17005,"dxRomVersion":0,"sdRomVersion":17005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":431,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17005,"notes":{"total":287,"tap":266,"hold":12,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":431,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":17005,"notes":{"total":493,"tap":436,"hold":16,"slide":32,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":431,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":17005,"notes":{"total":751,"tap":665,"hold":26,"slide":48,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":431,"level_id":3,"level":"14","level_value":14.4,"note_designer":"rioN","romVersion":17005,"notes":{"total":1024,"tap":776,"hold":24,"slide":209,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":432,"players":12859,"title":"幸せになれる隠しコマンドがあるらしい","utTitle":null,"artist":"うたたP","albums":["幸せになれる隠しコマンドがあるらしい","幸隐","结月流汗","似乎有着能够变得幸福的隐藏指令","↓→↑→→↓→→↑↑↓↓←→←→","紫砂","视力检测","→↓↑→→↓→→↑↑↓↓←→←→","幸福指令","むちゃぶり","喵梦","结月缘","⭐\uD83C\uDF27️","结月缘黑丝兔女郎","\uD83D\uDE05","幸せになれる隠しコマンドがあるらしい","幸隐","结月流汗","似乎有着能够变得幸福的隐藏指令","↓→↑→→↓→→↑↑↓↓←→←→","紫砂","视力检测","→↓↑→→↓→→↑↑↓↓←→←→","幸福指令","むちゃぶり","喵梦","结月缘","⭐\uD83C\uDF27️","结月缘黑丝兔女郎","\uD83D\uDE05","幸压抑","性压抑","幸せになれる隠しコマンドがあるらしい","幸隐","结月流汗","似乎有着能够变得幸福的隐藏指令","↓→↑→→↓→→↑↑↓↓←→←→","紫砂","视力检测","→↓↑→→↓→→↑↑↓↓←→←→","幸福指令","むちゃぶり","喵梦","结月缘","⭐\uD83C\uDF27️","结月缘黑丝兔女郎","\uD83D\uDE05"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":142,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18511,"dxRomVersion":0,"sdRomVersion":18511,"utRomVersion":0,"dx":{},"sd":{"0":{"id":432,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18511,"notes":{"total":276,"tap":256,"hold":4,"slide":2,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":432,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18511,"notes":{"total":450,"tap":346,"hold":80,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":432,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"小鳥遊さん","romVersion":18511,"notes":{"total":538,"tap":388,"hold":81,"slide":59,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":432,"level_id":3,"level":"14","level_value":14.0,"note_designer":"玉子豆腐","romVersion":18511,"notes":{"total":850,"tap":621,"hold":37,"slide":175,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":284,"long":false},{"id":434,"players":3767,"title":"フラグメンツ -T.V. maimai edit-","utTitle":null,"artist":"発熱巫女~ず","albums":["フラグメンツ -t.v. maimai edit-","tv","东方穿心莲","fragments","maimai edit","碎片","风见幽香","フラグメンツ -t.v. maimai edit-","tv","东方穿心莲","fragments","maimai edit","碎片","风见幽香","フラグメンツ -t.v. maimai edit-","tv","东方穿心莲","fragments","maimai edit","碎片","风见幽香"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16006,"dxRomVersion":0,"sdRomVersion":16006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":434,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16006,"notes":{"total":158,"tap":129,"hold":12,"slide":12,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":434,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":16006,"notes":{"total":337,"tap":311,"hold":12,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":434,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Revo@LC","romVersion":16006,"notes":{"total":485,"tap":407,"hold":30,"slide":46,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":434,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"某S氏","romVersion":16006,"notes":{"total":598,"tap":402,"hold":56,"slide":122,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":435,"players":3071,"title":"願いを呼ぶ季節","utTitle":null,"artist":"舞風-MAIKAZE/時音-TOKINE","albums":["願いを呼ぶ季節","呼唤愿望的季节","季节","梦想夏乡","梦想夏乡主题曲","红蓝","愿呼季节","願いを呼ぶ季節","呼唤愿望的季节","季节","梦想夏乡","梦想夏乡主题曲","红蓝","愿呼季节","願いを呼ぶ季節","呼唤愿望的季节","季节","梦想夏乡","梦想夏乡主题曲","红蓝","愿呼季节"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":170,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16006,"dxRomVersion":0,"sdRomVersion":16006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":435,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16006,"notes":{"total":118,"tap":103,"hold":6,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":435,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":16006,"notes":{"total":254,"tap":215,"hold":8,"slide":20,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":435,"level_id":2,"level":"10","level_value":10.4,"note_designer":"Jack","romVersion":16006,"notes":{"total":317,"tap":243,"hold":37,"slide":31,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":435,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":16006,"notes":{"total":447,"tap":364,"hold":38,"slide":42,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":437,"players":3572,"title":"Yet Another ”drizzly rain”","utTitle":null,"artist":"myu314 feat.あまね(COOL&CREATE)","albums":["yet another ”drizzly rain”","姆q","帕秋莉","yet another ”drizzly rain”","姆q","帕秋莉","yet another ”drizzly rain”","姆q","帕秋莉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":175,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15018,"dxRomVersion":0,"sdRomVersion":15018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":437,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15018,"notes":{"total":152,"tap":134,"hold":4,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":437,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":15018,"notes":{"total":314,"tap":286,"hold":16,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":437,"level_id":2,"level":"10","level_value":10.4,"note_designer":"ぴちネコ","romVersion":15018,"notes":{"total":436,"tap":348,"hold":25,"slide":43,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":437,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"某S氏","romVersion":15018,"notes":{"total":597,"tap":467,"hold":35,"slide":72,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":91,"long":false},{"id":438,"players":5336,"title":"四次元跳躍機関","utTitle":null,"artist":"koutaq","albums":["四次元跳躍機関","四次元跳跃机关","大小姐","跳楼机","机关","跳跃机关","四次元","冰风","四次元跳躍機関","四次元跳跃机关","大小姐","跳楼机","机关","跳跃机关","四次元","冰风","四次元跳躍機関","四次元跳跃机关","大小姐","跳楼机","机关","跳跃机关","四次元","冰风"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":135,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15018,"dxRomVersion":0,"sdRomVersion":15018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":438,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":15018,"notes":{"total":137,"tap":117,"hold":14,"slide":1,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":438,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":15018,"notes":{"total":247,"tap":207,"hold":18,"slide":17,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":438,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":15018,"notes":{"total":379,"tap":307,"hold":27,"slide":37,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":438,"level_id":3,"level":"13","level_value":13.4,"note_designer":"rioN","romVersion":15018,"notes":{"total":636,"tap":537,"hold":38,"slide":43,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":120,"long":false},{"id":439,"players":5796,"title":"最終鬼畜妹・一部声","utTitle":null,"artist":"ビートまりお","albums":["最終鬼畜妹・一部声","鬼叫","鬼畜妹一部声","蓝蓝路","一部声","易卜生","鬼畜妹","月女儿","月儿子青春版","最終鬼畜妹・一部声","鬼叫","鬼畜妹一部声","蓝蓝路","一部声","易卜生","鬼畜妹","月女儿","月儿子青春版","最終鬼畜妹・一部声","鬼叫","鬼畜妹一部声","蓝蓝路","一部声","易卜生","鬼畜妹","月女儿","月儿子青春版"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":15018,"dxRomVersion":0,"sdRomVersion":15018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":439,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":15018,"notes":{"total":234,"tap":210,"hold":4,"slide":4,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":439,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":15018,"notes":{"total":499,"tap":409,"hold":32,"slide":37,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":439,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":15018,"notes":{"total":651,"tap":551,"hold":79,"slide":17,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":439,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"rioN","romVersion":15018,"notes":{"total":841,"tap":598,"hold":37,"slide":164,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":92,"long":false},{"id":446,"players":4800,"title":"GEMINI -M-","utTitle":null,"artist":"Tatsh","albums":["gemini -m-","gemini","双子座","双子星","戈米尼","genshin","gemini -m-","gemini","双子座","双子星","戈米尼","genshin","gemini -m-","gemini","双子座","双子星","戈米尼","genshin","googlegemini"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16009,"dxRomVersion":0,"sdRomVersion":16009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":446,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16009,"notes":{"total":292,"tap":239,"hold":18,"slide":11,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":446,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":16009,"notes":{"total":425,"tap":379,"hold":21,"slide":15,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":446,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":16009,"notes":{"total":663,"tap":586,"hold":32,"slide":37,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":446,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"mai-Star","romVersion":16009,"notes":{"total":1076,"tap":898,"hold":54,"slide":102,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":8123,"long":false},{"id":447,"players":4278,"title":"+♂","utTitle":null,"artist":"ギガ/れをる ダンス アルスマグナ","albums":["+♂","+男","加男","plus男子","正男","下头男","+♂","+男","加男","plus男子","正男","下头男","+♂","+男","加男","plus男子","正男","下头男","男的来了"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":447,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16000,"notes":{"total":260,"tap":246,"hold":8,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":447,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":16000,"notes":{"total":439,"tap":406,"hold":16,"slide":5,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":447,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"Jack","romVersion":16000,"notes":{"total":536,"tap":446,"hold":51,"slide":31,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":447,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":16000,"notes":{"total":814,"tap":606,"hold":26,"slide":144,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":448,"players":5922,"title":"ありふれたせかいせいふく","utTitle":null,"artist":"ピノキオピー","albums":["ありふれたせかいせいふく","世界征服","初音围巾","围巾初音白背景","司空见惯的世界征服","司空见惯","红围巾","ありふれたせかいせいふく","世界征服","初音围巾","围巾初音白背景","司空见惯的世界征服","司空见惯","红围巾","ありふれたせかいせいふく","世界征服","初音围巾","围巾初音白背景","司空见惯的世界征服","司空见惯","红围巾"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16011,"dxRomVersion":0,"sdRomVersion":16011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":448,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16011,"notes":{"total":213,"tap":187,"hold":11,"slide":8,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":448,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":16011,"notes":{"total":348,"tap":300,"hold":19,"slide":19,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":448,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"しろいろ","romVersion":16011,"notes":{"total":436,"tap":357,"hold":45,"slide":23,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":448,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":16011,"notes":{"total":892,"tap":732,"hold":61,"slide":79,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2810,"long":false},{"id":451,"players":7338,"title":"頓珍漢の宴","utTitle":null,"artist":"ピノキオピー","albums":["頓珍漢の宴","珍顿汉","\uD83E\uDD53","顿珍汉","\uD83D\uDE4F","顿珍汉宴","初音上菜","吃饭","顿珍汉之宴","顿震撼","汉尼拔之宴","顿珍汉吃席","頓珍漢の宴","珍顿汉","\uD83E\uDD53","顿珍汉","\uD83D\uDE4F","顿珍汉宴","初音上菜","吃饭","顿珍汉之宴","顿震撼","汉尼拔之宴","顿珍汉吃席","頓珍漢の宴","珍顿汉","\uD83E\uDD53","顿珍汉","\uD83D\uDE4F","顿珍汉宴","初音上菜","吃饭","顿珍汉之宴","顿震撼","汉尼拔之宴","顿珍汉吃席"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16011,"dxRomVersion":0,"sdRomVersion":16011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":451,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16011,"notes":{"total":252,"tap":229,"hold":7,"slide":11,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":451,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":16011,"notes":{"total":444,"tap":390,"hold":36,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":451,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":16011,"notes":{"total":641,"tap":570,"hold":43,"slide":16,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":451,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":16011,"notes":{"total":987,"tap":843,"hold":25,"slide":92,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":595,"long":false},{"id":453,"players":3274,"title":"Garden Of The Dragon","utTitle":null,"artist":"Kai「Wonderland Wars」","albums":["garden of the dragon","花园龙","中国龙","wonderland","龙花园","喔喔喔","龙之花园","garden of the dragon","花园龙","中国龙","wonderland","龙花园","喔喔喔","龙之花园","garden of the dragon","花园龙","中国龙","wonderland","龙花园","喔喔喔","龙之花园"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":120,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16011,"dxRomVersion":0,"sdRomVersion":16011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":453,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":16011,"notes":{"total":111,"tap":95,"hold":10,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":453,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16011,"notes":{"total":281,"tap":215,"hold":32,"slide":22,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":453,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":16011,"notes":{"total":525,"tap":433,"hold":36,"slide":48,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":453,"level_id":3,"level":"13","level_value":13.5,"note_designer":"某S氏","romVersion":16011,"notes":{"total":676,"tap":531,"hold":11,"slide":67,"touch":0,"break_":67},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":454,"players":3505,"title":"After Burner","utTitle":null,"artist":"東京アクティブNEETs","albums":["after burner","ab","东京热","燃尽","后烧","冲破火网","after burner","ab","东京热","燃尽","后烧","冲破火网","after burner","ab","东京热","燃尽","后烧","冲破火网"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16007,"dxRomVersion":0,"sdRomVersion":16007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":454,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16007,"notes":{"total":235,"tap":211,"hold":4,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":454,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":16007,"notes":{"total":431,"tap":384,"hold":30,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":454,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":16007,"notes":{"total":488,"tap":343,"hold":23,"slide":79,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":454,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"譜面-100号","romVersion":16007,"notes":{"total":915,"tap":774,"hold":27,"slide":78,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":455,"players":3395,"title":"Counselor","utTitle":null,"artist":"DECO*27 feat.echo","albums":["counselor","小护士","律师","counselor","小护士","律师","counselor","小护士","律师"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":135,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":455,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16000,"notes":{"total":207,"tap":190,"hold":8,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":455,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":16000,"notes":{"total":353,"tap":287,"hold":27,"slide":27,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":455,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":16000,"notes":{"total":488,"tap":349,"hold":53,"slide":42,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":455,"level_id":3,"level":"12","level_value":12.4,"note_designer":"Techno Kitchen","romVersion":16000,"notes":{"total":720,"tap":526,"hold":69,"slide":88,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":75,"long":false},{"id":456,"players":10120,"title":"Glorious Crown","utTitle":{"100456":"[蔵]Glorious Crown"},"artist":"xi","albums":["glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝","glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝","才羽毛毛入","glorious crown","王冠","番茄炒蛋","\uD83D\uDC51","\uD83D\uDC51\r\n\uD83D\uDD34","fd2","gc","团子","荣耀的皇冠","cat^o^","皇冠","史莱姆皇帝"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":225,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":16014,"dxRomVersion":0,"sdRomVersion":16014,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":456,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16014,"notes":{"total":344,"tap":317,"hold":8,"slide":12,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":456,"level_id":1,"level":"10","level_value":10.5,"note_designer":"-","romVersion":16014,"notes":{"total":617,"tap":572,"hold":14,"slide":19,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":456,"level_id":2,"level":"13","level_value":13.2,"note_designer":"ぴちネコ","romVersion":16014,"notes":{"total":777,"tap":642,"hold":33,"slide":65,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":456,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"合作だよ","romVersion":16014,"notes":{"total":1150,"tap":989,"hold":18,"slide":89,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100456":{"id":100456,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":1282,"tap":1192,"hold":15,"slide":56,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":457,"players":3557,"title":"言ノ葉遊戯","utTitle":null,"artist":"S!N・高橋菜々×ひとしずく・やま△","albums":["言ノ葉遊戯","言叶游戏","文字游戏","游戏","言ノ葉遊戯","言叶游戏","文字游戏","游戏","言ノ葉遊戯","言叶游戏","文字游戏","游戏"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":164,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":457,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16000,"notes":{"total":111,"tap":86,"hold":10,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":457,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":16000,"notes":{"total":276,"tap":231,"hold":18,"slide":17,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":457,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":16000,"notes":{"total":425,"tap":346,"hold":0,"slide":61,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":457,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"mai-Star","romVersion":16000,"notes":{"total":570,"tap":392,"hold":0,"slide":149,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":160,"long":false},{"id":458,"players":3956,"title":"りばーぶ","utTitle":null,"artist":"高橋菜々×岡部啓一(MONACA)","albums":["りばーぶ","reverb","两个人喝茶","混响","りばーぶ","reverb","两个人喝茶","混响","りばーぶ","reverb","两个人喝茶","混响"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":120,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":458,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":16000,"notes":{"total":125,"tap":100,"hold":15,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":458,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":16000,"notes":{"total":269,"tap":231,"hold":16,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":458,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":16000,"notes":{"total":288,"tap":194,"hold":28,"slide":46,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":458,"level_id":3,"level":"11","level_value":11.4,"note_designer":"rioN","romVersion":16000,"notes":{"total":470,"tap":353,"hold":6,"slide":98,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":403,"long":false},{"id":459,"players":3347,"title":"幾四音-Ixion-","utTitle":null,"artist":"M.S.S Project","albums":["幾四音-ixion-","几四音","急死银","幾四音","第四爱","幾四音-ixion-","几四音","急死银","幾四音","第四爱","幾四音-ixion-","几四音","急死银","幾四音","第四爱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":210,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":459,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16000,"notes":{"total":249,"tap":233,"hold":8,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":459,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":16000,"notes":{"total":368,"tap":278,"hold":59,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":459,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ロシェ@ペンギン","romVersion":16000,"notes":{"total":585,"tap":465,"hold":54,"slide":43,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":459,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":16000,"notes":{"total":794,"tap":548,"hold":51,"slide":136,"touch":0,"break_":59},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":163,"long":false},{"id":460,"players":4595,"title":"閃鋼のブリューナク","utTitle":null,"artist":"sasakure.UK","albums":["閃鋼のブリューナク","闪钢","閃鋼のブリューナク","闪钢","閃鋼のブリューナク","闪钢"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16002,"dxRomVersion":0,"sdRomVersion":16002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":460,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16002,"notes":{"total":178,"tap":161,"hold":7,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":460,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":16002,"notes":{"total":372,"tap":284,"hold":67,"slide":9,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":460,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"rioN","romVersion":16002,"notes":{"total":573,"tap":475,"hold":48,"slide":42,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":460,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":16002,"notes":{"total":1001,"tap":915,"hold":23,"slide":52,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":141,"long":false},{"id":461,"players":5017,"title":"無敵We are one!!","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["無敵we are one!!","无敌","我们是一","奢香夫人","我们是无敌1","我们是1","无敌!我们是1","无敌我们是1","无敌we are one","无敌我们是一","無敵we are one!!","无敌","我们是一","奢香夫人","我们是无敌1","我们是1","无敌!我们是1","无敌我们是1","无敌we are one","无敌我们是一","無敵we are one!!","无敌","我们是一","奢香夫人","我们是无敌1","我们是1","无敌!我们是1","无敌我们是1","无敌we are one","无敌我们是一"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":461,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17000,"notes":{"total":234,"tap":207,"hold":14,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":461,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":17000,"notes":{"total":465,"tap":412,"hold":20,"slide":22,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":461,"level_id":2,"level":"10","level_value":10.1,"note_designer":"ロシェ@ペンギン","romVersion":17000,"notes":{"total":544,"tap":428,"hold":40,"slide":50,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":461,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Techno Kitchen","romVersion":17000,"notes":{"total":938,"tap":721,"hold":45,"slide":143,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":200,"long":false},{"id":462,"players":6790,"title":"7thSense","utTitle":null,"artist":"削除","albums":["7thsense","阿玛希斯特之死","7s","旗杆","第七个sensei","阿斯特瑞之死","七感","7","七拍子","7感","7th","第七感","7thsense","阿玛希斯特之死","7s","旗杆","第七个sensei","阿斯特瑞之死","七感","7","七拍子","7感","7th","第七感","7thsense","阿玛希斯特之死","7s","旗杆","第七个sensei","阿斯特瑞之死","七感","7","七拍子","7感","7th","第七感"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16007,"dxRomVersion":0,"sdRomVersion":16007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":462,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16007,"notes":{"total":247,"tap":206,"hold":25,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":462,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":16007,"notes":{"total":404,"tap":348,"hold":30,"slide":17,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":462,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ぴちネコ","romVersion":16007,"notes":{"total":545,"tap":403,"hold":59,"slide":57,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":462,"level_id":3,"level":"14","level_value":14.4,"note_designer":"ロシェ@ペンギン","romVersion":16007,"notes":{"total":859,"tap":640,"hold":46,"slide":96,"touch":0,"break_":77},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2783,"long":false},{"id":463,"players":5152,"title":"FEEL the BEATS","utTitle":null,"artist":"A-One","albums":["feel the beats","ftb","感受节拍","fb","feel the beats","ftb","感受节拍","fb","feel the beats","ftb","感受节拍","fb"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":166,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16012,"dxRomVersion":0,"sdRomVersion":16012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":463,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16012,"notes":{"total":243,"tap":222,"hold":11,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":463,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":16012,"notes":{"total":495,"tap":466,"hold":10,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":463,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"某S氏","romVersion":16012,"notes":{"total":548,"tap":414,"hold":80,"slide":44,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":463,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"しろいろ","romVersion":16012,"notes":{"total":931,"tap":789,"hold":30,"slide":87,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":463,"level_id":4,"level":"13+","level_value":13.9,"note_designer":"ぴちネコ","romVersion":16012,"notes":{"total":1000,"tap":740,"hold":71,"slide":101,"touch":0,"break_":88},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":717,"long":false},{"id":464,"players":9532,"title":"Revive The Rave","utTitle":null,"artist":"void(Mournfinale)","albums":["revive the rave","rtr","硫酸盐","润体乳","乳头人","revive the rave","rtr","硫酸盐","润体乳","乳头人","吕元伟翻白眼","revive the rave","rtr","硫酸盐","润体乳","乳头人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16005,"dxRomVersion":0,"sdRomVersion":16005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":464,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16005,"notes":{"total":310,"tap":294,"hold":12,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":464,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":16005,"notes":{"total":403,"tap":327,"hold":35,"slide":19,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":464,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":16005,"notes":{"total":631,"tap":519,"hold":46,"slide":42,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":464,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Techno Kitchen","romVersion":16005,"notes":{"total":958,"tap":790,"hold":55,"slide":43,"touch":0,"break_":70},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":464,"level_id":4,"level":"14","level_value":14.4,"note_designer":"ぴちネコ","romVersion":16005,"notes":{"total":912,"tap":646,"hold":105,"slide":61,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":465,"players":4360,"title":"スリップフリップ","utTitle":null,"artist":"tilt-six feat.串伊トモミ","albums":["スリップフリップ","010","大脸妹","耳机娘","大头妹","不二家","耳机女","slip flip","slipflip","スリップフリップ","010","大脸妹","耳机娘","大头妹","不二家","耳机女","slip flip","slipflip","スリップフリップ","010","大脸妹","耳机娘","大头妹","不二家","耳机女","slip flip","slipflip"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":143,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16012,"dxRomVersion":0,"sdRomVersion":16012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":465,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16012,"notes":{"total":200,"tap":184,"hold":10,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":465,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":16012,"notes":{"total":436,"tap":384,"hold":8,"slide":33,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":465,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ロシェ@ペンギン","romVersion":16012,"notes":{"total":476,"tap":352,"hold":50,"slide":61,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":465,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":16012,"notes":{"total":832,"tap":537,"hold":40,"slide":235,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":466,"players":2959,"title":"Jimang Shot","utTitle":null,"artist":"じまんぐ","albums":["jimang shot","囧仙","报纸歌","大叔唱歌","2015","jimang shot","囧仙","报纸歌","大叔唱歌","2015","jimang shot","囧仙","报纸歌","大叔唱歌","2015"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":164,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16013,"dxRomVersion":0,"sdRomVersion":16013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":466,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":16013,"notes":{"total":238,"tap":204,"hold":18,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":466,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":16013,"notes":{"total":378,"tap":353,"hold":10,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":466,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"ロシェ@ペンギン","romVersion":16013,"notes":{"total":498,"tap":378,"hold":48,"slide":56,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":466,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":16013,"notes":{"total":710,"tap":504,"hold":44,"slide":149,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":177,"long":false},{"id":467,"players":3597,"title":"儚きもの人間","utTitle":null,"artist":"豚乙女","albums":["儚きもの人間","少女炼狱","人间","梦人间","儚きもの人間","少女炼狱","人间","梦人间","儚きもの人間","少女炼狱","人间","梦人间"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":467,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17000,"notes":{"total":167,"tap":139,"hold":14,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":467,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":17000,"notes":{"total":387,"tap":311,"hold":64,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":467,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"某S氏","romVersion":17000,"notes":{"total":536,"tap":441,"hold":38,"slide":41,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":467,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":17000,"notes":{"total":902,"tap":736,"hold":26,"slide":119,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":427,"long":false},{"id":468,"players":3221,"title":"ラブリー☆えんじぇる!!","utTitle":null,"artist":"あべにゅうぷろじぇくと feat.佐倉紗織&井上みゆ「パチスロ快盗天使ツインエンジェル」","albums":["ラブリー☆えんじぇる!!","女同14","可爱天使","ラブリー☆えんじぇる!!","女同14","可爱天使","ラブリー☆えんじぇる!!","女同14","可爱天使"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":173,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16008,"dxRomVersion":0,"sdRomVersion":16008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":468,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16008,"notes":{"total":145,"tap":130,"hold":5,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":468,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":16008,"notes":{"total":260,"tap":234,"hold":14,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":468,"level_id":2,"level":"10","level_value":10.1,"note_designer":"某S氏","romVersion":16008,"notes":{"total":382,"tap":310,"hold":37,"slide":12,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":468,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ロシェ@ペンギン","romVersion":16008,"notes":{"total":501,"tap":360,"hold":43,"slide":66,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":354,"long":false},{"id":471,"players":4899,"title":"オモイヨシノ","utTitle":null,"artist":"loos feat. 柊莉杏","albums":["オモイヨシノ","恋咏樱","オモイヨシノ","恋咏樱","オモイヨシノ","恋咏樱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":168,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16008,"dxRomVersion":0,"sdRomVersion":16008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":471,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16008,"notes":{"total":182,"tap":156,"hold":14,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":471,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":16008,"notes":{"total":372,"tap":306,"hold":17,"slide":18,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":471,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":16008,"notes":{"total":534,"tap":438,"hold":39,"slide":33,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":471,"level_id":3,"level":"13","level_value":13.3,"note_designer":"mai-Star","romVersion":16008,"notes":{"total":675,"tap":497,"hold":56,"slide":110,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":391,"long":false},{"id":472,"players":7919,"title":"アージェントシンメトリー","utTitle":null,"artist":"Sta feat.b","albums":["アージェントシンメトリー","pink op","草莓章鱼","银对称性","银色对称","银对称","银色对称性","桃代主题曲","科目二","pink主题曲","方向盘","argent symmetry","白银对称","白银","sta","白银对称性","アージェントシンメトリー","pink op","草莓章鱼","银对称性","银色对称","银对称","银色对称性","桃代主题曲","科目二","pink主题曲","方向盘","argent symmetry","白银对称","白银","sta","白银对称性","アージェントシンメトリー","pink op","草莓章鱼","银对称性","银色对称","银对称","银色对称性","桃代主题曲","科目二","pink主题曲","方向盘","argent symmetry","白银对称","白银","sta","白银对称性"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":172,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16002,"dxRomVersion":0,"sdRomVersion":16002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":472,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16002,"notes":{"total":208,"tap":190,"hold":10,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":472,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":16002,"notes":{"total":342,"tap":306,"hold":20,"slide":9,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":472,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"Revo@LC","romVersion":16002,"notes":{"total":500,"tap":423,"hold":35,"slide":25,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":472,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":16002,"notes":{"total":746,"tap":629,"hold":12,"slide":101,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":472,"level_id":4,"level":"14","level_value":14.0,"note_designer":"譜面-100号","romVersion":16002,"notes":{"total":956,"tap":751,"hold":115,"slide":67,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2848,"long":false},{"id":1069,"players":10058,"title":"太陽系デスコ","utTitle":{"111069":"[協]太陽系デスコ"},"artist":"ナユタン星人","albums":["太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也","太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也","太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":25000,"dx":{"0":{"id":11069,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":184,"tap":151,"hold":18,"slide":2,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11069,"level_id":1,"level":"6","level_value":6.7,"note_designer":"-","romVersion":20100,"notes":{"total":330,"tap":243,"hold":44,"slide":4,"touch":19,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11069,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":20100,"notes":{"total":500,"tap":373,"hold":39,"slide":48,"touch":24,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11069,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":713,"tap":466,"hold":28,"slide":108,"touch":98,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111069":{"id":111069,"level_id":0,"level":"11+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":386,"tap":243,"hold":15,"slide":52,"touch":20,"break_":56},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":844,"long":false},{"id":480,"players":2882,"title":"HIMITSUスパーク","utTitle":null,"artist":"カラスは真っ白","albums":["himitsuスパーク","秘密火花","秘密","himitsuスパーク","秘密火花","秘密","himitsuスパーク","秘密火花","秘密"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":156,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":480,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16000,"notes":{"total":188,"tap":166,"hold":15,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":480,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":16000,"notes":{"total":322,"tap":273,"hold":24,"slide":21,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":480,"level_id":2,"level":"10","level_value":10.1,"note_designer":"Techno Kitchen","romVersion":16000,"notes":{"total":517,"tap":441,"hold":25,"slide":42,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":480,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":16000,"notes":{"total":668,"tap":532,"hold":50,"slide":79,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":482,"players":3279,"title":"Party 4U ”holy nite mix”","utTitle":null,"artist":"Cranky","albums":["party 4u ”holy nite mix”","4u","派对4你","p4u","party 4u ”holy nite mix”","4u","派对4你","p4u","party 4u ”holy nite mix”","4u","派对4你","p4u"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":159,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16000,"dxRomVersion":0,"sdRomVersion":16000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":482,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":16000,"notes":{"total":153,"tap":141,"hold":6,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":482,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":16000,"notes":{"total":266,"tap":230,"hold":20,"slide":4,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":482,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ぴちネコ","romVersion":16000,"notes":{"total":470,"tap":401,"hold":0,"slide":44,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":482,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":16000,"notes":{"total":695,"tap":571,"hold":14,"slide":82,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":483,"players":3649,"title":"囲い無き世は一期の月影","utTitle":null,"artist":"豚乙女","albums":["囲い無き世は一期の月影","月影","妹红玉足","囲い無き世は一期の月影","月影","妹红玉足","囲い無き世は一期の月影","月影","妹红玉足"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":16006,"dxRomVersion":0,"sdRomVersion":16006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":483,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":16006,"notes":{"total":212,"tap":190,"hold":10,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":483,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":16006,"notes":{"total":338,"tap":290,"hold":16,"slide":20,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":483,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":16006,"notes":{"total":459,"tap":348,"hold":48,"slide":56,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":483,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"rioN","romVersion":16006,"notes":{"total":718,"tap":613,"hold":16,"slide":72,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":488,"players":7861,"title":"Lividi","utTitle":null,"artist":"Feryquitous","albums":["lividi","执念","李云迪","李维迪","李伟迪","lividi","执念","李云迪","李维迪","李伟迪","lividi","执念","李云迪","李维迪","李伟迪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":191,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18015,"dxRomVersion":0,"sdRomVersion":18015,"utRomVersion":0,"dx":{},"sd":{"0":{"id":488,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18015,"notes":{"total":218,"tap":194,"hold":11,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":488,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":18015,"notes":{"total":443,"tap":373,"hold":32,"slide":30,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":488,"level_id":2,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":18015,"notes":{"total":629,"tap":481,"hold":62,"slide":74,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":488,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Moon Strix","romVersion":18015,"notes":{"total":983,"tap":822,"hold":52,"slide":101,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":490,"players":3423,"title":"Infantoon Fantasy","utTitle":null,"artist":"t+pazolite","albums":["infantoon fantasy","中指","两茄子","中指机器人","竖中指","\uD83D\uDD95","\uD83D\uDD95\uD83C\uDFFB","竖中指机器人","if","infantoon fantasy","中指","两茄子","中指机器人","竖中指","\uD83D\uDD95","\uD83D\uDD95\uD83C\uDFFB","竖中指机器人","if","infantoon fantasy","中指","两茄子","中指机器人","竖中指","\uD83D\uDD95","\uD83D\uDD95\uD83C\uDFFB","竖中指机器人","if"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":185,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17004,"dxRomVersion":0,"sdRomVersion":17004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":490,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17004,"notes":{"total":308,"tap":270,"hold":20,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":490,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":17004,"notes":{"total":418,"tap":335,"hold":40,"slide":31,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":490,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":17004,"notes":{"total":635,"tap":511,"hold":33,"slide":83,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":490,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ぴちネコ","romVersion":17004,"notes":{"total":1039,"tap":840,"hold":25,"slide":128,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":71,"long":false},{"id":492,"players":4287,"title":"Jumble Rumble","utTitle":null,"artist":"INNOCENT NOIZE","albums":["jumble rumble","dj鼠","貌似困","jr","打碟猫","早苗叠","魔法猫咪","猫打碟","小豆泽心羽","午夜dj","猫猫打碟","dj猫","jumble rumble","dj鼠","貌似困","jr","打碟猫","早苗叠","魔法猫咪","猫打碟","小豆泽心羽","午夜dj","猫猫打碟","dj猫","刘浩打碟","jumble rumble","dj鼠","貌似困","jr","打碟猫","早苗叠","魔法猫咪","猫打碟","小豆泽心羽","午夜dj","猫猫打碟","dj猫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17007,"dxRomVersion":0,"sdRomVersion":17007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":492,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17007,"notes":{"total":295,"tap":274,"hold":8,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":492,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":17007,"notes":{"total":457,"tap":415,"hold":21,"slide":13,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":492,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Revo@LC","romVersion":17007,"notes":{"total":702,"tap":595,"hold":22,"slide":70,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":492,"level_id":3,"level":"14","level_value":14.0,"note_designer":"某S氏","romVersion":17007,"notes":{"total":1081,"tap":949,"hold":9,"slide":90,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":493,"players":2772,"title":"Imitation:Loud Lounge","utTitle":null,"artist":"Ino(chronoize)","albums":["imitation:loud lounge","面具","丘丘人","呀哈哈","奇面族","面具娃娃","imitation:loud lounge","面具","丘丘人","呀哈哈","奇面族","面具娃娃","imitation:loud lounge","面具","丘丘人","呀哈哈","奇面族","面具娃娃"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20250124","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":18014,"dxRomVersion":0,"sdRomVersion":18014,"utRomVersion":0,"dx":{},"sd":{"0":{"id":493,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18014,"notes":{"total":194,"tap":173,"hold":6,"slide":10,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":493,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18014,"notes":{"total":323,"tap":288,"hold":12,"slide":19,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":493,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"rioN","romVersion":18014,"notes":{"total":561,"tap":417,"hold":58,"slide":81,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":493,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Techno Kitchen","romVersion":18014,"notes":{"total":637,"tap":468,"hold":60,"slide":96,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":494,"players":6289,"title":"CITRUS MONSTER","utTitle":null,"artist":"D-Cee","albums":["citrus monster","欧润吉","柑橙怪兽","柚子怪兽","橘怪","橘子怪兽","cm","\uD83C\uDF4A","citrus monster","欧润吉","柑橙怪兽","柚子怪兽","橘怪","橘子怪兽","cm","\uD83C\uDF4A","citrus monster","欧润吉","柑橙怪兽","柚子怪兽","橘怪","橘子怪兽","cm","\uD83C\uDF4A"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":220,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17015,"dxRomVersion":0,"sdRomVersion":17015,"utRomVersion":0,"dx":{},"sd":{"0":{"id":494,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":17015,"notes":{"total":308,"tap":281,"hold":18,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":494,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":17015,"notes":{"total":432,"tap":394,"hold":25,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":494,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ぴちネコ","romVersion":17015,"notes":{"total":648,"tap":499,"hold":73,"slide":52,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":494,"level_id":3,"level":"14","level_value":14.5,"note_designer":"ロシェ@ペンギン","romVersion":17015,"notes":{"total":1032,"tap":817,"hold":48,"slide":122,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":722,"long":false},{"id":495,"players":5347,"title":"Hyper Active","utTitle":null,"artist":"HiTECH NINJA","albums":["hyper active","我们仨","黄卡车","泥头车","小黄车","撞大运","卡车","擎天柱","hyper active","我们仨","黄卡车","泥头车","小黄车","撞大运","卡车","擎天柱","hyper active","我们仨","黄卡车","泥头车","小黄车","撞大运","卡车","擎天柱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17011,"dxRomVersion":0,"sdRomVersion":17011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":495,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17011,"notes":{"total":292,"tap":250,"hold":25,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":495,"level_id":1,"level":"9","level_value":9.1,"note_designer":"-","romVersion":17011,"notes":{"total":445,"tap":392,"hold":32,"slide":13,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":495,"level_id":2,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":17011,"notes":{"total":660,"tap":442,"hold":150,"slide":54,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":495,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ぴちネコ","romVersion":17011,"notes":{"total":1064,"tap":859,"hold":78,"slide":105,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":496,"long":false},{"id":496,"players":10413,"title":"AMAZING MIGHTYYYY!!!!","utTitle":null,"artist":"WAiKURO","albums":["amazing mightyyyy!!!!","!!!!","不可思议的大概概概概","恋爱裁判3","四个感叹号","惊异全能","am","恋爱裁判2","amazing mightyyyy!!!!","!!!!","不可思议的大概概概概","恋爱裁判3","四个感叹号","惊异全能","am","恋爱裁判2","amazing mightyyyy!!!!","!!!!","不可思议的大概概概概","恋爱裁判3","四个感叹号","惊异全能","am","恋爱裁判2","惊人强大"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17018,"dxRomVersion":0,"sdRomVersion":17018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":496,"level_id":0,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":17018,"notes":{"total":374,"tap":347,"hold":10,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":496,"level_id":1,"level":"9+","level_value":9.8,"note_designer":"-","romVersion":17018,"notes":{"total":576,"tap":496,"hold":60,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":496,"level_id":2,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":17018,"notes":{"total":900,"tap":781,"hold":36,"slide":71,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":496,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"合作だよ","romVersion":17018,"notes":{"total":1126,"tap":865,"hold":69,"slide":151,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":496,"level_id":4,"level":"14","level_value":14.5,"note_designer":"はっぴー","romVersion":17018,"notes":{"total":1139,"tap":874,"hold":65,"slide":162,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":538,"long":false},{"id":497,"players":2403,"title":"fake!fake!","utTitle":null,"artist":"カラスは真っ白","albums":["fake!fake!","弹簧","万物皆虚","骗子","fake","假!假!","彩虹圈","假的假的","fakefake","fake!fake!","弹簧","万物皆虚","骗子","fake","假!假!","彩虹圈","假的假的","fakefake","fake!fake!","弹簧","万物皆虚","骗子","fake","假!假!","彩虹圈","假的假的","fakefake"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":156,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17001,"dxRomVersion":0,"sdRomVersion":17001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":497,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17001,"notes":{"total":173,"tap":159,"hold":5,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":497,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":17001,"notes":{"total":332,"tap":274,"hold":29,"slide":21,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":497,"level_id":2,"level":"10","level_value":10.1,"note_designer":"Jack","romVersion":17001,"notes":{"total":474,"tap":358,"hold":62,"slide":41,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":497,"level_id":3,"level":"13","level_value":13.0,"note_designer":"rioN","romVersion":17001,"notes":{"total":756,"tap":639,"hold":28,"slide":77,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":506,"players":3595,"title":"セハガガガンバッちゃう!!","utTitle":null,"artist":"Hi☆sCoool! セハガール","albums":["セハガガガンバッちゃう!!","世嘉硬件娘","SBGA","sega hard girls","好几个娘们","世嘉硬件女孩","セハガガガンバッちゃう!!","世嘉硬件娘","SBGA","sega hard girls","好几个娘们","世嘉硬件女孩","セハガガガンバッちゃう!!","世嘉硬件娘","SBGA","sega hard girls","好几个娘们","世嘉硬件女孩"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":202,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17010,"dxRomVersion":0,"sdRomVersion":17010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":506,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17010,"notes":{"total":244,"tap":198,"hold":29,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":506,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":17010,"notes":{"total":378,"tap":330,"hold":15,"slide":16,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":506,"level_id":2,"level":"11","level_value":11.5,"note_designer":"Revo@LC","romVersion":17010,"notes":{"total":607,"tap":452,"hold":32,"slide":43,"touch":0,"break_":80},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":506,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":17010,"notes":{"total":735,"tap":412,"hold":12,"slide":222,"touch":0,"break_":89},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":482,"long":false},{"id":507,"players":7097,"title":"キミノヨゾラ哨戒班","utTitle":null,"artist":"Orangestar","albums":["キミノヨゾラ哨戒班","标准哨戒班","你的夜空哨戒班","哨戒班","橙哨戒班","烧鸡班","キミノヨゾラ哨戒班","标准哨戒班","你的夜空哨戒班","哨戒班","橙哨戒班","烧鸡班","キミノヨゾラ哨戒班","标准哨戒班","你的夜空哨戒班","哨戒班","橙哨戒班","烧鸡班"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":507,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17000,"notes":{"total":195,"tap":171,"hold":12,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":507,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":17000,"notes":{"total":353,"tap":325,"hold":16,"slide":11,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":507,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ぴちネコ","romVersion":17000,"notes":{"total":532,"tap":418,"hold":34,"slide":51,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":507,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Revo@LC","romVersion":17000,"notes":{"total":741,"tap":603,"hold":27,"slide":96,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":508,"players":11405,"title":"恋愛裁判","utTitle":{"100508":"[協]恋愛裁判"},"artist":"40mP","albums":["恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判","恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判","恋愛裁判","恋爱裁判","情人节","逆转裁判","18z","有罪","恋爱审判"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":134,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":508,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17000,"notes":{"total":165,"tap":147,"hold":8,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":508,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":17000,"notes":{"total":304,"tap":266,"hold":21,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":508,"level_id":2,"level":"10","level_value":10.0,"note_designer":"合作だよ","romVersion":17000,"notes":{"total":393,"tap":218,"hold":109,"slide":45,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":508,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"合作だよ","romVersion":17000,"notes":{"total":632,"tap":472,"hold":65,"slide":69,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100508":{"id":100508,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":855,"tap":607,"hold":160,"slide":56,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":224,"long":false},{"id":511,"players":4994,"title":"パーフェクト生命","utTitle":null,"artist":"ナユタン星人","albums":["パーフェクト生命","完美生命","✌\uD83C\uDFFB\uD83D\uDE0E✌\uD83C\uDFFB","生命","パーフェクト生命","完美生命","✌\uD83C\uDFFB\uD83D\uDE0E✌\uD83C\uDFFB","生命","パーフェクト生命","完美生命","✌\uD83C\uDFFB\uD83D\uDE0E✌\uD83C\uDFFB","生命"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17003,"dxRomVersion":0,"sdRomVersion":17003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":511,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17003,"notes":{"total":313,"tap":277,"hold":14,"slide":8,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":511,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":17003,"notes":{"total":463,"tap":424,"hold":24,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":511,"level_id":2,"level":"10","level_value":10.1,"note_designer":"rioN","romVersion":17003,"notes":{"total":606,"tap":467,"hold":74,"slide":45,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":511,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":17003,"notes":{"total":917,"tap":730,"hold":11,"slide":151,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":447,"long":false},{"id":512,"players":2184,"title":"StargazeR","utTitle":null,"artist":"骨盤P","albums":["stargazer","虎哥","大荒囚天指","观星者","摘星人","空条承太郎","stargazer","虎哥","大荒囚天指","观星者","摘星人","空条承太郎","stargazer","虎哥","大荒囚天指","观星者","摘星人","空条承太郎"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":195,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18023,"dxRomVersion":0,"sdRomVersion":18023,"utRomVersion":0,"dx":{},"sd":{"0":{"id":512,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18023,"notes":{"total":191,"tap":167,"hold":16,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":512,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18023,"notes":{"total":305,"tap":254,"hold":27,"slide":20,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":512,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":18023,"notes":{"total":415,"tap":287,"hold":58,"slide":64,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":512,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Moon Strix","romVersion":18023,"notes":{"total":587,"tap":394,"hold":56,"slide":125,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":593,"long":false},{"id":513,"players":11861,"title":"だんだん早くなる","utTitle":null,"artist":"40mP","albums":["だんだん早くなる","渐渐加速","末白","蛋蛋变快","蛋蛋","跑男","蛋蛋加速","越战越勇","专注轻机枪","渐变快","渐渐加快","闲鱼客服","越来越快","秃老头","逐渐加速","当当哈呀库那路","蛋蛋歌","渐渐变急","渐渐变快","哈压库","动力小子","走路歌","逐渐变快","慢慢变快","别急8","走路人","逐渐加快","だんだん早くなる","渐渐加速","末白","蛋蛋变快","蛋蛋","跑男","蛋蛋加速","越战越勇","专注轻机枪","渐变快","渐渐加快","闲鱼客服","越来越快","秃老头","逐渐加速","当当哈呀库那路","蛋蛋歌","渐渐变急","渐渐变快","哈压库","动力小子","走路歌","逐渐变快","慢慢变快","别急8","走路人","逐渐加快","だんだん早くなる","渐渐加速","末白","蛋蛋变快","蛋蛋","跑男","蛋蛋加速","越战越勇","专注轻机枪","渐变快","渐渐加快","闲鱼客服","越来越快","秃老头","逐渐加速","当当哈呀库那路","蛋蛋歌","渐渐变急","渐渐变快","哈压库","动力小子","走路歌","逐渐变快","慢慢变快","别急8","走路人","逐渐加快"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18017,"dxRomVersion":0,"sdRomVersion":18017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":513,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":18017,"notes":{"total":209,"tap":199,"hold":3,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":513,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18017,"notes":{"total":420,"tap":377,"hold":12,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":513,"level_id":2,"level":"10","level_value":10.4,"note_designer":"rioN","romVersion":18017,"notes":{"total":401,"tap":295,"hold":64,"slide":36,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":513,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":18017,"notes":{"total":552,"tap":371,"hold":85,"slide":79,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":513,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"玉子豆腐","romVersion":18017,"notes":{"total":552,"tap":406,"hold":6,"slide":125,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":375,"long":false},{"id":514,"players":3206,"title":"ヘルシーエンド","utTitle":null,"artist":"椎名もた (ぽわぽわP)","albums":["ヘルシーエンド","诈尸曲","健康结局","healthy end","ヘルシーエンド","诈尸曲","健康结局","healthy end","ヘルシーエンド","诈尸曲","健康结局","healthy end"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18502,"dxRomVersion":0,"sdRomVersion":18502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":514,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18502,"notes":{"total":142,"tap":116,"hold":14,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":514,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18502,"notes":{"total":333,"tap":290,"hold":16,"slide":23,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":514,"level_id":2,"level":"11","level_value":11.1,"note_designer":"Jack","romVersion":18502,"notes":{"total":370,"tap":237,"hold":84,"slide":45,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":514,"level_id":3,"level":"13","level_value":13.0,"note_designer":"小鳥遊さん","romVersion":18502,"notes":{"total":553,"tap":338,"hold":116,"slide":95,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":517,"players":2998,"title":"東京リアルワールド","utTitle":{"100517":"[覚]東京リアルワールド"},"artist":"out of service","albums":["東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界","東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界","東京リアルワールド","\uD83D\uDDFC","喝热排骨汤","东京铁塔","塔","东京塔","东京","东京现实世界","东京real world","东京现充世界"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17006,"dxRomVersion":0,"sdRomVersion":17006,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":517,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17006,"notes":{"total":227,"tap":196,"hold":17,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":517,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":17006,"notes":{"total":369,"tap":320,"hold":16,"slide":17,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":517,"level_id":2,"level":"9","level_value":9.4,"note_designer":"Jack","romVersion":17006,"notes":{"total":472,"tap":396,"hold":22,"slide":41,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":517,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":17006,"notes":{"total":641,"tap":476,"hold":27,"slide":122,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100517":{"id":100517,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":358,"tap":146,"hold":46,"slide":154,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":518,"players":2727,"title":"やめろ!聴くな!","utTitle":null,"artist":"SLAVE.V-V-R","albums":["やめろ!聴くな!","不要听","听","やめろ","停下!不要听!","别听","やめろ!聴くな!","不要听","听","やめろ","停下!不要听!","别听","やめろ!聴くな!","不要听","听","やめろ","停下!不要听!","别听"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17017,"dxRomVersion":0,"sdRomVersion":17017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":518,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17017,"notes":{"total":259,"tap":231,"hold":14,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":518,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":17017,"notes":{"total":449,"tap":403,"hold":23,"slide":17,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":518,"level_id":2,"level":"10","level_value":10.1,"note_designer":"しろいろ","romVersion":17017,"notes":{"total":534,"tap":373,"hold":70,"slide":51,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":518,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":17017,"notes":{"total":753,"tap":492,"hold":87,"slide":159,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":520,"players":3874,"title":"木彫り鯰と右肩ゾンビ","utTitle":null,"artist":"hanzo/赤飯歌唱Ver","albums":["木彫り鯰と右肩ゾンビ","右肩","僵尸","木雕鲇鱼","木雕","鲷鱼烧","右肩僵尸","肩周炎","木雕鲶鱼与右肩僵尸","木彫","大连海事大学校歌","木鲶鱼","木雕鲶鱼","拔小蒜","木彫り鯰と右肩ゾンビ","右肩","僵尸","木雕鲇鱼","木雕","鲷鱼烧","右肩僵尸","肩周炎","木雕鲶鱼与右肩僵尸","木彫","大连海事大学校歌","木鲶鱼","木雕鲶鱼","拔小蒜","木彫り鯰と右肩ゾンビ","右肩","僵尸","木雕鲇鱼","木雕","鲷鱼烧","右肩僵尸","肩周炎","木雕鲶鱼与右肩僵尸","木彫","大连海事大学校歌","木鲶鱼","木雕鲶鱼","拔小蒜"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17017,"dxRomVersion":0,"sdRomVersion":17017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":520,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17017,"notes":{"total":298,"tap":263,"hold":13,"slide":11,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":520,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":17017,"notes":{"total":414,"tap":364,"hold":14,"slide":28,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":520,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":17017,"notes":{"total":544,"tap":447,"hold":34,"slide":52,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":520,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":17017,"notes":{"total":925,"tap":710,"hold":68,"slide":113,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":514,"long":false},{"id":521,"players":8232,"title":"ECHO","utTitle":null,"artist":"CIRCRUSH","albums":["echo","A口","回声","人形师单手鸟","诶口","一口","电视头","echo","A口","回声","人形师单手鸟","诶口","一口","电视头","echo","A口","回声","人形师单手鸟","诶口","一口","电视头"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17017,"dxRomVersion":0,"sdRomVersion":17017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":521,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17017,"notes":{"total":163,"tap":145,"hold":10,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":521,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":17017,"notes":{"total":426,"tap":363,"hold":21,"slide":40,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":521,"level_id":2,"level":"11","level_value":11.3,"note_designer":"rioN","romVersion":17017,"notes":{"total":535,"tap":421,"hold":30,"slide":79,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":521,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":17017,"notes":{"total":768,"tap":607,"hold":30,"slide":125,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":376,"long":false},{"id":524,"players":4960,"title":"Hand in Hand","utTitle":{"100524":"[協]Hand in Hand"},"artist":"livetune","albums":["hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","hand in hand","手牵手","手拉手","hih","难忘今宵","握握手","诺基亚","手在手里面"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":17008,"dxRomVersion":0,"sdRomVersion":17008,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":524,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17008,"notes":{"total":169,"tap":146,"hold":18,"slide":1,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":524,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":17008,"notes":{"total":260,"tap":239,"hold":13,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":524,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Revo@LC","romVersion":17008,"notes":{"total":411,"tap":336,"hold":20,"slide":44,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":524,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":17008,"notes":{"total":590,"tap":441,"hold":21,"slide":110,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100524":{"id":100524,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":1207,"tap":903,"hold":165,"slide":84,"touch":0,"break_":55},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":263,"long":false},{"id":526,"players":2892,"title":"brilliant better","utTitle":null,"artist":"御形 アリシアナ(CV:福原 綾香)","albums":["brilliant better","bb","黄色吉他","更精彩","金毛弹吉他","brilliant better","bb","黄色吉他","更精彩","金毛弹吉他","brilliant better","bb","黄色吉他","更精彩","金毛弹吉他"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":172,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17010,"dxRomVersion":0,"sdRomVersion":17010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":526,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17010,"notes":{"total":228,"tap":199,"hold":12,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":526,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":17010,"notes":{"total":395,"tap":364,"hold":12,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":526,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":17010,"notes":{"total":595,"tap":486,"hold":46,"slide":52,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":526,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ロシェ@ペンギン","romVersion":17010,"notes":{"total":840,"tap":616,"hold":21,"slide":167,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":150,"long":false},{"id":527,"players":2146,"title":"ハート・ビート","utTitle":null,"artist":"明坂 芹菜(CV:新田 恵海)","albums":["ハート・ビート","心跳2","心跳节拍","心跳","serina","heart beat","ハート・ビート","心跳2","心跳节拍","心跳","serina","heart beat","ハート・ビート","心跳2","心跳节拍","心跳","serina","heart beat","架子鼓"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":212,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17016,"dxRomVersion":0,"sdRomVersion":17016,"utRomVersion":0,"dx":{},"sd":{"0":{"id":527,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17016,"notes":{"total":298,"tap":269,"hold":23,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":527,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":17016,"notes":{"total":442,"tap":377,"hold":24,"slide":26,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":527,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":17016,"notes":{"total":699,"tap":577,"hold":57,"slide":51,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":527,"level_id":3,"level":"13","level_value":13.4,"note_designer":"しろいろ","romVersion":17016,"notes":{"total":818,"tap":613,"hold":36,"slide":148,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":199,"long":false},{"id":528,"players":2858,"title":"Invitation","utTitle":null,"artist":"れるりり feat.ろん","albums":["invitation","!?","邀请","invitation","!?","邀请","invitation","!?","邀请"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":147,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17001,"dxRomVersion":0,"sdRomVersion":17001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":528,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17001,"notes":{"total":182,"tap":155,"hold":12,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":528,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":17001,"notes":{"total":390,"tap":357,"hold":8,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":528,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"rioN","romVersion":17001,"notes":{"total":568,"tap":491,"hold":29,"slide":39,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":528,"level_id":3,"level":"13","level_value":13.0,"note_designer":"某S氏","romVersion":17001,"notes":{"total":834,"tap":720,"hold":21,"slide":68,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":59,"long":false},{"id":529,"players":5051,"title":"connecting with you","utTitle":null,"artist":"Takahiro Eguchi feat. 三澤秋","albums":["connecting with you","pink挑战","与你连接","连接你","樱代主题曲","和你连接","connecting with you","pink挑战","与你连接","连接你","樱代主题曲","和你连接","connecting with you","pink挑战","与你连接","连接你","樱代主题曲","和你连接"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17002,"dxRomVersion":0,"sdRomVersion":17002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":529,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17002,"notes":{"total":188,"tap":169,"hold":8,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":529,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":17002,"notes":{"total":404,"tap":342,"hold":22,"slide":32,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":529,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Revo@LC","romVersion":17002,"notes":{"total":632,"tap":543,"hold":25,"slide":61,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":529,"level_id":3,"level":"13","level_value":13.2,"note_designer":"rioN","romVersion":17002,"notes":{"total":850,"tap":702,"hold":32,"slide":98,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":530,"players":2899,"title":"高気圧ねこロック","utTitle":null,"artist":"小野隊長とJimmy親分","albums":["高気圧ねこロック","高血压流汗黄豆","高气压猫猫头","高气压猫","高气压猫摇滚","高气压","马香远","高血压","高気圧ねこロック","高血压流汗黄豆","高气压猫猫头","高气压猫","高气压猫摇滚","高气压","马香远","高血压","高気圧ねこロック","高血压流汗黄豆","高气压猫猫头","高气压猫","高气压猫摇滚","高气压","马香远","高血压"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":260,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17002,"dxRomVersion":0,"sdRomVersion":17002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":530,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17002,"notes":{"total":231,"tap":200,"hold":10,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":530,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":17002,"notes":{"total":424,"tap":338,"hold":45,"slide":23,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":530,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"ぴちネコ","romVersion":17002,"notes":{"total":598,"tap":404,"hold":79,"slide":70,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":530,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ロシェ@ペンギン","romVersion":17002,"notes":{"total":906,"tap":743,"hold":34,"slide":105,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":517,"long":false},{"id":531,"players":5376,"title":"Prophesy One","utTitle":null,"artist":"vox2(小野秀幸)","albums":["prophesy one","预言1","预言一","芋圆","p1","小路","预言第一名","prophesy one","预言1","预言一","芋圆","p1","小路","预言第一名","prophesy one","预言1","预言一","芋圆","p1","小路","预言第一名"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":264,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17018,"dxRomVersion":0,"sdRomVersion":17018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":531,"level_id":0,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":17018,"notes":{"total":307,"tap":259,"hold":35,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":531,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":17018,"notes":{"total":482,"tap":399,"hold":53,"slide":22,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":531,"level_id":2,"level":"12","level_value":12.4,"note_designer":"rioN","romVersion":17018,"notes":{"total":686,"tap":569,"hold":27,"slide":79,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":531,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"Revo@LC","romVersion":17018,"notes":{"total":1068,"tap":843,"hold":57,"slide":162,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":532,"players":6005,"title":"洗脳","utTitle":{"110532":"[奏]洗脳"},"artist":"ゆりん・柿チョコ×Neru","albums":["洗脳","洗脑","洗脳","洗脑","9个绝赞粉5个","洗脳","洗脑"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":125,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":17004,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":532,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17004,"notes":{"total":200,"tap":170,"hold":20,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":532,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":17004,"notes":{"total":288,"tap":236,"hold":26,"slide":22,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":532,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":17004,"notes":{"total":461,"tap":372,"hold":33,"slide":48,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":532,"level_id":3,"level":"12","level_value":12.4,"note_designer":"Jack","romVersion":17004,"notes":{"total":644,"tap":516,"hold":47,"slide":72,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":532,"level_id":4,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":17004,"notes":{"total":777,"tap":653,"hold":63,"slide":52,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110532":{"id":110532,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":227,"long":false},{"id":533,"players":2330,"title":"Barbed Eye","utTitle":null,"artist":"柿チョコ×みきとP","albums":["barbed eye","狗谷爱","坏眼","barbed eye","狗谷爱","坏眼","barbed eye","狗谷爱","坏眼"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":135,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17009,"dxRomVersion":0,"sdRomVersion":17009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":533,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17009,"notes":{"total":233,"tap":203,"hold":21,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":533,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":17009,"notes":{"total":331,"tap":281,"hold":20,"slide":20,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":533,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"しろいろ","romVersion":17009,"notes":{"total":517,"tap":367,"hold":68,"slide":68,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":533,"level_id":3,"level":"13","level_value":13.0,"note_designer":"rioN","romVersion":17009,"notes":{"total":807,"tap":671,"hold":42,"slide":70,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":404,"long":false},{"id":534,"players":3257,"title":"Nitrous Fury","utTitle":null,"artist":"Jun Senoue","albums":["nitrous fury","蓝色福瑞","nf","架子鼓","氮气狂怒","十段之壁","氮气福瑞","furry","nitrous fury","蓝色福瑞","nf","架子鼓","氮气狂怒","十段之壁","氮气福瑞","furry","一氧化二氮的愤怒","nitrous fury","蓝色福瑞","nf","架子鼓","氮气狂怒","十段之壁","氮气福瑞","furry"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":144,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17013,"dxRomVersion":0,"sdRomVersion":17013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":534,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17013,"notes":{"total":201,"tap":148,"hold":42,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":534,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":17013,"notes":{"total":346,"tap":309,"hold":24,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":534,"level_id":2,"level":"12","level_value":12.0,"note_designer":"しろいろ","romVersion":17013,"notes":{"total":553,"tap":462,"hold":42,"slide":42,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":534,"level_id":3,"level":"14","level_value":14.0,"note_designer":"譜面-100号","romVersion":17013,"notes":{"total":752,"tap":739,"hold":6,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":535,"players":6833,"title":"色は匂へど散りぬるを","utTitle":null,"artist":"幽閉サテライト","albums":["色は匂へど散りぬるを","dx色散","色は匂へど散りぬるを","dx色散","色は匂へど散りぬるを","dx色散"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":138,"releaseDate":"20231124","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18002,"dxRomVersion":24007,"sdRomVersion":18002,"utRomVersion":0,"dx":{"0":{"id":10535,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24007,"notes":{"total":154,"tap":127,"hold":10,"slide":6,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10535,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24007,"notes":{"total":228,"tap":178,"hold":14,"slide":10,"touch":24,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10535,"level_id":2,"level":"9","level_value":9.0,"note_designer":"サファ太","romVersion":24007,"notes":{"total":311,"tap":186,"hold":54,"slide":32,"touch":16,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10535,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":426,"tap":258,"hold":36,"slide":75,"touch":42,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":535,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18002,"notes":{"total":170,"tap":142,"hold":22,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":535,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18002,"notes":{"total":284,"tap":240,"hold":14,"slide":26,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":535,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Techno Kitchen","romVersion":18002,"notes":{"total":321,"tap":206,"hold":39,"slide":60,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":535,"level_id":3,"level":"12","level_value":12.5,"note_designer":"Revo@LC","romVersion":18002,"notes":{"total":573,"tap":448,"hold":13,"slide":105,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":549,"long":false},{"id":536,"players":9063,"title":"月に叢雲華に風","utTitle":null,"artist":"幽閉サテライト","albums":["月に叢雲華に風","月遇丛云花遇风","摇摆阳","月风","月丛云华风","丛云伴月","小五","月云华风","月丛云","闲云遮月清风袭花","月映从云花语风","丛云华","月从云华风","月に叢雲華に風","月遇丛云花遇风","摇摆阳","月风","月丛云华风","丛云伴月","小五","月云华风","月丛云","闲云遮月清风袭花","月映从云花语风","丛云华","月从云华风","月に叢雲華に風","月遇丛云花遇风","摇摆阳","月风","月丛云华风","丛云伴月","小五","月云华风","月丛云","闲云遮月清风袭花","月映从云花语风","丛云华","月从云华风"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":17001,"dxRomVersion":20000,"sdRomVersion":17001,"utRomVersion":0,"dx":{"0":{"id":10536,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":72,"tap":55,"hold":7,"slide":2,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10536,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":20000,"notes":{"total":191,"tap":148,"hold":13,"slide":12,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10536,"level_id":2,"level":"9","level_value":9.4,"note_designer":"Jack","romVersion":20000,"notes":{"total":280,"tap":188,"hold":46,"slide":22,"touch":12,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10536,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":20000,"notes":{"total":433,"tap":245,"hold":42,"slide":45,"touch":93,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":536,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17001,"notes":{"total":119,"tap":103,"hold":9,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":536,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":17001,"notes":{"total":240,"tap":208,"hold":20,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":536,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":17001,"notes":{"total":350,"tap":300,"hold":18,"slide":25,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":536,"level_id":3,"level":"13","level_value":13.2,"note_designer":"mai-Star","romVersion":17001,"notes":{"total":465,"tap":319,"hold":71,"slide":64,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":292,"long":false},{"id":537,"players":2851,"title":"No Routine","utTitle":null,"artist":"A-One","albums":["no routine","画苍浅学姐","绿色女人","东方龙","没有日常","三梦奇缘","杨墓","没门","龙女","no routine","画苍浅学姐","绿色女人","东方龙","没有日常","三梦奇缘","杨墓","没门","龙女","no routine","画苍浅学姐","绿色女人","东方龙","没有日常","三梦奇缘","杨墓","没门","龙女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":163,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17012,"dxRomVersion":0,"sdRomVersion":17012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":537,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17012,"notes":{"total":236,"tap":198,"hold":30,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":537,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":17012,"notes":{"total":339,"tap":303,"hold":14,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":537,"level_id":2,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":17012,"notes":{"total":468,"tap":334,"hold":44,"slide":80,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":537,"level_id":3,"level":"13","level_value":13.4,"note_designer":"rioN","romVersion":17012,"notes":{"total":853,"tap":756,"hold":12,"slide":59,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":300,"long":false},{"id":538,"players":2593,"title":"ひれ伏せ愚民どもっ!","utTitle":null,"artist":"ARM+夕野ヨシミ (IOSYS) feat.miko","albums":["ひれ伏せ愚民どもっ!","佩恩","愚民","ひれ伏せ愚民どもっ!","佩恩","愚民","ひれ伏せ愚民どもっ!","佩恩","愚民","辉夜"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17012,"dxRomVersion":0,"sdRomVersion":17012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":538,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17012,"notes":{"total":219,"tap":197,"hold":12,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":538,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":17012,"notes":{"total":358,"tap":291,"hold":21,"slide":38,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":538,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"しろいろ","romVersion":17012,"notes":{"total":542,"tap":483,"hold":20,"slide":29,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":538,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":17012,"notes":{"total":780,"tap":552,"hold":18,"slide":176,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":189,"long":false},{"id":539,"players":3027,"title":"エテルニタス・ルドロジー","utTitle":null,"artist":"IRON ATTACK!","albums":["エテルニタス・ルドロジー","aeternitas ludology","东方鼓动","永恒游戏学","八云紫","エテルニタス・ルドロジー","aeternitas ludology","东方鼓动","永恒游戏学","八云紫","エテルニタス・ルドロジー","aeternitas ludology","东方鼓动","永恒游戏学","八云紫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":178,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17012,"dxRomVersion":0,"sdRomVersion":17012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":539,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17012,"notes":{"total":240,"tap":215,"hold":9,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":539,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":17012,"notes":{"total":390,"tap":352,"hold":24,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":539,"level_id":2,"level":"11","level_value":11.3,"note_designer":"Jack","romVersion":17012,"notes":{"total":534,"tap":427,"hold":59,"slide":40,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":539,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":17012,"notes":{"total":828,"tap":660,"hold":42,"slide":110,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":190,"long":false},{"id":540,"players":3958,"title":"泡沫、哀のまほろば","utTitle":null,"artist":"幽閉サテライト","albums":["泡沫、哀のまほろば","泡沫哀","妹红泡水","泡沫","泡沫、哀のまほろば","泡沫哀","妹红泡水","泡沫","泡沫、哀のまほろば","泡沫哀","妹红泡水","泡沫","藤原妹红"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":155,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":540,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19000,"notes":{"total":140,"tap":126,"hold":4,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":540,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":19000,"notes":{"total":211,"tap":152,"hold":24,"slide":27,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":540,"level_id":2,"level":"10","level_value":10.2,"note_designer":"LabiLabi","romVersion":19000,"notes":{"total":270,"tap":195,"hold":32,"slide":40,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":540,"level_id":3,"level":"12","level_value":12.5,"note_designer":"すきやき奉行","romVersion":19000,"notes":{"total":392,"tap":257,"hold":51,"slide":71,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":377,"long":false},{"id":541,"players":4441,"title":"華鳥風月","utTitle":null,"artist":"幽閉サテライト","albums":["華鳥風月","华鸟风月","かちょうふうげつ","花鸟市场","花鸟风月","四季","四季映姬","華鳥風月","华鸟风月","かちょうふうげつ","花鸟市场","花鸟风月","四季","四季映姬","華鳥風月","华鸟风月","かちょうふうげつ","花鸟市场","花鸟风月","四季","四季映姬"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":123,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":541,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":18500,"notes":{"total":126,"tap":105,"hold":10,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":541,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":18500,"notes":{"total":233,"tap":188,"hold":18,"slide":20,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":541,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"某S氏","romVersion":18500,"notes":{"total":320,"tap":234,"hold":44,"slide":34,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":541,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"rioN","romVersion":18500,"notes":{"total":627,"tap":477,"hold":37,"slide":95,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":426,"long":false},{"id":542,"players":4977,"title":"METATRON","utTitle":null,"artist":"SHIKI","albums":["metatron","梅塔特隆","tat","死镰二","钟楼","绝灭天使","死镰2","元创","五边形","马塔龙","metatron","梅塔特隆","tat","死镰二","钟楼","绝灭天使","死镰2","元创","五边形","马塔龙","metatron","梅塔特隆","tat","死镰二","钟楼","绝灭天使","死镰2","元创","五边形","马塔龙"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17000,"dxRomVersion":0,"sdRomVersion":17000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":542,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":17000,"notes":{"total":224,"tap":197,"hold":15,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":542,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":17000,"notes":{"total":458,"tap":420,"hold":12,"slide":15,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":542,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":17000,"notes":{"total":593,"tap":508,"hold":27,"slide":40,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":542,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Revo@LC","romVersion":17000,"notes":{"total":925,"tap":807,"hold":20,"slide":82,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":543,"players":1796,"title":"終わりなき物語","utTitle":null,"artist":"クーナ(CV 喜多村英梨)「PHANTASY STAR ONLINE 2」","albums":["終わりなき物語","终物语","无尽物语","物语","終わりなき物語","终物语","无尽物语","物语","終わりなき物語","终物语","无尽物语","物语"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":17016,"dxRomVersion":0,"sdRomVersion":17016,"utRomVersion":0,"dx":{},"sd":{"0":{"id":543,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":17016,"notes":{"total":201,"tap":175,"hold":18,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":543,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":17016,"notes":{"total":325,"tap":278,"hold":23,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":543,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"ロシェ@ペンギン","romVersion":17016,"notes":{"total":403,"tap":279,"hold":49,"slide":46,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":543,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":17016,"notes":{"total":584,"tap":394,"hold":63,"slide":114,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":533,"long":false},{"id":546,"players":2009,"title":"フォルテシモBELL","utTitle":null,"artist":"天王洲 なずな(CV:山本 彩乃)","albums":["フォルテシモbell","粉毛弹吉他","bell","emu","千早爱音","fortissimo bell","フォルテシモbell","粉毛弹吉他","bell","emu","千早爱音","fortissimo bell","フォルテシモbell","粉毛弹吉他","bell","emu","千早爱音","fortissimo bell"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":121,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18007,"dxRomVersion":0,"sdRomVersion":18007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":546,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":18007,"notes":{"total":170,"tap":153,"hold":9,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":546,"level_id":1,"level":"6","level_value":6.9,"note_designer":"-","romVersion":18007,"notes":{"total":314,"tap":272,"hold":14,"slide":20,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":546,"level_id":2,"level":"9","level_value":9.5,"note_designer":"玉子豆腐","romVersion":18007,"notes":{"total":440,"tap":323,"hold":58,"slide":41,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":546,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"ロシェ@ペンギン","romVersion":18007,"notes":{"total":595,"tap":468,"hold":20,"slide":92,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":158,"long":false},{"id":547,"players":2895,"title":"私の中の幻想的世界観及びその顕現を想起させたある現実での出来事に関する一考察","utTitle":null,"artist":"小仏 凪(CV:佐倉 薫)","albums":["私の中の幻想的世界観及びその顕現を想起させたある現実での出来事に関する一考察","私の中の幻想的世界観及びその顕現を想起させたある現実での出来事に関する一考察","私の中の幻想的世界観及びその顕現を想起させたある現実での出来事に関する一考察","名字鬼长","名字很长","内心幻想世界观及相关事件考察","对现实的考察映照心中幻想世界"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18009,"dxRomVersion":0,"sdRomVersion":18009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":547,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18009,"notes":{"total":268,"tap":217,"hold":43,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":547,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":18009,"notes":{"total":406,"tap":356,"hold":30,"slide":8,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":547,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Moon Strix","romVersion":18009,"notes":{"total":491,"tap":362,"hold":69,"slide":48,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":547,"level_id":3,"level":"13","level_value":13.4,"note_designer":"玉子豆腐","romVersion":18009,"notes":{"total":844,"tap":685,"hold":66,"slide":70,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":161,"long":false},{"id":548,"players":7242,"title":"DETARAME ROCK&ROLL THEORY","utTitle":{"100548":"[疑]DETARAME ROCK&ROLL THEORY"},"artist":"箱部 なる(CV:M・A・O)","albums":["detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论","detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论","detarame rock&roll theory","箱部弹吉他","drt","星星歌","detarame","萝莉~萝莉~","摇滚理论","drrt","8787","箱部的摇滚理论"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18008,"dxRomVersion":0,"sdRomVersion":18008,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":548,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18008,"notes":{"total":217,"tap":204,"hold":8,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":548,"level_id":1,"level":"8","level_value":8.4,"note_designer":"-","romVersion":18008,"notes":{"total":428,"tap":369,"hold":23,"slide":18,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":548,"level_id":2,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":18008,"notes":{"total":619,"tap":459,"hold":117,"slide":15,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":548,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":18008,"notes":{"total":813,"tap":600,"hold":46,"slide":145,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100548":{"id":100548,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":663,"tap":475,"hold":16,"slide":150,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":170,"long":false},{"id":552,"players":14493,"title":"ゴーストルール","utTitle":null,"artist":"DECO*27","albums":["ゴーストルール","dx幽灵法则","幽灵法则","ghost rule","露露","小吹爆","露露小姐","口一又卜儿一儿","ゴーストルール","dx幽灵法则","幽灵法则","ghost rule","露露","小吹爆","露露小姐","口一又卜儿一儿","ゴーストルール","dx幽灵法则","幽灵法则","ghost rule","露露","小吹爆","露露小姐","口一又卜儿一儿"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":210,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":18000,"dxRomVersion":22004,"sdRomVersion":18000,"utRomVersion":0,"dx":{"0":{"id":10552,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22004,"notes":{"total":130,"tap":99,"hold":12,"slide":2,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10552,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22004,"notes":{"total":311,"tap":240,"hold":36,"slide":18,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10552,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":22004,"notes":{"total":508,"tap":314,"hold":75,"slide":15,"touch":51,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10552,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":22004,"notes":{"total":673,"tap":444,"hold":75,"slide":106,"touch":30,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":552,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18000,"notes":{"total":223,"tap":200,"hold":9,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":552,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":18000,"notes":{"total":384,"tap":297,"hold":53,"slide":26,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":552,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"畳返し","romVersion":18000,"notes":{"total":531,"tap":428,"hold":70,"slide":12,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":552,"level_id":3,"level":"13","level_value":13.2,"note_designer":"しろいろ","romVersion":18000,"notes":{"total":689,"tap":501,"hold":36,"slide":138,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":594,"long":false},{"id":553,"players":7848,"title":"チュルリラ・チュルリラ・ダッダッダ!","utTitle":{"110553":"[奏]チュルリラ・チュルリラ・ダッダッダ!"},"artist":"和田たけあき(くらげP)","albums":["チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","撒撒米糕大"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":220,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24500,"dxRomVersion":0,"sdRomVersion":18005,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":553,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18005,"notes":{"total":281,"tap":256,"hold":16,"slide":2,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":553,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18005,"notes":{"total":475,"tap":450,"hold":10,"slide":3,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":553,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":18005,"notes":{"total":580,"tap":478,"hold":74,"slide":15,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":553,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":18005,"notes":{"total":840,"tap":610,"hold":36,"slide":169,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110553":{"id":110553,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":374,"long":false},{"id":555,"players":4303,"title":"GOODMEN","utTitle":null,"artist":"EBIMAYO","albums":["goodmen","好汉歌","\uD83D\uDC4D","\uD83D\uDC4D\uD83C\uDFFB","好人","良麵","良面","良民","好男人","goodmen","好汉歌","\uD83D\uDC4D","\uD83D\uDC4D\uD83C\uDFFB","好人","良麵","良面","良民","好男人","良人","goodmen","好汉歌","\uD83D\uDC4D","\uD83D\uDC4D\uD83C\uDFFB","好人","良麵","良面","良民","好男人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18009,"dxRomVersion":0,"sdRomVersion":18009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":555,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18009,"notes":{"total":274,"tap":241,"hold":12,"slide":8,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":555,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":18009,"notes":{"total":438,"tap":389,"hold":12,"slide":33,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":555,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"ぴちネコ","romVersion":18009,"notes":{"total":572,"tap":442,"hold":67,"slide":53,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":555,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":18009,"notes":{"total":875,"tap":646,"hold":78,"slide":136,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":556,"players":6241,"title":"夜明けまであと3秒","utTitle":null,"artist":"BNSI(Taku Inoue)「シンクロニカ」より","albums":["夜明けまであと3秒","3秒","三秒","天亮的前三秒","3s","失明前三秒","夜明","夜明3秒","黎明的前三秒","夜明三秒","距离黎明还有三秒","夜明けまであと3秒","3秒","三秒","天亮的前三秒","3s","失明前三秒","夜明","夜明3秒","黎明的前三秒","夜明三秒","距离黎明还有三秒","夜明けまであと3秒","3秒","三秒","天亮的前三秒","3s","失明前三秒","夜明","夜明3秒","黎明的前三秒","夜明三秒","距离黎明还有三秒"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":182,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18001,"dxRomVersion":0,"sdRomVersion":18001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":556,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18001,"notes":{"total":279,"tap":260,"hold":10,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":556,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18001,"notes":{"total":513,"tap":453,"hold":38,"slide":11,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":556,"level_id":2,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":18001,"notes":{"total":555,"tap":399,"hold":101,"slide":33,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":556,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ロシェ@ペンギン","romVersion":18001,"notes":{"total":962,"tap":733,"hold":123,"slide":81,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":557,"players":1959,"title":"Last Brave ~ Go to zero","utTitle":null,"artist":"MECHANiCAL PANDA「BORDER BREAK」","albums":["last brave ~ go to zero","勇敢变成0","我们去做0","去做0","变成0","机甲","bt","走向0","最后勇敢变成0","去找0","last brave ~ go to zero","勇敢变成0","我们去做0","去做0","变成0","机甲","bt","走向0","最后勇敢变成0","去找0","last brave ~ go to zero","勇敢变成0","我们去做0","去做0","变成0","机甲","bt","走向0","最后勇敢变成0","去找0"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":132,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18000,"dxRomVersion":0,"sdRomVersion":18000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":557,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18000,"notes":{"total":247,"tap":225,"hold":15,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":557,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18000,"notes":{"total":411,"tap":367,"hold":24,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":557,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":18000,"notes":{"total":585,"tap":442,"hold":58,"slide":55,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":557,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":18000,"notes":{"total":841,"tap":668,"hold":45,"slide":106,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":558,"players":1797,"title":"STAIRWAY TO GENERATION","utTitle":null,"artist":"Yosh(Survive Said The Prophet)","albums":["stairway to generation","一片绿","八块钱","stairway","stairway to generation","一片绿","八块钱","stairway","stairway to generation","一片绿","八块钱","stairway"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18000,"dxRomVersion":0,"sdRomVersion":18000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":558,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18000,"notes":{"total":218,"tap":194,"hold":14,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":558,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18000,"notes":{"total":317,"tap":263,"hold":30,"slide":18,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":558,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"rioN","romVersion":18000,"notes":{"total":457,"tap":341,"hold":38,"slide":64,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":558,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":18000,"notes":{"total":684,"tap":511,"hold":129,"slide":23,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":329,"long":false},{"id":559,"players":2822,"title":"空威張りビヘイビア","utTitle":null,"artist":"un:c・ろん×じーざすP","albums":["空威張りビヘイビア","空威张","虚张声势的行为","欧尼酱","虚张声势behavior","欧欧欧欧欧欧尼酱","空威張りビヘイビア","空威张","虚张声势的行为","欧尼酱","虚张声势behavior","欧欧欧欧欧欧尼酱","空威張りビヘイビア","空威张","虚张声势的行为","欧尼酱","虚张声势behavior","欧欧欧欧欧欧尼酱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":186,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18000,"dxRomVersion":0,"sdRomVersion":18000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":559,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18000,"notes":{"total":275,"tap":245,"hold":20,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":559,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":18000,"notes":{"total":379,"tap":322,"hold":24,"slide":19,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":559,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Techno Kitchen","romVersion":18000,"notes":{"total":573,"tap":445,"hold":54,"slide":50,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":559,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"合作だよ","romVersion":18000,"notes":{"total":887,"tap":693,"hold":25,"slide":149,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":332,"long":false},{"id":561,"players":6367,"title":"いっしそう電☆舞舞神拳!","utTitle":null,"artist":"さつき が てんこもり feat. YURiCa/花たん","albums":["いっしそう電☆舞舞神拳!","舞舞神拳","武萌神拳","呜呜神拳","maimai神拳","一子相传","紫代主题曲","いっしそう電☆舞舞神拳!","舞舞神拳","武萌神拳","呜呜神拳","maimai神拳","一子相传","紫代主题曲","いっしそう電☆舞舞神拳!","舞舞神拳","武萌神拳","呜呜神拳","maimai神拳","一子相传","紫代主题曲","114514"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18003,"dxRomVersion":0,"sdRomVersion":18003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":561,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18003,"notes":{"total":326,"tap":308,"hold":4,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":561,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18003,"notes":{"total":484,"tap":444,"hold":18,"slide":10,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":561,"level_id":2,"level":"11","level_value":11.5,"note_designer":"某S氏","romVersion":18003,"notes":{"total":648,"tap":539,"hold":28,"slide":66,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":561,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":18003,"notes":{"total":868,"tap":582,"hold":27,"slide":217,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":564,"players":1479,"title":"ENJOY POLIS","utTitle":null,"artist":"LOPIT","albums":["enjoy polis","enjoypolis","enjoy polis","enjoypolis","enjoy polis","enjoypolis"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":220,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":564,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19900,"notes":{"total":212,"tap":183,"hold":15,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":564,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":19900,"notes":{"total":353,"tap":273,"hold":42,"slide":24,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":564,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":19900,"notes":{"total":531,"tap":447,"hold":51,"slide":31,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":564,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":19900,"notes":{"total":694,"tap":539,"hold":59,"slide":87,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":565,"players":2659,"title":"生きてるおばけは生きている","utTitle":null,"artist":"鬱P feat.flower","albums":["生きてるおばけは生きている","活着的怪物会一直活着","生生","坟头蹦迪","欧巴给","生きてるおばけは生きている","活着的怪物会一直活着","生生","坟头蹦迪","欧巴给","生きてるおばけは生きている","活着的怪物会一直活着","生生","坟头蹦迪","欧巴给"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18005,"dxRomVersion":0,"sdRomVersion":18005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":565,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18005,"notes":{"total":190,"tap":152,"hold":30,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":565,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":18005,"notes":{"total":338,"tap":294,"hold":12,"slide":26,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":565,"level_id":2,"level":"11","level_value":11.0,"note_designer":"ロシェ@ペンギン","romVersion":18005,"notes":{"total":507,"tap":344,"hold":97,"slide":48,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":565,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":18005,"notes":{"total":829,"tap":689,"hold":64,"slide":60,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":566,"players":10587,"title":"天火明命","utTitle":null,"artist":"削除","albums":["天火明命","天火","天火没命","舔会妹妹","天火明命","天火","天火没命","舔会妹妹","天火明命","天火","天火没命","舔会妹妹"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18022,"dxRomVersion":0,"sdRomVersion":18022,"utRomVersion":0,"dx":{},"sd":{"0":{"id":566,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18022,"notes":{"total":226,"tap":203,"hold":9,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":566,"level_id":1,"level":"9+","level_value":9.7,"note_designer":"-","romVersion":18022,"notes":{"total":430,"tap":301,"hold":57,"slide":60,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":566,"level_id":2,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":18022,"notes":{"total":714,"tap":535,"hold":36,"slide":109,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":566,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Jack","romVersion":18022,"notes":{"total":963,"tap":778,"hold":49,"slide":106,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2144,"long":false},{"id":567,"players":6882,"title":"HERA","utTitle":null,"artist":"ルゼ","albums":["hera","狐狸模拟器","超级大串","芝士雪豹","赫拉","七匹狼","狐狸","黑拉","纵连高手","纵连","\uD83E\uDD8A","一号键质检员","hera","狐狸模拟器","超级大串","芝士雪豹","赫拉","七匹狼","狐狸","黑拉","纵连高手","纵连","\uD83E\uDD8A","一号键质检员","hera","狐狸模拟器","超级大串","芝士雪豹","赫拉","七匹狼","狐狸","黑拉","纵连高手","纵连","\uD83E\uDD8A","一号键质检员"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18011,"dxRomVersion":0,"sdRomVersion":18011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":567,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18011,"notes":{"total":312,"tap":282,"hold":10,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":567,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18011,"notes":{"total":527,"tap":476,"hold":19,"slide":20,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":567,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":18011,"notes":{"total":722,"tap":577,"hold":45,"slide":74,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":567,"level_id":3,"level":"14","level_value":14.3,"note_designer":"Revo@LC","romVersion":18011,"notes":{"total":1031,"tap":761,"hold":81,"slide":106,"touch":0,"break_":83},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2206,"long":false},{"id":568,"players":4772,"title":"分からない","utTitle":null,"artist":"ろん×黒魔","albums":["分からない","不知道","哇嘎啦乃","我不到啊","这","暂时不能给你明确的答复","\uD83D\uDE35","哇卡拉奶","哇嘎拉奶","发生什么事了","我怎么知道","我哪知道","吾伐晓得","优质解答","我不知道","分からない","不知道","哇嘎啦乃","我不到啊","这","暂时不能给你明确的答复","\uD83D\uDE35","哇卡拉奶","哇嘎拉奶","发生什么事了","我怎么知道","我哪知道","吾伐晓得","优质解答","我不知道","分からない","不知道","哇嘎啦乃","我不到啊","这","暂时不能给你明确的答复","\uD83D\uDE35","哇卡拉奶","哇嘎拉奶","发生什么事了","我怎么知道","我哪知道","吾伐晓得","优质解答","我不知道"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18012,"dxRomVersion":0,"sdRomVersion":18012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":568,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18012,"notes":{"total":177,"tap":146,"hold":14,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":568,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":18012,"notes":{"total":349,"tap":266,"hold":57,"slide":23,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":568,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"如月 ゆかり","romVersion":18012,"notes":{"total":514,"tap":410,"hold":53,"slide":40,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":568,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ぴちネコ","romVersion":18012,"notes":{"total":953,"tap":809,"hold":25,"slide":79,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":405,"long":false},{"id":571,"players":7577,"title":"Our Wrenally","utTitle":null,"artist":"t+pazolite","albums":["our wrenally","魔法阿嬷","魔法阿妈","魔法阿嫲","白夏祭","魔法夏祭","里夏祭","ow","ena","别急加强版","别急9","夏祭","夏祭2","夏祭re:master","火女孩","临兵斗者皆阵列在前","our wrenally","魔法阿嬷","魔法阿妈","魔法阿嫲","白夏祭","魔法夏祭","里夏祭","ow","ena","别急加强版","别急9","夏祭","夏祭2","夏祭re:master","火女孩","临兵斗者皆阵列在前","守望先锋","our wrenally","魔法阿嬷","魔法阿妈","魔法阿嫲","白夏祭","魔法夏祭","里夏祭","ow","ena","别急加强版","别急9","夏祭","夏祭2","夏祭re:master","火女孩","临兵斗者皆阵列在前","守望先锋","高等数学","高数"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":105,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18006,"dxRomVersion":0,"sdRomVersion":18006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":571,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18006,"notes":{"total":277,"tap":218,"hold":45,"slide":4,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":571,"level_id":1,"level":"9+","level_value":9.8,"note_designer":"-","romVersion":18006,"notes":{"total":488,"tap":413,"hold":24,"slide":31,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":571,"level_id":2,"level":"13","level_value":13.0,"note_designer":"rioN","romVersion":18006,"notes":{"total":660,"tap":457,"hold":150,"slide":44,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":571,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"原田ひろゆき","romVersion":18006,"notes":{"total":999,"tap":868,"hold":23,"slide":99,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":572,"players":9472,"title":"Scream out! -maimai SONIC WASHER Edit-","utTitle":null,"artist":"A-One","albums":["scream out! -maimai sonic washer edit-","诹访子","dx赞不绝口","赞不绝口","喊出来","美国紫妈","dx青蛙子","青蛙子","scream out! -maimai sonic washer edit-","诹访子","dx赞不绝口","赞不绝口","喊出来","美国紫妈","dx青蛙子","青蛙子","scream out! -maimai sonic washer edit-","诹访子","dx赞不绝口","赞不绝口","喊出来","美国紫妈","dx青蛙子","青蛙子"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":174,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":18021,"dxRomVersion":20000,"sdRomVersion":18021,"utRomVersion":0,"dx":{"0":{"id":10572,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":164,"tap":132,"hold":9,"slide":4,"touch":8,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10572,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":420,"tap":337,"hold":26,"slide":17,"touch":10,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10572,"level_id":2,"level":"11","level_value":11.2,"note_designer":"某S氏","romVersion":20000,"notes":{"total":546,"tap":326,"hold":67,"slide":66,"touch":59,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10572,"level_id":3,"level":"13","level_value":13.5,"note_designer":"シチミヘルツ","romVersion":20000,"notes":{"total":991,"tap":654,"hold":73,"slide":102,"touch":120,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":572,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18021,"notes":{"total":275,"tap":222,"hold":32,"slide":4,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":572,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18021,"notes":{"total":535,"tap":453,"hold":44,"slide":24,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":572,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":18021,"notes":{"total":777,"tap":560,"hold":118,"slide":84,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":572,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"某S氏","romVersion":18021,"notes":{"total":1089,"tap":845,"hold":64,"slide":131,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":573,"players":8242,"title":"四月の雨","utTitle":null,"artist":"cubesato","albums":["四月の雨","四月的粑粑","114514月的臭雨","键盘歌","四月的星星","konmai","四月雨","雨姐","别急1","伞","你先别急","我为你撑一把伞","四月的史","四月的雨","四月的屎","四月答辩","四月的\uD83D\uDCA9","四月的别急","☂️","别急","下北泽的雨","四月的粪","不要急挑战","四月的急","四月的shi","四月の雨","四月的粑粑","114514月的臭雨","键盘歌","四月的星星","konmai","四月雨","雨姐","别急1","伞","你先别急","我为你撑一把伞","四月的史","四月的雨","四月的屎","四月答辩","四月的\uD83D\uDCA9","四月的别急","☂️","别急","下北泽的雨","四月的粪","不要急挑战","四月的急","四月的shi","四月の雨","四月的粑粑","114514月的臭雨","键盘歌","四月的星星","konmai","四月雨","雨姐","别急1","伞","你先别急","我为你撑一把伞","四月的史","四月的雨","四月的屎","四月答辩","四月的\uD83D\uDCA9","四月的别急","☂️","别急","下北泽的雨","四月的粪","不要急挑战","四月的急","四月的shi"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":79,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18020,"dxRomVersion":0,"sdRomVersion":18020,"utRomVersion":0,"dx":{},"sd":{"0":{"id":573,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":18020,"notes":{"total":148,"tap":120,"hold":12,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":573,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18020,"notes":{"total":262,"tap":204,"hold":32,"slide":22,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":573,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":18020,"notes":{"total":385,"tap":289,"hold":33,"slide":59,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":573,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"譜面-100号","romVersion":18020,"notes":{"total":634,"tap":432,"hold":32,"slide":166,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2560,"long":false},{"id":574,"players":8539,"title":"Selector","utTitle":null,"artist":"Aliesrite* (Ym1024 feat. lamie*)","albums":["selector","dxselector","dx选择器","dx绿女人","selector","dxselector","dx选择器","dx绿女人","selector","dxselector","dx选择器","dx绿女人"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":148,"releaseDate":"20230721","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":18010,"dxRomVersion":24003,"sdRomVersion":18010,"utRomVersion":0,"dx":{"0":{"id":10574,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":24003,"notes":{"total":187,"tap":146,"hold":9,"slide":3,"touch":15,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10574,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":24003,"notes":{"total":281,"tap":230,"hold":20,"slide":6,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10574,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":24003,"notes":{"total":431,"tap":272,"hold":57,"slide":74,"touch":8,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10574,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ボコ太","romVersion":24003,"notes":{"total":826,"tap":652,"hold":77,"slide":12,"touch":41,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":574,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18010,"notes":{"total":221,"tap":183,"hold":26,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":574,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18010,"notes":{"total":334,"tap":252,"hold":58,"slide":18,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":574,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":18010,"notes":{"total":478,"tap":313,"hold":82,"slide":72,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":574,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"rioN","romVersion":18010,"notes":{"total":718,"tap":426,"hold":6,"slide":245,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":578,"players":2297,"title":"ドキドキDREAM!!!","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["ドキドキdream!!!","dokidoki","五对柰子","ドキドキdream!!!","dokidoki","五对柰子","ドキドキdream!!!","dokidoki","五对柰子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":210,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18009,"dxRomVersion":0,"sdRomVersion":18009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":578,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18009,"notes":{"total":283,"tap":249,"hold":20,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":578,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":18009,"notes":{"total":458,"tap":352,"hold":73,"slide":17,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":578,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":18009,"notes":{"total":658,"tap":515,"hold":72,"slide":54,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":578,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Moon Strix","romVersion":18009,"notes":{"total":879,"tap":679,"hold":72,"slide":88,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":330,"long":false},{"id":579,"players":2039,"title":"ポップミュージックは僕のもの","utTitle":{"110579":"[協]ポップミュージックは僕のもの"},"artist":"ONIGAWARA","albums":["ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子","ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子","ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"POPSアニメ","bpm":135,"releaseDate":"20240118","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":18012,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":579,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18012,"notes":{"total":152,"tap":115,"hold":26,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":579,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18012,"notes":{"total":383,"tap":335,"hold":22,"slide":19,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":579,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"チャン@DP皆伝","romVersion":18012,"notes":{"total":364,"tap":272,"hold":47,"slide":29,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":579,"level_id":3,"level":"12","level_value":12.5,"note_designer":"譜面-100号","romVersion":18012,"notes":{"total":561,"tap":368,"hold":159,"slide":33,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110579":{"id":110579,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":409,"tap":241,"hold":47,"slide":101,"touch":8,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":580,"players":6199,"title":"吉原ラメント","utTitle":null,"artist":"亜沙","albums":["吉原ラメント","留尾哀歌","吉原","吉原哀歌","吉原拉面","吉原泼妇","吉原怨妇","清远鸡","吉原ラメント","留尾哀歌","吉原","吉原哀歌","吉原拉面","吉原泼妇","吉原怨妇","清远鸡","吉原ラメント","留尾哀歌","吉原","吉原哀歌","吉原拉面","吉原泼妇","吉原怨妇","清远鸡","teto","千织"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":191,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18017,"dxRomVersion":0,"sdRomVersion":18017,"utRomVersion":0,"dx":{},"sd":{"0":{"id":580,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18017,"notes":{"total":210,"tap":182,"hold":18,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":580,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":18017,"notes":{"total":398,"tap":333,"hold":32,"slide":26,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":580,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"rioN","romVersion":18017,"notes":{"total":579,"tap":474,"hold":42,"slide":49,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":580,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":18017,"notes":{"total":849,"tap":614,"hold":10,"slide":194,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2214,"long":false},{"id":581,"players":5721,"title":"ねぇ、壊れタ人形ハ何処へ棄テらレるノ?","utTitle":null,"artist":"cosMo@暴走P","albums":["ねぇ、壊れタ人形ハ何処へ棄テらレるノ?","坏人形","人形","扔垃圾桶","坏人偶","坏人","ねぇ、壊れタ人形ハ何処へ棄テらレるノ?","坏人形","人形","扔垃圾桶","坏人偶","坏人","ねぇ、壊れタ人形ハ何処へ棄テらレるノ?","坏人形","人形","扔垃圾桶","坏人偶","坏人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18018,"dxRomVersion":0,"sdRomVersion":18018,"utRomVersion":0,"dx":{},"sd":{"0":{"id":581,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18018,"notes":{"total":273,"tap":251,"hold":8,"slide":5,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":581,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18018,"notes":{"total":470,"tap":393,"hold":51,"slide":17,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":581,"level_id":2,"level":"13","level_value":13.0,"note_designer":"rioN","romVersion":18018,"notes":{"total":748,"tap":675,"hold":29,"slide":28,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":581,"level_id":3,"level":"14","level_value":14.5,"note_designer":"ぴちネコ","romVersion":18018,"notes":{"total":1043,"tap":900,"hold":56,"slide":74,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":570,"long":false},{"id":582,"players":3444,"title":"幽闇に目醒めしは","utTitle":null,"artist":"セブンスヘブンMAXION","albums":["幽闇に目醒めしは","东方四个女人躺草地","幽暗目醒","幽暗","躺草坪","东方四女躺草地","幽目","在黑暗中醒来","幽闇に目醒めしは","东方四个女人躺草地","幽暗目醒","幽暗","躺草坪","东方四女躺草地","幽目","在黑暗中醒来","幽闇に目醒めしは","东方四个女人躺草地","幽暗目醒","幽暗","躺草坪","东方四女躺草地","幽目","在黑暗中醒来"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":120,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18021,"dxRomVersion":0,"sdRomVersion":18021,"utRomVersion":0,"dx":{},"sd":{"0":{"id":582,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18021,"notes":{"total":171,"tap":148,"hold":9,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":582,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":18021,"notes":{"total":247,"tap":206,"hold":21,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":582,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":18021,"notes":{"total":313,"tap":238,"hold":33,"slide":41,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":582,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":18021,"notes":{"total":506,"tap":342,"hold":48,"slide":106,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":191,"long":false},{"id":583,"players":3467,"title":"Starlight Vision","utTitle":null,"artist":"矢鴇つかさ feat. 三澤秋","albums":["starlight vision","星光视觉","樱花灵梦","\uD83C\uDF38","星光视界","starlight vision","星光视觉","樱花灵梦","\uD83C\uDF38","星光视界","starlight vision","星光视觉","樱花灵梦","\uD83C\uDF38","星光视界","灵梦樱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18021,"dxRomVersion":0,"sdRomVersion":18021,"utRomVersion":0,"dx":{},"sd":{"0":{"id":583,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":18021,"notes":{"total":134,"tap":115,"hold":8,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":583,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18021,"notes":{"total":298,"tap":245,"hold":35,"slide":14,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":583,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"ぴちネコ","romVersion":18021,"notes":{"total":455,"tap":357,"hold":30,"slide":38,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":583,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"LabiLabi","romVersion":18021,"notes":{"total":608,"tap":466,"hold":50,"slide":81,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":192,"long":false},{"id":584,"players":2746,"title":"Club Ibuki in Break All","utTitle":null,"artist":"void+夕野ヨシミ (IOSYS) feat.藤原鞠菜","albums":["club ibuki in break all","萃香跳舞","西瓜跳舞","ymn","东方年柄年中","club ibuki in break all","萃香跳舞","西瓜跳舞","ymn","东方年柄年中","club ibuki in break all","萃香跳舞","西瓜跳舞","ymn","东方年柄年中","小bbb"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18021,"dxRomVersion":0,"sdRomVersion":18021,"utRomVersion":0,"dx":{},"sd":{"0":{"id":584,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18021,"notes":{"total":188,"tap":170,"hold":6,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":584,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18021,"notes":{"total":277,"tap":229,"hold":25,"slide":11,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":584,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":18021,"notes":{"total":435,"tap":283,"hold":32,"slide":91,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":584,"level_id":3,"level":"13","level_value":13.3,"note_designer":"某S氏","romVersion":18021,"notes":{"total":673,"tap":375,"hold":37,"slide":95,"touch":0,"break_":166},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":193,"long":false},{"id":585,"players":3610,"title":"Phantasm Brigade","utTitle":null,"artist":"Silver Forest","albums":["phantasm brigade","pb","灵梦","phantasm brigade","pb","灵梦","phantasm brigade","pb","灵梦"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":168,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18021,"dxRomVersion":0,"sdRomVersion":18021,"utRomVersion":0,"dx":{},"sd":{"0":{"id":585,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18021,"notes":{"total":213,"tap":190,"hold":13,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":585,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":18021,"notes":{"total":398,"tap":324,"hold":46,"slide":22,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":585,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"rioN","romVersion":18021,"notes":{"total":509,"tap":345,"hold":64,"slide":83,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":585,"level_id":3,"level":"13","level_value":13.4,"note_designer":"玉子豆腐","romVersion":18021,"notes":{"total":891,"tap":721,"hold":4,"slide":133,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":194,"long":false},{"id":586,"players":3791,"title":"永遠のメロディ","utTitle":null,"artist":"あ~るの~と(いえろ~ぜぶら)","albums":["永遠のメロディ","永远的旋律","永远的melody","永远的节奏","东方蓬千歌","永远","永遠のメロディ","永远的旋律","永远的melody","永远的节奏","东方蓬千歌","永远","永遠のメロディ","永远的旋律","永远的melody","永远的节奏","东方蓬千歌","永远"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":155,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":0,"sdRomVersion":19011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":586,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19011,"notes":{"total":265,"tap":230,"hold":17,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":586,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19011,"notes":{"total":388,"tap":353,"hold":13,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":586,"level_id":2,"level":"10","level_value":10.5,"note_designer":"玉子豆腐","romVersion":19011,"notes":{"total":481,"tap":351,"hold":48,"slide":65,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":586,"level_id":3,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":19011,"notes":{"total":642,"tap":490,"hold":26,"slide":108,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":195,"long":false},{"id":587,"players":10544,"title":"白ゆき","utTitle":null,"artist":"n-buna","albums":["白ゆき","白雪","白夜行","美少女亲嘴","白雪歌送武判官归京","白yuki","女同亲嘴","白ゆき","白雪","白夜行","美少女亲嘴","白雪歌送武判官归京","白yuki","女同亲嘴","白ゆき","白雪","白夜行","美少女亲嘴","白雪歌送武判官归京","白yuki","女同亲嘴","月代雪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":210,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18511,"dxRomVersion":0,"sdRomVersion":18511,"utRomVersion":0,"dx":{},"sd":{"0":{"id":587,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18511,"notes":{"total":171,"tap":154,"hold":6,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":587,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":18511,"notes":{"total":323,"tap":292,"hold":18,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":587,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":18511,"notes":{"total":448,"tap":373,"hold":54,"slide":19,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":587,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ぴちネコ","romVersion":18511,"notes":{"total":719,"tap":532,"hold":55,"slide":114,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1022,"long":false},{"id":589,"players":7167,"title":"Panopticon","utTitle":null,"artist":"cybermiso","albums":["panopticon","ncc","大牢","牢","正弘","mai当牢","例大祭","坐牢","来坐大牢","监狱","别急12","圆形监狱","保全派驻","panopticon","ncc","大牢","牢","正弘","mai当牢","例大祭","坐牢","来坐大牢","监狱","别急12","圆形监狱","保全派驻","淮阴师范学院","宿迁市钟吾初级中学","舞萌大学","明德实验学校","运河中学","辽河路实验学校","江苏省宿迁中学","panopticon","ncc","大牢","牢","正弘","mai当牢","例大祭","坐牢","来坐大牢","监狱","别急12","圆形监狱","保全派驻","海底谭promax","潮汐监狱","高中","黑海底谭","铁窗泪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":110,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18022,"dxRomVersion":0,"sdRomVersion":18022,"utRomVersion":0,"dx":{},"sd":{"0":{"id":589,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18022,"notes":{"total":217,"tap":187,"hold":18,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":589,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":18022,"notes":{"total":401,"tap":297,"hold":48,"slide":46,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":589,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":18022,"notes":{"total":514,"tap":357,"hold":76,"slide":71,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":589,"level_id":3,"level":"14","level_value":14.4,"note_designer":"Techno Kitchen","romVersion":18022,"notes":{"total":900,"tap":650,"hold":52,"slide":140,"touch":0,"break_":58},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":589,"level_id":4,"level":"14","level_value":14.3,"note_designer":"はっぴー","romVersion":18022,"notes":{"total":909,"tap":708,"hold":75,"slide":110,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":592,"players":6694,"title":"Sakura Fubuki","utTitle":null,"artist":"Street","albums":["sakura fubuki","sakura"," 吹雪","\uD83C\uDF38\uD83D\uDCA8❄️","樱吹屎","吹雪","fbk","神里绫华","白上吹雪","樱吹雪","sakura fubuki","sakura"," 吹雪","\uD83C\uDF38\uD83D\uDCA8❄️","樱吹屎","吹雪","fbk","神里绫华","白上吹雪","樱吹雪","sakura fubuki","sakura"," 吹雪","\uD83C\uDF38\uD83D\uDCA8❄️","樱吹屎","吹雪","fbk","神里绫华","白上吹雪","樱吹雪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18008,"dxRomVersion":0,"sdRomVersion":18008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":592,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18008,"notes":{"total":174,"tap":158,"hold":6,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":592,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18008,"notes":{"total":281,"tap":247,"hold":6,"slide":20,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":592,"level_id":2,"level":"12","level_value":12.2,"note_designer":"Jack","romVersion":18008,"notes":{"total":333,"tap":234,"hold":58,"slide":35,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":592,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Revo@LC","romVersion":18008,"notes":{"total":678,"tap":559,"hold":54,"slide":53,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":326,"long":false},{"id":593,"players":8601,"title":"conflict","utTitle":null,"artist":"siromaru + cranky","albums":["conflict","冲突","dx公交车","公交车","bus","conflict","冲突","dx公交车","公交车","bus","conflict","冲突","dx公交车","公交车","bus"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":18007,"dxRomVersion":20000,"sdRomVersion":18007,"utRomVersion":0,"dx":{"0":{"id":10593,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":20000,"notes":{"total":118,"tap":76,"hold":9,"slide":5,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10593,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":20000,"notes":{"total":374,"tap":317,"hold":33,"slide":3,"touch":19,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10593,"level_id":2,"level":"11","level_value":11.4,"note_designer":"華火職人","romVersion":20000,"notes":{"total":571,"tap":342,"hold":42,"slide":70,"touch":99,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10593,"level_id":3,"level":"13","level_value":13.5,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":900,"tap":583,"hold":58,"slide":65,"touch":175,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":593,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18007,"notes":{"total":192,"tap":146,"hold":27,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":593,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18007,"notes":{"total":416,"tap":353,"hold":36,"slide":18,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":593,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Techno Kitchen","romVersion":18007,"notes":{"total":706,"tap":532,"hold":86,"slide":73,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":593,"level_id":3,"level":"14","level_value":14.2,"note_designer":"rioN","romVersion":18007,"notes":{"total":948,"tap":758,"hold":56,"slide":125,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":138,"long":false},{"id":598,"players":2923,"title":"すーぱーぬこになりたい","utTitle":null,"artist":"まふまふ","albums":["すーぱーぬこになりたい","nuko","开水壶成精","变猫","想要变成超级猫","变成猫","粉猫","超级猫猫","我想变成猫咪","想变猫","变超猫","想要成为super nuko","想要成为超级猫猫","猫猫","想变成猫","超猫","すーぱーぬこになりたい","nuko","开水壶成精","变猫","想要变成超级猫","变成猫","粉猫","超级猫猫","我想变成猫咪","想变猫","变超猫","想要成为super nuko","想要成为超级猫猫","猫猫","想变成猫","超猫","すーぱーぬこになりたい","nuko","开水壶成精","变猫","想要变成超级猫","变成猫","粉猫","超级猫猫","我想变成猫咪","想变猫","变超猫","想要成为super nuko","想要成为超级猫猫","猫猫","想变成猫","超猫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":194,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18002,"dxRomVersion":0,"sdRomVersion":18002,"utRomVersion":0,"dx":{},"sd":{"0":{"id":598,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18002,"notes":{"total":265,"tap":248,"hold":4,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":598,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18002,"notes":{"total":392,"tap":351,"hold":8,"slide":17,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":598,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Revo@LC","romVersion":18002,"notes":{"total":516,"tap":364,"hold":37,"slide":80,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":598,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":18002,"notes":{"total":897,"tap":721,"hold":23,"slide":117,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":599,"players":2561,"title":"踊れオーケストラ","utTitle":null,"artist":"YASUHIRO(康寛)","albums":["踊れオーケストラ","踊","随管弦乐起舞","踊れオーケストラ","踊","随管弦乐起舞","踊れオーケストラ","踊","随管弦乐起舞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18005,"dxRomVersion":0,"sdRomVersion":18005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":599,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18005,"notes":{"total":218,"tap":198,"hold":11,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":599,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":18005,"notes":{"total":382,"tap":348,"hold":16,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":599,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Jack","romVersion":18005,"notes":{"total":463,"tap":377,"hold":18,"slide":61,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":599,"level_id":3,"level":"12","level_value":12.0,"note_designer":"rioN","romVersion":18005,"notes":{"total":657,"tap":490,"hold":19,"slide":134,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":601,"players":2663,"title":"きらっせ☆ウッド村ファーム","utTitle":null,"artist":"uno(IOSYS) feat.miko","albums":["きらっせ☆ウッド村ファーム","妖精村","木村农场","\uD83D\uDE06\uD83D\uDE06","銚子县","はっぴー酱下乡扶贫","きらっせ☆ウッド村ファーム","妖精村","木村农场","\uD83D\uDE06\uD83D\uDE06","銚子县","はっぴー酱下乡扶贫","きらっせ☆ウッド村ファーム","妖精村","木村农场","\uD83D\uDE06\uD83D\uDE06","銚子县","はっぴー酱下乡扶贫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":190,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18012,"dxRomVersion":0,"sdRomVersion":18012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":601,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18012,"notes":{"total":286,"tap":268,"hold":2,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":601,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":18012,"notes":{"total":458,"tap":411,"hold":31,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":601,"level_id":2,"level":"10","level_value":10.1,"note_designer":"はっぴー","romVersion":18012,"notes":{"total":569,"tap":446,"hold":33,"slide":68,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":601,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":18012,"notes":{"total":695,"tap":418,"hold":38,"slide":185,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":602,"players":5342,"title":"taboo tears you up","utTitle":null,"artist":"REDALiCE (HARDCORE TANO*C)","albums":["taboo tears you up","禁忌将你撕裂","三倍icecream","淘宝","滔搏","dx禁忌将你撕裂","dxtaboo","dx淘宝","taboo tears you up","禁忌将你撕裂","三倍icecream","淘宝","滔搏","dx禁忌将你撕裂","dxtaboo","dx淘宝","taboo tears you up","禁忌将你撕裂","三倍icecream","淘宝","滔搏","dx禁忌将你撕裂","dxtaboo","dx淘宝"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":18000,"dxRomVersion":22004,"sdRomVersion":18000,"utRomVersion":0,"dx":{"0":{"id":10602,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22004,"notes":{"total":142,"tap":98,"hold":20,"slide":4,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10602,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22004,"notes":{"total":373,"tap":294,"hold":17,"slide":23,"touch":28,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10602,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":501,"tap":378,"hold":62,"slide":28,"touch":26,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10602,"level_id":3,"level":"14","level_value":14.0,"note_designer":"サファ太","romVersion":22004,"notes":{"total":937,"tap":650,"hold":106,"slide":96,"touch":52,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":602,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18000,"notes":{"total":273,"tap":234,"hold":25,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":602,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":18000,"notes":{"total":367,"tap":318,"hold":23,"slide":13,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":602,"level_id":2,"level":"11","level_value":11.3,"note_designer":"ぴちネコ","romVersion":18000,"notes":{"total":545,"tap":420,"hold":50,"slide":55,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":602,"level_id":3,"level":"13","level_value":13.4,"note_designer":"如月 ゆかり","romVersion":18000,"notes":{"total":937,"tap":719,"hold":44,"slide":137,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":20,"long":false},{"id":603,"players":4772,"title":"その群青が愛しかったようだった","utTitle":null,"artist":"n-buna feat.ヤギヌマカナ","albums":["その群青が愛しかったようだった","那份群青仿佛是很可爱的样子","群青爱","那片群青好像很可爱","群青","その群青が愛しかったようだった","那份群青仿佛是很可爱的样子","群青爱","那片群青好像很可爱","群青","その群青が愛しかったようだった","那份群青仿佛是很可爱的样子","群青爱","那片群青好像很可爱","群青"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":220,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18012,"dxRomVersion":0,"sdRomVersion":18012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":603,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18012,"notes":{"total":225,"tap":206,"hold":7,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":603,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18012,"notes":{"total":432,"tap":384,"hold":15,"slide":26,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":603,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Techno Kitchen","romVersion":18012,"notes":{"total":606,"tap":505,"hold":23,"slide":64,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":603,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":18012,"notes":{"total":717,"tap":550,"hold":38,"slide":115,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":254,"long":false},{"id":606,"players":9554,"title":"The wheel to the right","utTitle":{"110606":"[右]The wheel to the right"},"artist":"Sampling Masters MEGA","albums":["the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","锯你小唧唧","锯所有人小唧唧","the wheel to the right","印度人","车轮右拐","欢乐喜锯人","国服刀妹","电锯惊魂","底力","轮子右拧","右轮","dj-mega","电锯人","电锯","三块钱","一块钱2","光头强","老婆","你右边有人"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18019,"dxRomVersion":0,"sdRomVersion":18019,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":606,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18019,"notes":{"total":392,"tap":354,"hold":7,"slide":6,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":606,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":18019,"notes":{"total":562,"tap":443,"hold":75,"slide":31,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":606,"level_id":2,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":18019,"notes":{"total":872,"tap":547,"hold":125,"slide":156,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":606,"level_id":3,"level":"14","level_value":14.0,"note_designer":"チャン@DP皆伝","romVersion":18019,"notes":{"total":987,"tap":590,"hold":21,"slide":176,"touch":0,"break_":200},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110606":{"id":110606,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1008,"tap":603,"hold":20,"slide":185,"touch":0,"break_":200},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":69,"long":false},{"id":610,"players":3600,"title":"リンカーネイション","utTitle":null,"artist":"kemu","albums":["リンカーネイション","灵魂转生","烈火战神","lexburner","reincarnation","轮回转生","铃魂转生","リンカーネイション","灵魂转生","烈火战神","lexburner","reincarnation","轮回转生","铃魂转生","リンカーネイション","灵魂转生","烈火战神","lexburner","reincarnation","轮回转生","铃魂转生"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":610,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18500,"notes":{"total":195,"tap":163,"hold":17,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":610,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":18500,"notes":{"total":338,"tap":305,"hold":18,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":610,"level_id":2,"level":"11","level_value":11.3,"note_designer":"玉子豆腐","romVersion":18500,"notes":{"total":569,"tap":489,"hold":32,"slide":24,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":610,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ぴちネコ","romVersion":18500,"notes":{"total":861,"tap":722,"hold":23,"slide":79,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":843,"long":false},{"id":611,"players":2125,"title":"宿題が終わらないっ!","utTitle":null,"artist":"Innocent Keyと梨本悠里、JUNCA、小宮真央、樹詩音、大瀬良あい","albums":["宿題が終わらないっ!","宿题终","触手","作业写不完了","作业还没做完","不写作业","吱吱","-connect-少女与触手编织出的爱","宿题","宿題が終わらないっ!","宿题终","触手","作业写不完了","作业还没做完","不写作业","吱吱","-connect-少女与触手编织出的爱","宿题","宿題が終わらないっ!","宿题终","触手","作业写不完了","作业还没做完","不写作业","吱吱","-connect-少女与触手编织出的爱","宿题"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":611,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18500,"notes":{"total":181,"tap":157,"hold":8,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":611,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18500,"notes":{"total":281,"tap":222,"hold":22,"slide":28,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":611,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"rioN","romVersion":18500,"notes":{"total":416,"tap":304,"hold":54,"slide":38,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":611,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"如月 ゆかり","romVersion":18500,"notes":{"total":599,"tap":364,"hold":68,"slide":124,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":612,"players":4224,"title":"GO BACK 2 YOUR RAVE","utTitle":null,"artist":"nora2r","albums":["go back 2 your rave","业界骚然","回去你的2rave","2","gb2","gb2yr","go back 2 your rave","业界骚然","回去你的2rave","2","gb2","gb2yr","go back 2 your rave","业界骚然","回去你的2rave","2","gb2","gb2yr"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":612,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18500,"notes":{"total":253,"tap":228,"hold":4,"slide":11,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":612,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":18500,"notes":{"total":355,"tap":268,"hold":59,"slide":19,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":612,"level_id":2,"level":"12","level_value":12.3,"note_designer":"Techno Kitchen","romVersion":18500,"notes":{"total":591,"tap":459,"hold":16,"slide":94,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":612,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ぴちネコ","romVersion":18500,"notes":{"total":999,"tap":814,"hold":51,"slide":101,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":613,"players":3593,"title":"天国と地獄 -言ノ葉リンネ-","utTitle":null,"artist":"伊東歌詞太郎・ろん×れるりり","albums":["天国と地獄 -言ノ葉リンネ-","天国地狱","言之叶轮回","天国与地狱","天国と地獄 -言ノ葉リンネ-","天国地狱","言之叶轮回","天国与地狱","天国と地獄 -言ノ葉リンネ-","天国地狱","言之叶轮回","天国与地狱"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":138,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":613,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18500,"notes":{"total":170,"tap":136,"hold":22,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":613,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18500,"notes":{"total":307,"tap":239,"hold":38,"slide":25,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":613,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"ロシェ@ペンギン","romVersion":18500,"notes":{"total":443,"tap":286,"hold":51,"slide":92,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":613,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Moon Strix","romVersion":18500,"notes":{"total":748,"tap":600,"hold":65,"slide":59,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":398,"long":false},{"id":614,"players":6685,"title":"夢花火","utTitle":null,"artist":"豚乙女","albums":["夢花火","马栏山","u咩哈那比","麻辣蒜","乙姬角色歌","梦花火","夢花火","马栏山","u咩哈那比","麻辣蒜","乙姬角色歌","梦花火","夢花火","马栏山","u咩哈那比","麻辣蒜","乙姬角色歌","梦花火"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":186,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":614,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18500,"notes":{"total":302,"tap":280,"hold":6,"slide":5,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":614,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":18500,"notes":{"total":440,"tap":374,"hold":19,"slide":25,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":614,"level_id":2,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":18500,"notes":{"total":634,"tap":487,"hold":36,"slide":92,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":614,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":18500,"notes":{"total":943,"tap":708,"hold":25,"slide":133,"touch":0,"break_":77},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":716,"long":false},{"id":617,"players":3153,"title":"オトヒメモリー☆ウタゲーション","utTitle":null,"artist":"Junky","albums":["オトヒメモリー☆ウタゲーション","乙姬","乙姫","オトヒメモリー☆ウタゲーション","乙姬","乙姫","オトヒメモリー☆ウタゲーション","乙姬","乙姫"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18501,"dxRomVersion":0,"sdRomVersion":18501,"utRomVersion":0,"dx":{},"sd":{"0":{"id":617,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18501,"notes":{"total":226,"tap":199,"hold":18,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":617,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18501,"notes":{"total":345,"tap":286,"hold":20,"slide":25,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":617,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"小鳥遊さん","romVersion":18501,"notes":{"total":528,"tap":394,"hold":40,"slide":70,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":617,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ぴちネコ","romVersion":18501,"notes":{"total":703,"tap":492,"hold":59,"slide":115,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":618,"players":2446,"title":"ラブチーノ","utTitle":null,"artist":"Junky","albums":["ラブチーノ","lovecino","love","love cino","ラブチーノ","lovecino","love","love cino","ラブチーノ","lovecino","love","love cino"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":126,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18501,"dxRomVersion":0,"sdRomVersion":18501,"utRomVersion":0,"dx":{},"sd":{"0":{"id":618,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18501,"notes":{"total":162,"tap":138,"hold":14,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":618,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":18501,"notes":{"total":255,"tap":178,"hold":41,"slide":28,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":618,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"某S氏","romVersion":18501,"notes":{"total":383,"tap":302,"hold":41,"slide":25,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":618,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"rioN","romVersion":18501,"notes":{"total":467,"tap":311,"hold":56,"slide":86,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":621,"players":9123,"title":"ARROW","utTitle":null,"artist":"niki","albums":["arrow","箭头","OW","箭","\uD83C\uDFF9","矢","arrow","箭头","OW","箭","\uD83C\uDFF9","矢","arrow","箭头","OW","箭","\uD83C\uDFF9","矢"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":131,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18502,"dxRomVersion":0,"sdRomVersion":18502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":621,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18502,"notes":{"total":159,"tap":137,"hold":13,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":621,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18502,"notes":{"total":300,"tap":241,"hold":26,"slide":21,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":621,"level_id":2,"level":"12","level_value":12.1,"note_designer":"rioN","romVersion":18502,"notes":{"total":518,"tap":385,"hold":74,"slide":44,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":621,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":18502,"notes":{"total":657,"tap":466,"hold":123,"slide":56,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":622,"players":2888,"title":"バッド・ダンス・ホール","utTitle":null,"artist":"ぱなまん/カラスヤサボウ","albums":["バッド・ダンス・ホール","团长","小孩哥","bdh","糟糕透顶的舞厅","希望之花","坏舞厅","奥尔加","bad dance hall","バッド・ダンス・ホール","团长","小孩哥","bdh","糟糕透顶的舞厅","希望之花","坏舞厅","奥尔加","bad dance hall","バッド・ダンス・ホール","团长","小孩哥","bdh","糟糕透顶的舞厅","希望之花","坏舞厅","奥尔加","bad dance hall"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":152,"releaseDate":"20260403","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":18502,"dxRomVersion":0,"sdRomVersion":18502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":622,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18502,"notes":{"total":189,"tap":173,"hold":4,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":622,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":18502,"notes":{"total":304,"tap":237,"hold":28,"slide":30,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":622,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"小鳥遊さん","romVersion":18502,"notes":{"total":512,"tap":342,"hold":97,"slide":55,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":622,"level_id":3,"level":"13","level_value":13.4,"note_designer":"LabiLabi","romVersion":18502,"notes":{"total":797,"tap":613,"hold":44,"slide":116,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":624,"players":3074,"title":"KISS CANDY FLAVOR","utTitle":null,"artist":"カラフル・サウンズ・ポート","albums":["kiss candy flavor","小女孩福瑞","kcf","糖糖","亲甜滴","糖的味道","小红帽","亲糖口味","kiss candy flavor","小女孩福瑞","kcf","糖糖","亲甜滴","糖的味道","小红帽","亲糖口味","kiss candy flavor","小女孩福瑞","kcf","糖糖","亲甜滴","糖的味道","小红帽","亲糖口味"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":146,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18503,"dxRomVersion":0,"sdRomVersion":18503,"utRomVersion":0,"dx":{},"sd":{"0":{"id":624,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18503,"notes":{"total":203,"tap":184,"hold":6,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":624,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18503,"notes":{"total":323,"tap":274,"hold":22,"slide":13,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":624,"level_id":2,"level":"11","level_value":11.3,"note_designer":"ぴちネコ","romVersion":18503,"notes":{"total":521,"tap":397,"hold":61,"slide":30,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":624,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Moon Strix","romVersion":18503,"notes":{"total":730,"tap":558,"hold":39,"slide":119,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":625,"players":10791,"title":"Maxi","utTitle":null,"artist":"Nizikawa","albums":["maxi","dxmaxi","dx马戏","maxi","dxmaxi","dx马戏","马戏","maxi","dxmaxi","dx马戏"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20221202","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":18503,"dxRomVersion":23008,"sdRomVersion":18503,"utRomVersion":0,"dx":{"0":{"id":10625,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23008,"notes":{"total":202,"tap":160,"hold":12,"slide":8,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10625,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23008,"notes":{"total":366,"tap":311,"hold":11,"slide":3,"touch":25,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10625,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"小鳥遊さん","romVersion":23008,"notes":{"total":544,"tap":397,"hold":57,"slide":29,"touch":32,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10625,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":907,"tap":521,"hold":46,"slide":77,"touch":145,"break_":118},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":625,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18503,"notes":{"total":228,"tap":206,"hold":4,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":625,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18503,"notes":{"total":394,"tap":323,"hold":37,"slide":18,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":625,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"LabiLabi","romVersion":18503,"notes":{"total":567,"tap":436,"hold":39,"slide":70,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":625,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小鳥遊さん","romVersion":18503,"notes":{"total":914,"tap":707,"hold":57,"slide":79,"touch":0,"break_":71},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":626,"players":3412,"title":"相思創愛","utTitle":null,"artist":"伊東歌詞太郎・ろん×まらしぃ","albums":["相思創愛","相思創爱","相爱创思","相思","相思创爱","创创子","小米星","相思創愛","相思創爱","相爱创思","相思","相思创爱","创创子","小米星","相思創愛","相思創爱","相爱创思","相思","相思创爱","创创子","小米星"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":195,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18504,"dxRomVersion":0,"sdRomVersion":18504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":626,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18504,"notes":{"total":223,"tap":199,"hold":6,"slide":13,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":626,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18504,"notes":{"total":404,"tap":320,"hold":38,"slide":31,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":626,"level_id":2,"level":"11","level_value":11.4,"note_designer":"LabiLabi","romVersion":18504,"notes":{"total":507,"tap":387,"hold":41,"slide":49,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":626,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ロシェ@ペンギン","romVersion":18504,"notes":{"total":829,"tap":655,"hold":22,"slide":126,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":406,"long":false},{"id":627,"players":4470,"title":"心象蜃気楼","utTitle":null,"artist":"Orangestar","albums":["心象蜃気楼","心绮楼","心象","青岛地铁","心象晦气楼","心象楼","心象晨气楼","心象蜃气楼","心像楼","心象蜃気楼","心绮楼","心象","青岛地铁","心象晦气楼","心象楼","心象晨气楼","心象蜃气楼","心像楼","心象蜃気楼","心绮楼","心象","青岛地铁","心象晦气楼","心象楼","心象晨气楼","心象蜃气楼","心像楼"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18504,"dxRomVersion":0,"sdRomVersion":18504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":627,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18504,"notes":{"total":251,"tap":233,"hold":7,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":627,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18504,"notes":{"total":398,"tap":344,"hold":24,"slide":24,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":627,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":18504,"notes":{"total":536,"tap":404,"hold":64,"slide":60,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":627,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Revo@LC","romVersion":18504,"notes":{"total":786,"tap":513,"hold":62,"slide":201,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":267,"long":false},{"id":628,"players":8106,"title":"光線チューニング","utTitle":null,"artist":"ナユタン星人","albums":["光線チューニング","光线","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDE10\uD83D\uDD90\uD83C\uDFFB️","中二节奏","光线turning","光線チューニング","光线","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDE10\uD83D\uDD90\uD83C\uDFFB️","中二节奏","光线turning","光線チューニング","光线","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDE10\uD83D\uDD90\uD83C\uDFFB️","中二节奏","光线turning"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18504,"dxRomVersion":0,"sdRomVersion":18504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":628,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18504,"notes":{"total":314,"tap":296,"hold":4,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":628,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18504,"notes":{"total":439,"tap":346,"hold":44,"slide":37,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":628,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Moon Strix","romVersion":18504,"notes":{"total":617,"tap":458,"hold":48,"slide":94,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":628,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":18504,"notes":{"total":933,"tap":576,"hold":123,"slide":186,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":432,"long":false},{"id":629,"players":4898,"title":"Limit Break","utTitle":null,"artist":"DiGiTAL WiNG","albums":["limit break","界限打击","限制绝赞","lb","三角洲","三角洲行动","三角初华","限界突破","黄金大三角","三角符文","limit break","界限打击","限制绝赞","lb","三角洲","三角洲行动","三角初华","限界突破","黄金大三角","三角符文","limit break","界限打击","限制绝赞","lb","三角洲","三角洲行动","三角初华","限界突破","黄金大三角","三角符文"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":153,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18505,"dxRomVersion":0,"sdRomVersion":18505,"utRomVersion":0,"dx":{},"sd":{"0":{"id":629,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18505,"notes":{"total":236,"tap":217,"hold":8,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":629,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18505,"notes":{"total":365,"tap":293,"hold":18,"slide":28,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":629,"level_id":2,"level":"11","level_value":11.5,"note_designer":"玉子豆腐","romVersion":18505,"notes":{"total":463,"tap":254,"hold":53,"slide":117,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":629,"level_id":3,"level":"13","level_value":13.4,"note_designer":"某S氏","romVersion":18505,"notes":{"total":755,"tap":589,"hold":21,"slide":95,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":629,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":18505,"notes":{"total":825,"tap":639,"hold":46,"slide":75,"touch":0,"break_":65},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":630,"players":2989,"title":"曖昧mind","utTitle":null,"artist":"Halozy","albums":["曖昧mind","爱maimai","暧昧mind","暧昧","哮喘","曖昧mind","爱maimai","暧昧mind","暧昧","哮喘","曖昧mind","爱maimai","暧昧mind","暧昧","哮喘"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":135,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18505,"dxRomVersion":0,"sdRomVersion":18505,"utRomVersion":0,"dx":{},"sd":{"0":{"id":630,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18505,"notes":{"total":214,"tap":189,"hold":10,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":630,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18505,"notes":{"total":320,"tap":231,"hold":51,"slide":25,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":630,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"Techno Kitchen","romVersion":18505,"notes":{"total":469,"tap":289,"hold":46,"slide":108,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":630,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":18505,"notes":{"total":709,"tap":540,"hold":54,"slide":96,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":631,"players":5323,"title":"KING is BACK!!","utTitle":{"110631":"[逆]KING is BACK!!"},"artist":"A-One","albums":["king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!","king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!","king is back!!","王负剑","王是背","king is back","你回来了","王回家","kobe is back","王是后背","kib","王归","王回来了","王者归来","kobe is back!!"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":176,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":18505,"dxRomVersion":0,"sdRomVersion":18505,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":631,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18505,"notes":{"total":254,"tap":232,"hold":12,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":631,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":18505,"notes":{"total":386,"tap":298,"hold":50,"slide":26,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":631,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"某S氏","romVersion":18505,"notes":{"total":524,"tap":391,"hold":33,"slide":56,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":631,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Revo@LC","romVersion":18505,"notes":{"total":1055,"tap":786,"hold":22,"slide":136,"touch":0,"break_":111},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110631":{"id":110631,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1035,"tap":777,"hold":24,"slide":138,"touch":0,"break_":96},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1222,"players":9575,"title":"BREaK! BREaK! BREaK!","utTitle":{"111222":"[光]BREaK! BREaK! BREaK!"},"artist":"HiTECH NINJA vs Cranky","albums":["break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰","break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰","break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"maimai","bpm":165,"releaseDate":"20240315","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":24003,"dx":{"0":{"id":11222,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21007,"notes":{"total":207,"tap":172,"hold":10,"slide":8,"touch":0,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11222,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21007,"notes":{"total":414,"tap":321,"hold":17,"slide":14,"touch":26,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11222,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":21007,"notes":{"total":732,"tap":513,"hold":65,"slide":42,"touch":55,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11222,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"サファ太 vs -ZONE- SaFaRi","romVersion":21007,"notes":{"total":1106,"tap":797,"hold":76,"slide":121,"touch":62,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111222":{"id":111222,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":1104,"tap":0,"hold":5,"slide":0,"touch":60,"break_":1039},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":632,"players":3850,"title":"Ultranova","utTitle":null,"artist":"A4paper","albums":["ultranova","\uD83C\uDFCD️","a4纸","摩托车","超新星","ultranova","\uD83C\uDFCD️","a4纸","摩托车","超新星","ultranova","\uD83C\uDFCD️","a4纸","摩托车","超新星"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":156,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18505,"dxRomVersion":0,"sdRomVersion":18505,"utRomVersion":0,"dx":{},"sd":{"0":{"id":632,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18505,"notes":{"total":183,"tap":164,"hold":4,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":632,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18505,"notes":{"total":312,"tap":261,"hold":29,"slide":13,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":632,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":18505,"notes":{"total":524,"tap":393,"hold":63,"slide":48,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":632,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小鳥遊さん","romVersion":18505,"notes":{"total":895,"tap":768,"hold":38,"slide":56,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":634,"players":2244,"title":"GET!! 夢&DREAM","utTitle":null,"artist":"加賀美 祥「学園ハンサム」","albums":["get!! 夢&dream","梦","火鸡帅哥2","学园handsome","get梦","下巴戳死人学园","getdream","取得梦和梦","获得梦和梦","get!! 夢&dream","梦","火鸡帅哥2","学园handsome","get梦","下巴戳死人学园","getdream","取得梦和梦","获得梦和梦","get!! 夢&dream","梦","火鸡帅哥2","学园handsome","get梦","下巴戳死人学园","getdream","取得梦和梦","获得梦和梦"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":150,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18506,"dxRomVersion":0,"sdRomVersion":18506,"utRomVersion":0,"dx":{},"sd":{"0":{"id":634,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18506,"notes":{"total":142,"tap":117,"hold":16,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":634,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18506,"notes":{"total":250,"tap":182,"hold":31,"slide":31,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":634,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":18506,"notes":{"total":371,"tap":282,"hold":34,"slide":49,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":634,"level_id":3,"level":"12","level_value":12.4,"note_designer":"玉子豆腐","romVersion":18506,"notes":{"total":407,"tap":108,"hold":155,"slide":117,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":636,"players":3411,"title":"日本の米は世界一","utTitle":null,"artist":"打首獄門同好会","albums":["日本の米は世界一","水稻","日本米世界一","日本绝赞世界第一","东北大米世界第一","米米世界","kib青春版","日本大米世界第一","日本米","\uD83C\uDF3E","日本の米は世界一","水稻","日本米世界一","日本绝赞世界第一","东北大米世界第一","米米世界","kib青春版","日本大米世界第一","日本米","\uD83C\uDF3E","日本の米は世界一","水稻","日本米世界一","日本绝赞世界第一","东北大米世界第一","米米世界","kib青春版","日本大米世界第一","日本米","\uD83C\uDF3E"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":138,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18512,"dxRomVersion":0,"sdRomVersion":18512,"utRomVersion":0,"dx":{},"sd":{"0":{"id":636,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18512,"notes":{"total":173,"tap":161,"hold":4,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":636,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":18512,"notes":{"total":286,"tap":201,"hold":14,"slide":9,"touch":0,"break_":62},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":636,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":18512,"notes":{"total":463,"tap":367,"hold":28,"slide":14,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":636,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":18512,"notes":{"total":706,"tap":390,"hold":56,"slide":110,"touch":0,"break_":150},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":637,"players":2583,"title":"ないせんのうた","utTitle":null,"artist":"ナイセン - momoco-","albums":["ないせんのうた","内线云1","内线","没歌","再见im外星人","打电话","这个地球是一秒都待不下去了","ないせんのうた","内线云1","内线","没歌","再见im外星人","打电话","这个地球是一秒都待不下去了","ないせんのうた","内线云1","内线","没歌","再见im外星人","打电话","这个地球是一秒都待不下去了"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":184,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18512,"dxRomVersion":0,"sdRomVersion":18512,"utRomVersion":0,"dx":{},"sd":{"0":{"id":637,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18512,"notes":{"total":247,"tap":223,"hold":12,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":637,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":18512,"notes":{"total":410,"tap":330,"hold":11,"slide":23,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":637,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"rioN","romVersion":18512,"notes":{"total":550,"tap":358,"hold":88,"slide":54,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":637,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":18512,"notes":{"total":825,"tap":563,"hold":19,"slide":149,"touch":0,"break_":94},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":639,"players":2620,"title":"Starlight Dance Floor","utTitle":null,"artist":"発熱巫女~ず","albums":["starlight dance floor","大姐姐魔理沙","sdf","星光舞厅","星光大道","夜店魔理沙","星光舞池","starlight dance floor","大姐姐魔理沙","sdf","星光舞厅","星光大道","夜店魔理沙","星光舞池","starlight dance floor","大姐姐魔理沙","sdf","星光舞厅","星光大道","夜店魔理沙","星光舞池"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":128,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18508,"dxRomVersion":0,"sdRomVersion":18508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":639,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18508,"notes":{"total":134,"tap":122,"hold":4,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":639,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":18508,"notes":{"total":306,"tap":254,"hold":28,"slide":19,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":639,"level_id":2,"level":"10","level_value":10.2,"note_designer":"玉子豆腐","romVersion":18508,"notes":{"total":324,"tap":229,"hold":75,"slide":16,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":639,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ものくろっく","romVersion":18508,"notes":{"total":530,"tap":383,"hold":18,"slide":109,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":380,"long":false},{"id":640,"players":2541,"title":"妖精村の月誕祭 ~Lunate Elf","utTitle":null,"artist":"どぶウサギ","albums":["妖精村の月誕祭 ~lunate elf","妖精村","月诞祭","大妖精","恋恋","妖精村の月誕祭 ~lunate elf","妖精村","月诞祭","大妖精","恋恋","妖精村の月誕祭 ~lunate elf","妖精村","月诞祭","大妖精","恋恋"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":132,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18508,"dxRomVersion":0,"sdRomVersion":18508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":640,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18508,"notes":{"total":137,"tap":120,"hold":10,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":640,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":18508,"notes":{"total":209,"tap":160,"hold":27,"slide":18,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":640,"level_id":2,"level":"10","level_value":10.5,"note_designer":"某S氏","romVersion":18508,"notes":{"total":320,"tap":246,"hold":34,"slide":35,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":640,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":18508,"notes":{"total":606,"tap":474,"hold":38,"slide":74,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":641,"players":12651,"title":"Calamity Fortune","utTitle":null,"artist":"LeaF","albums":["calamity fortune","dxcf","卡拉米提佛纯","穿越火线","灾厄命运","cf","calamity fortune","dxcf","卡拉米提佛纯","穿越火线","灾厄命运","cf","calamity fortune","dxcf","卡拉米提佛纯","穿越火线","灾厄命运","cf"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20191101","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":18512,"dxRomVersion":20007,"sdRomVersion":18512,"utRomVersion":0,"dx":{"0":{"id":10641,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20007,"notes":{"total":186,"tap":143,"hold":15,"slide":6,"touch":18,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10641,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20007,"notes":{"total":413,"tap":327,"hold":21,"slide":20,"touch":21,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10641,"level_id":2,"level":"11","level_value":11.4,"note_designer":"某S氏","romVersion":20007,"notes":{"total":558,"tap":316,"hold":64,"slide":52,"touch":108,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10641,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"シチミヘルツ","romVersion":20007,"notes":{"total":935,"tap":622,"hold":98,"slide":73,"touch":123,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":641,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18512,"notes":{"total":323,"tap":283,"hold":8,"slide":20,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":641,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":18512,"notes":{"total":407,"tap":321,"hold":47,"slide":27,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":641,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"玉子豆腐","romVersion":18512,"notes":{"total":608,"tap":363,"hold":58,"slide":163,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":641,"level_id":3,"level":"14","level_value":14.2,"note_designer":"小鳥遊さん","romVersion":18512,"notes":{"total":1142,"tap":978,"hold":24,"slide":115,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":504,"long":false},{"id":642,"players":4524,"title":"Justified","utTitle":null,"artist":"MintJam feat.光吉猛修","albums":["justified","正义","梅西大战科比","牌佬打架","红蓝对决","森林冰火人","justified","正义","梅西大战科比","牌佬打架","红蓝对决","森林冰火人","justified","正义","梅西大战科比","牌佬打架","红蓝对决","森林冰火人","哪吒大战敖丙"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19012,"dxRomVersion":0,"sdRomVersion":19012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":642,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19012,"notes":{"total":211,"tap":184,"hold":16,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":642,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":19012,"notes":{"total":440,"tap":378,"hold":26,"slide":22,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":642,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":19012,"notes":{"total":610,"tap":460,"hold":49,"slide":87,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":642,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Jack","romVersion":19012,"notes":{"total":872,"tap":658,"hold":41,"slide":131,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":643,"players":8716,"title":"Excalibur ~Revived resolution~","utTitle":null,"artist":"Project Grimoire","albums":["excalibur ~revived resolution~","excalibur ~revived resolution~","生煎2","圣剑2","圣剑二","excalibur ~revived resolution~","生煎2","圣剑2","圣剑二","福瑞2"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19005,"dxRomVersion":0,"sdRomVersion":19005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":643,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19005,"notes":{"total":237,"tap":218,"hold":11,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":643,"level_id":1,"level":"10","level_value":10.3,"note_designer":"-","romVersion":19005,"notes":{"total":426,"tap":335,"hold":45,"slide":31,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":643,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":19005,"notes":{"total":647,"tap":496,"hold":27,"slide":111,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":643,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":19005,"notes":{"total":974,"tap":801,"hold":49,"slide":120,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":822,"long":false},{"id":647,"players":9434,"title":"エイリアンエイリアン","utTitle":{"110647":"[協]エイリアンエイリアン"},"artist":"ナユタン星人","albums":["エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien","エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien","エイリアンエイリアン","河南人","常陆茉子","外星人外星人","\uD83D\uDC7D","奥利奥利安","阿里安","alien","✋\uD83C\uDFFB\uD83D\uDE10✋\uD83C\uDFFB","奥利安奥利安","外星人","alien alien"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":152,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":18511,"dxRomVersion":0,"sdRomVersion":18511,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":647,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18511,"notes":{"total":215,"tap":196,"hold":4,"slide":6,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":647,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18511,"notes":{"total":328,"tap":273,"hold":41,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":647,"level_id":2,"level":"10","level_value":10.0,"note_designer":"すきやき奉行","romVersion":18511,"notes":{"total":480,"tap":337,"hold":61,"slide":52,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":647,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":18511,"notes":{"total":756,"tap":563,"hold":38,"slide":110,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110647":{"id":110647,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":369,"long":false},{"id":998,"players":1926,"title":"[宴]Oshama Scramble! (Cranky Remix)","utTitle":{"100998":"[宴]Oshama Scramble! (Cranky Remix)"},"artist":"Cranky","albums":null,"hasDx":false,"hasSd":false,"hasUt":true,"genre":null,"bpm":190,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24505,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":24505,"dx":{},"sd":{},"ut":{"100998":{"id":100998,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24505,"notes":{"total":1201,"tap":849,"hold":66,"slide":210,"touch":0,"break_":76},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":648,"players":3800,"title":"My Dearest Song","utTitle":null,"artist":"月鈴 白奈(CV:高野 麻里佳)","albums":["my dearest song","白奈","我最亲爱的乐曲","teravolt","母人拉大提琴","我爱歌","生日歌","大提琴","女人拉提琴","my dearest song","白奈","我最亲爱的乐曲","teravolt","母人拉大提琴","我爱歌","生日歌","大提琴","女人拉提琴","my dearest song","白奈","我最亲爱的乐曲","teravolt","母人拉大提琴","我爱歌","生日歌","大提琴","女人拉提琴"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":145,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18509,"dxRomVersion":0,"sdRomVersion":18509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":648,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18509,"notes":{"total":193,"tap":163,"hold":16,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":648,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":18509,"notes":{"total":331,"tap":209,"hold":95,"slide":17,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":648,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"LabiLabi","romVersion":18509,"notes":{"total":475,"tap":334,"hold":49,"slide":77,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":648,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":18509,"notes":{"total":802,"tap":610,"hold":46,"slide":132,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":264,"long":false},{"id":649,"players":4890,"title":"猛進ソリストライフ!","utTitle":null,"artist":"月鈴 那知(CV:今村 彩夏)","albums":["猛進ソリストライフ!","猛进","月玲那知","小提琴","庞德","猛進ソリストライフ!","猛进","月玲那知","小提琴","庞德","猛進ソリストライフ!","猛进","月玲那知","小提琴","庞德"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":189,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18509,"dxRomVersion":0,"sdRomVersion":18509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":649,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18509,"notes":{"total":252,"tap":144,"hold":85,"slide":9,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":649,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":18509,"notes":{"total":419,"tap":364,"hold":32,"slide":20,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":649,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"小鳥遊さん","romVersion":18509,"notes":{"total":634,"tap":469,"hold":100,"slide":57,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":649,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ロシェ@ペンギン","romVersion":18509,"notes":{"total":856,"tap":625,"hold":78,"slide":118,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":331,"long":false},{"id":650,"players":1578,"title":"Let's Go Away","utTitle":null,"artist":"光吉猛修「デイトナ Championship USA」","albums":["let's go away","梦游美国","赛车","芜湖","let's go away","梦游美国","赛车","芜湖","let's go away","梦游美国","赛车","芜湖"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":240,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19502,"dxRomVersion":0,"sdRomVersion":19502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":650,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19502,"notes":{"total":157,"tap":141,"hold":9,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":650,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19502,"notes":{"total":311,"tap":239,"hold":44,"slide":10,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":650,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"某S氏","romVersion":19502,"notes":{"total":480,"tap":398,"hold":45,"slide":31,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":650,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"チャン@DP皆伝","romVersion":19502,"notes":{"total":625,"tap":377,"hold":37,"slide":117,"touch":0,"break_":94},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":654,"players":3500,"title":"真・ハンサム体操でズンドコホイ","utTitle":null,"artist":"10Re;「学園ハンサム」","albums":["真・ハンサム体操でズンドコホイ","四个人站着一个人躺着","憋笑挑战2","学园handsome","火鸡帅哥","体操","帅哥体操","深海男同","四个站着一个躺着","学园帅哥","哇酷哇酷","真体操","真・ハンサム体操でズンドコホイ","四个人站着一个人躺着","憋笑挑战2","学园handsome","火鸡帅哥","体操","帅哥体操","深海男同","四个站着一个躺着","学园帅哥","哇酷哇酷","真体操","真・ハンサム体操でズンドコホイ","四个人站着一个人躺着","憋笑挑战2","学园handsome","火鸡帅哥","体操","帅哥体操","深海男同","四个站着一个躺着","学园帅哥","哇酷哇酷","真体操"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18506,"dxRomVersion":0,"sdRomVersion":18506,"utRomVersion":0,"dx":{},"sd":{"0":{"id":654,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18506,"notes":{"total":146,"tap":121,"hold":10,"slide":13,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":654,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18506,"notes":{"total":225,"tap":123,"hold":87,"slide":13,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":654,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":18506,"notes":{"total":318,"tap":174,"hold":110,"slide":20,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":654,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":18506,"notes":{"total":500,"tap":296,"hold":92,"slide":89,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":655,"players":4826,"title":"フラジール","utTitle":null,"artist":"ぬゆり","albums":["フラジール","易碎品","脆弱","七海娜娜米","易碎","fragile","フラジール","易碎品","脆弱","七海娜娜米","易碎","fragile","フラジール","易碎品","脆弱","七海娜娜米","易碎","fragile"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":127,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18511,"dxRomVersion":0,"sdRomVersion":18511,"utRomVersion":0,"dx":{},"sd":{"0":{"id":655,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18511,"notes":{"total":188,"tap":161,"hold":14,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":655,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18511,"notes":{"total":283,"tap":214,"hold":46,"slide":20,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":655,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"LabiLabi","romVersion":18511,"notes":{"total":398,"tap":296,"hold":41,"slide":57,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":655,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"rioN","romVersion":18511,"notes":{"total":664,"tap":557,"hold":53,"slide":46,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":512,"long":false},{"id":657,"players":3257,"title":"オーディエンスを沸かす程度の能力 feat.タイツォン","utTitle":null,"artist":"D.watt(IOSYS)+らっぷびと","albums":["オーディエンスを沸かす程度の能力 feat.タイツォン","沸","东方月灯笼","沸腾","沸程度","沸程度能力","沸腾程度","沸能力","オーディエンスを沸かす程度の能力 feat.タイツォン","沸","东方月灯笼","沸腾","沸程度","沸程度能力","沸腾程度","沸能力","オーディエンスを沸かす程度の能力 feat.タイツォン","沸","东方月灯笼","沸腾","沸程度","沸程度能力","沸腾程度","沸能力"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":216,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18508,"dxRomVersion":0,"sdRomVersion":18508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":657,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18508,"notes":{"total":140,"tap":126,"hold":4,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":657,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18508,"notes":{"total":283,"tap":215,"hold":47,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":657,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"はっぴー","romVersion":18508,"notes":{"total":405,"tap":322,"hold":48,"slide":21,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":657,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":18508,"notes":{"total":708,"tap":520,"hold":15,"slide":139,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":658,"players":5724,"title":"人里に下ったアタイがいつの間にか社畜になっていた件","utTitle":null,"artist":"ねこみりん + nora2r feat. 小宮真央","albums":["人里に下ったアタイがいつの間にか社畜になっていた件","人里","no no working","人里社畜","996","社畜","人里に下ったアタイがいつの間にか社畜になっていた件","人里","no no working","人里社畜","996","社畜","人里に下ったアタイがいつの間にか社畜になっていた件","人里","no no working","人里社畜","996","社畜"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18503,"dxRomVersion":0,"sdRomVersion":18503,"utRomVersion":0,"dx":{},"sd":{"0":{"id":658,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18503,"notes":{"total":271,"tap":256,"hold":4,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":658,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":18503,"notes":{"total":441,"tap":322,"hold":49,"slide":31,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":658,"level_id":2,"level":"13","level_value":13.2,"note_designer":"rioN","romVersion":18503,"notes":{"total":727,"tap":544,"hold":33,"slide":77,"touch":0,"break_":73},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":658,"level_id":3,"level":"14","level_value":14.0,"note_designer":"某S氏","romVersion":18503,"notes":{"total":913,"tap":667,"hold":76,"slide":94,"touch":0,"break_":76},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":664,"players":7070,"title":"Moon of Noon","utTitle":null,"artist":"Sampling Masters MEGA","albums":["moon of noon","印度人2","堇神啊","月吗","你过关","月儿子","农具做瑜伽","科比鬼叫","牢大硅胶","四块钱","牢大打坐","牢大","五块钱","星星入门","科比跳舞","​hop","牢大鬼叫","月孙子","一块钱3","午月","moon of noon","印度人2","堇神啊","月吗","你过关","月儿子","农具做瑜伽","科比鬼叫","牢大硅胶","四块钱","牢大打坐","牢大","五块钱","星星入门","科比跳舞","​hop","牢大鬼叫","月孙子","一块钱3","午月","wlz2","moon of noon","印度人2","堇神啊","月吗","你过关","月儿子","农具做瑜伽","科比鬼叫","牢大硅胶","四块钱","牢大打坐","牢大","五块钱","星星入门","科比跳舞","​hop","牢大鬼叫","月孙子","一块钱3","午月"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18507,"dxRomVersion":0,"sdRomVersion":18507,"utRomVersion":0,"dx":{},"sd":{"0":{"id":664,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18507,"notes":{"total":297,"tap":265,"hold":14,"slide":7,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":664,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":18507,"notes":{"total":423,"tap":336,"hold":50,"slide":28,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":664,"level_id":2,"level":"13","level_value":13.1,"note_designer":"Moon Strix","romVersion":18507,"notes":{"total":690,"tap":470,"hold":104,"slide":90,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":664,"level_id":3,"level":"14","level_value":14.4,"note_designer":"rioN","romVersion":18507,"notes":{"total":924,"tap":653,"hold":99,"slide":156,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2356,"long":false},{"id":665,"players":8884,"title":"チルノのパーフェクトさんすう教室 ⑨周年バージョン","utTitle":null,"artist":"IOSYSと愉快な⑨周年フレンズ","albums":["チルノのパーフェクトさんすう教室 ⑨周年バージョン","9","99","笨蛋教室","9周年算数教室","9周年教室","9周年","九周年","dxbaka","⑨","dx琪露诺","琪露诺","算数教室","baka","チルノのパーフェクトさんすう教室 ⑨周年バージョン","9","99","笨蛋教室","9周年算数教室","9周年教室","9周年","九周年","dxbaka","⑨","dx琪露诺","琪露诺","算数教室","baka","チルノのパーフェクトさんすう教室 ⑨周年バージョン","9","99","笨蛋教室","9周年算数教室","9周年教室","9周年","九周年","dxbaka","⑨","dx琪露诺","琪露诺","算数教室","baka"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":175,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":18508,"dxRomVersion":20000,"sdRomVersion":18508,"utRomVersion":0,"dx":{"0":{"id":10665,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":146,"tap":90,"hold":39,"slide":4,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10665,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":289,"tap":220,"hold":26,"slide":6,"touch":11,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10665,"level_id":2,"level":"9","level_value":9.4,"note_designer":"サファ太","romVersion":20000,"notes":{"total":479,"tap":341,"hold":63,"slide":27,"touch":38,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10665,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"華火職人","romVersion":20000,"notes":{"total":740,"tap":483,"hold":53,"slide":60,"touch":102,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":665,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18508,"notes":{"total":238,"tap":218,"hold":8,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":665,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":18508,"notes":{"total":330,"tap":247,"hold":50,"slide":24,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":665,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":18508,"notes":{"total":530,"tap":240,"hold":71,"slide":120,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":665,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":18508,"notes":{"total":771,"tap":519,"hold":63,"slide":90,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":528,"long":false},{"id":666,"players":3109,"title":"デスパレイト","utTitle":null,"artist":"owl*tree","albums":["デスパレイト","666","desperate","绝望","デスパレイト","666","desperate","绝望","デスパレイト","666","desperate","绝望"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18507,"dxRomVersion":0,"sdRomVersion":18507,"utRomVersion":0,"dx":{},"sd":{"0":{"id":666,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":18507,"notes":{"total":189,"tap":166,"hold":5,"slide":9,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":666,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":18507,"notes":{"total":281,"tap":202,"hold":38,"slide":23,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":666,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"ぴちネコ","romVersion":18507,"notes":{"total":478,"tap":336,"hold":43,"slide":80,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":666,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":18507,"notes":{"total":685,"tap":512,"hold":44,"slide":113,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2784,"long":false},{"id":670,"players":8836,"title":"ドーナツホール","utTitle":null,"artist":"ハチ","albums":["ドーナツホール","甜圈洞","甜甜圈","\uD83C\uDF69","甜甜圈洞","ドーナツホール","甜圈洞","甜甜圈","\uD83C\uDF69","甜甜圈洞","ドーナツホール","甜圈洞","甜甜圈","\uD83C\uDF69","甜甜圈洞"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":252,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19004,"dxRomVersion":0,"sdRomVersion":19004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":670,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19004,"notes":{"total":212,"tap":189,"hold":8,"slide":8,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":670,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19004,"notes":{"total":352,"tap":330,"hold":12,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":670,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Moon Strix","romVersion":19004,"notes":{"total":552,"tap":425,"hold":81,"slide":38,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":670,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":19004,"notes":{"total":934,"tap":752,"hold":32,"slide":139,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":24,"long":false},{"id":672,"players":6068,"title":"MilK","utTitle":null,"artist":"モリモリあつし","albums":["milk","白色液体","牛奶","奶","milk","白色液体","牛奶","奶","milk","白色液体","牛奶","奶","\uD83D\uDE0B"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":672,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19000,"notes":{"total":191,"tap":175,"hold":6,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":672,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19000,"notes":{"total":334,"tap":290,"hold":25,"slide":7,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":672,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"rioN","romVersion":19000,"notes":{"total":551,"tap":333,"hold":125,"slide":53,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":672,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":19000,"notes":{"total":636,"tap":424,"hold":76,"slide":83,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":673,"players":4147,"title":"咲キ誇レ常世ノ華","utTitle":null,"artist":"Sou×マチゲリータ","albums":["咲キ誇レ常世ノ華","常世","永远盛开在世上的灿烂花","咲華","常世华","常世之华","咲キ誇レ常世ノ華","常世","永远盛开在世上的灿烂花","咲華","常世华","常世之华","咲キ誇レ常世ノ華","常世","永远盛开在世上的灿烂花","咲華","常世华","常世之华"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":673,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19000,"notes":{"total":204,"tap":183,"hold":5,"slide":8,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":673,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19000,"notes":{"total":370,"tap":315,"hold":36,"slide":6,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":673,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":19000,"notes":{"total":537,"tap":450,"hold":42,"slide":36,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":673,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ぴちネコ","romVersion":19000,"notes":{"total":804,"tap":579,"hold":42,"slide":155,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":633,"long":false},{"id":674,"players":6380,"title":"Magical Flavor","utTitle":null,"artist":"DECO*27 feat.Tia","albums":["magical flavor","魔法味道","milk+op","白代主题曲","魔法风味","mf","别急27","galgame","magical flavor","魔法味道","milk+op","白代主题曲","魔法风味","mf","别急27","galgame","magical flavor","魔法味道","milk+op","白代主题曲","魔法风味","mf","别急27","galgame"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":98,"releaseDate":"20250926","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":674,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19000,"notes":{"total":159,"tap":149,"hold":4,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":674,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19000,"notes":{"total":269,"tap":207,"hold":40,"slide":16,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":674,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"玉子豆腐","romVersion":19000,"notes":{"total":426,"tap":352,"hold":41,"slide":26,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":674,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19000,"notes":{"total":593,"tap":477,"hold":27,"slide":75,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":680,"players":3405,"title":"Candy Tall Woman","utTitle":null,"artist":"naotyu- feat. 佐々木恵梨","albums":["candy tall woman","狗日的wjr","糖女士","糖果高女人","糖高女","糖果高女士","太宗偷女人","高血糖","砍弟搞女人","高血糖女人","candy tall woman","狗日的wjr","糖女士","糖果高女人","糖高女","糖果高女士","太宗偷女人","高血糖","砍弟搞女人","高血糖女人","candy tall woman","狗日的wjr","糖女士","糖果高女人","糖高女","糖果高女士","太宗偷女人","高血糖","砍弟搞女人","高血糖女人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19007,"dxRomVersion":0,"sdRomVersion":19007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":680,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19007,"notes":{"total":203,"tap":189,"hold":4,"slide":9,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":680,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19007,"notes":{"total":322,"tap":267,"hold":11,"slide":31,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":680,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ものくろっく","romVersion":19007,"notes":{"total":485,"tap":351,"hold":60,"slide":59,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":680,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"某S氏","romVersion":19007,"notes":{"total":741,"tap":591,"hold":43,"slide":80,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":681,"players":6333,"title":"Signature","utTitle":null,"artist":"Palme","albums":["signature","签名卡","签名","signature","签名卡","签名","signature","签名卡","签名"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":128,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19003,"dxRomVersion":0,"sdRomVersion":19003,"utRomVersion":0,"dx":{},"sd":{"0":{"id":681,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19003,"notes":{"total":184,"tap":162,"hold":10,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":681,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19003,"notes":{"total":356,"tap":307,"hold":19,"slide":16,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":681,"level_id":2,"level":"12","level_value":12.4,"note_designer":"はっぴー","romVersion":19003,"notes":{"total":503,"tap":416,"hold":32,"slide":51,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":681,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Techno Kitchen","romVersion":19003,"notes":{"total":698,"tap":562,"hold":45,"slide":65,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":682,"players":7143,"title":"人生リセットボタン","utTitle":null,"artist":"kemu","albums":["人生リセットボタン","人生重置按钮","人生重开","人生重置键","人生重启键","人生重置","dame","remake","人生重启","人生复位按钮","人生重来键","重开按钮","人生","人生reset button","人生重启按钮","人生リセットボタン","人生重置按钮","人生重开","人生重置键","人生重启键","人生重置","dame","remake","人生重启","人生复位按钮","人生重来键","重开按钮","人生","人生reset button","人生重启按钮","人生リセットボタン","人生重置按钮","人生重开","人生重置键","人生重启键","人生重置","dame","remake","人生重启","人生复位按钮","人生重来键","重开按钮","人生","人生reset button","人生重启按钮"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19004,"dxRomVersion":0,"sdRomVersion":19004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":682,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19004,"notes":{"total":252,"tap":229,"hold":10,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":682,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19004,"notes":{"total":397,"tap":371,"hold":8,"slide":7,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":682,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"サファ太","romVersion":19004,"notes":{"total":614,"tap":514,"hold":40,"slide":41,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":682,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ぴちネコ","romVersion":19004,"notes":{"total":967,"tap":701,"hold":48,"slide":166,"touch":0,"break_":52},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":294,"long":false},{"id":683,"players":3428,"title":"しねばいいのに","utTitle":null,"artist":"どぶウサギ","albums":["しねばいいのに","死了就好","明明死了就好了","鲤鱼王","死了算了","不如死了算了","死了一了百了","西内吧一诺尼","红鲤鱼与绿鲤鱼","要是死了就好了","西内","去死死算了","しねばいいのに","死了就好","明明死了就好了","鲤鱼王","死了算了","不如死了算了","死了一了百了","西内吧一诺尼","红鲤鱼与绿鲤鱼","要是死了就好了","西内","去死死算了","しねばいいのに","死了就好","明明死了就好了","鲤鱼王","死了算了","不如死了算了","死了一了百了","西内吧一诺尼","红鲤鱼与绿鲤鱼","要是死了就好了","西内","去死死算了"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":138,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19004,"dxRomVersion":0,"sdRomVersion":19004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":683,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19004,"notes":{"total":134,"tap":122,"hold":6,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":683,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19004,"notes":{"total":234,"tap":189,"hold":28,"slide":10,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":683,"level_id":2,"level":"10","level_value":10.2,"note_designer":"LabiLabi","romVersion":19004,"notes":{"total":292,"tap":177,"hold":27,"slide":67,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":683,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":19004,"notes":{"total":479,"tap":321,"hold":63,"slide":70,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":684,"players":5539,"title":"もうみんなしねばいいのに","utTitle":null,"artist":"谷屋楽","albums":["もうみんなしねばいいのに","全灭","如果大家都趋势了就好了","去死吧","如果大家都死了就好了","全寄","团灭","如果大家都似掉就好了","如果大家都似了就好了","趋势","大家死了好","大家都去死","水桥帕露西","帕露西","大家都死了","大家一起死","大家去死","もうみんなしねばいいのに","全灭","如果大家都趋势了就好了","去死吧","如果大家都死了就好了","全寄","团灭","如果大家都似掉就好了","如果大家都似了就好了","趋势","大家死了好","大家都去死","水桥帕露西","帕露西","大家都死了","大家一起死","大家去死","もうみんなしねばいいのに","全灭","如果大家都趋势了就好了","去死吧","如果大家都死了就好了","全寄","团灭","如果大家都似掉就好了","如果大家都似了就好了","趋势","大家死了好","大家都去死","水桥帕露西","帕露西","大家都死了","大家一起死","大家去死"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20251224","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":19004,"dxRomVersion":0,"sdRomVersion":19004,"utRomVersion":0,"dx":{},"sd":{"0":{"id":684,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19004,"notes":{"total":220,"tap":192,"hold":16,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":684,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":19004,"notes":{"total":376,"tap":305,"hold":35,"slide":18,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":684,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"玉子豆腐","romVersion":19004,"notes":{"total":646,"tap":481,"hold":27,"slide":102,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":684,"level_id":3,"level":"14","level_value":14.0,"note_designer":"某S氏","romVersion":19004,"notes":{"total":906,"tap":714,"hold":15,"slide":126,"touch":0,"break_":51},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":687,"players":3400,"title":"共感覚おばけ","utTitle":null,"artist":"ササノマリイ","albums":["共感覚おばけ","共感觉","共感怪兽","共感觉怪物","共感怪物","共感覚おばけ","共感觉","共感怪兽","共感觉怪物","共感怪物","共感覚おばけ","共感觉","共感怪兽","共感觉怪物","共感怪物"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":184,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19006,"dxRomVersion":0,"sdRomVersion":19006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":687,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19006,"notes":{"total":212,"tap":189,"hold":8,"slide":12,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":687,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":19006,"notes":{"total":274,"tap":214,"hold":27,"slide":22,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":687,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"某S氏","romVersion":19006,"notes":{"total":443,"tap":352,"hold":30,"slide":47,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":687,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ロシェ@ペンギン","romVersion":19006,"notes":{"total":682,"tap":462,"hold":51,"slide":154,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":688,"players":8645,"title":"麒麟","utTitle":null,"artist":"sasakure.UK","albums":["麒麟","kirin","\uD83E\uDD8C","\uD83E\uDD92","70","长颈鹿","鬣狗","星召跳劈","骑0","淇淋","麒麟","kirin","\uD83E\uDD8C","\uD83E\uDD92","70","长颈鹿","鬣狗","星召跳劈","骑0","淇淋","麒麟","kirin","\uD83E\uDD8C","\uD83E\uDD92","70","长颈鹿","鬣狗","星召跳劈","骑0","淇淋","鹿"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":220,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19006,"dxRomVersion":0,"sdRomVersion":19006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":688,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19006,"notes":{"total":271,"tap":245,"hold":16,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":688,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":19006,"notes":{"total":389,"tap":328,"hold":33,"slide":26,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":688,"level_id":2,"level":"13","level_value":13.0,"note_designer":"ぴちネコ","romVersion":19006,"notes":{"total":582,"tap":436,"hold":63,"slide":74,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":688,"level_id":3,"level":"14","level_value":14.1,"note_designer":"サファ太","romVersion":19006,"notes":{"total":837,"tap":652,"hold":26,"slide":150,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":689,"players":8770,"title":"Credits","utTitle":null,"artist":"Frums","albums":["credits","信用卡","点数","可用点数","信誉","corporation","提供","\uD83D\uDC18","信用","cooperation","学分","王一鑫","安眠曲","credits","信用卡","点数","可用点数","信誉","corporation","提供","\uD83D\uDC18","信用","cooperation","学分","王一鑫","安眠曲","credits","信用卡","点数","可用点数","信誉","corporation","提供","\uD83D\uDC18","信用","cooperation","学分","王一鑫","安眠曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":179,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19006,"dxRomVersion":0,"sdRomVersion":19006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":689,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19006,"notes":{"total":181,"tap":165,"hold":8,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":689,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":19006,"notes":{"total":282,"tap":203,"hold":69,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":689,"level_id":2,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":19006,"notes":{"total":346,"tap":275,"hold":69,"slide":1,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":689,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"譜面-100号","romVersion":19006,"notes":{"total":733,"tap":623,"hold":72,"slide":35,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":690,"players":15202,"title":"ダンスロボットダンス","utTitle":null,"artist":"ナユタン星人","albums":["ダンスロボットダンス","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDE11\uD83D\uDC47\uD83C\uDFFB","小v","dance robot dance","dancerobotdance","voidoll","机器人跳舞","跳舞机器人跳舞","☝\uD83D\uDE11\uD83D\uDC47","跳舞机器人","drd","机器人舞","\uD83D\uDC46\uD83D\uDC47","ダンスロボットダンス","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDE11\uD83D\uDC47\uD83C\uDFFB","小v","dance robot dance","dancerobotdance","voidoll","机器人跳舞","跳舞机器人跳舞","☝\uD83D\uDE11\uD83D\uDC47","跳舞机器人","drd","机器人舞","\uD83D\uDC46\uD83D\uDC47","ダンスロボットダンス","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDE11\uD83D\uDC47\uD83C\uDFFB","小v","dance robot dance","dancerobotdance","voidoll","机器人跳舞","跳舞机器人跳舞","☝\uD83D\uDE11\uD83D\uDC47","跳舞机器人","drd","机器人舞","\uD83D\uDC46\uD83D\uDC47","舞蹈机器人舞蹈"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20201001","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":19007,"dxRomVersion":21005,"sdRomVersion":19007,"utRomVersion":0,"dx":{"0":{"id":10690,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":21005,"notes":{"total":185,"tap":148,"hold":20,"slide":4,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10690,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":21005,"notes":{"total":394,"tap":355,"hold":13,"slide":14,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10690,"level_id":2,"level":"9","level_value":9.2,"note_designer":"隅田川星人","romVersion":21005,"notes":{"total":614,"tap":488,"hold":40,"slide":13,"touch":65,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10690,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":21005,"notes":{"total":847,"tap":472,"hold":57,"slide":146,"touch":156,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":690,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19007,"notes":{"total":355,"tap":333,"hold":14,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":690,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19007,"notes":{"total":501,"tap":456,"hold":26,"slide":15,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":690,"level_id":2,"level":"11","level_value":11.5,"note_designer":"ロシェ@ペンギン","romVersion":19007,"notes":{"total":659,"tap":515,"hold":77,"slide":41,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":690,"level_id":3,"level":"13","level_value":13.3,"note_designer":"LabiLabi","romVersion":19007,"notes":{"total":826,"tap":530,"hold":15,"slide":232,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":553,"long":false},{"id":691,"players":4579,"title":"アルカリレットウセイ","utTitle":null,"artist":"かいりきベア","albums":["アルカリレットウセイ","露露卡莉莉卡噜啦哩啦噜啦啦","莉莉卡","魔法少女举大棒","碱性劣等生","魔法少女","アルカリレットウセイ","露露卡莉莉卡噜啦哩啦噜啦啦","莉莉卡","魔法少女举大棒","碱性劣等生","魔法少女","アルカリレットウセイ","露露卡莉莉卡噜啦哩啦噜啦啦","莉莉卡","魔法少女举大棒","碱性劣等生","魔法少女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":158,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19007,"dxRomVersion":0,"sdRomVersion":19007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":691,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19007,"notes":{"total":232,"tap":212,"hold":8,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":691,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19007,"notes":{"total":322,"tap":278,"hold":21,"slide":13,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":691,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":19007,"notes":{"total":458,"tap":368,"hold":66,"slide":19,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":691,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"玉子豆腐","romVersion":19007,"notes":{"total":583,"tap":404,"hold":86,"slide":69,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":554,"long":false},{"id":692,"players":4126,"title":"ドクハク","utTitle":null,"artist":"MARETU","albums":["ドクハク","独白","卜夕八夕","黑人抬棺","照相馆","⚰️","极恶","枪叔","棺材","ドクハク","独白","卜夕八夕","黑人抬棺","照相馆","⚰️","极恶","枪叔","棺材","ドクハク","独白","卜夕八夕","黑人抬棺","照相馆","⚰️","极恶","枪叔","棺材"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":208,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19007,"dxRomVersion":0,"sdRomVersion":19007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":692,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19007,"notes":{"total":230,"tap":206,"hold":14,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":692,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":19007,"notes":{"total":289,"tap":196,"hold":64,"slide":24,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":692,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"小鳥遊さん","romVersion":19007,"notes":{"total":412,"tap":289,"hold":90,"slide":25,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":692,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":19007,"notes":{"total":641,"tap":471,"hold":76,"slide":92,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":693,"players":3025,"title":"キレキャリオン","utTitle":null,"artist":"ポリスピカデリー","albums":["キレキャリオン","乃保","切下","carry on","电锯娘","奶包","继续切","电锯女","电锯2","切下吧carryon","小电锯","kire carry on","电锯人","电锯","キレキャリオン","乃保","切下","carry on","电锯娘","奶包","继续切","电锯女","电锯2","切下吧carryon","小电锯","kire carry on","电锯人","电锯","キレキャリオン","乃保","切下","carry on","电锯娘","奶包","继续切","电锯女","电锯2","切下吧carryon","小电锯","kire carry on","电锯人","电锯"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19007,"dxRomVersion":0,"sdRomVersion":19007,"utRomVersion":0,"dx":{},"sd":{"0":{"id":693,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19007,"notes":{"total":255,"tap":239,"hold":6,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":693,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19007,"notes":{"total":267,"tap":221,"hold":24,"slide":19,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":693,"level_id":2,"level":"10","level_value":10.4,"note_designer":"はっぴー","romVersion":19007,"notes":{"total":508,"tap":423,"hold":42,"slide":41,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":693,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Moon Strix","romVersion":19007,"notes":{"total":715,"tap":556,"hold":53,"slide":89,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":555,"long":false},{"id":694,"players":9722,"title":"猫祭り","utTitle":null,"artist":"箱部 なる(CV:M・A・O)","albums":["猫祭り","哈祭咪","喵卷","学猫叫","猫抓板","\uD83D\uDE3A","绝赞101","猫","洗面奶","喵喵喵喵","哈基米钻奈子","猫寄","猫祭","猫祭り","哈祭咪","喵卷","学猫叫","猫抓板","\uD83D\uDE3A","绝赞101","猫","洗面奶","喵喵喵喵","哈基米钻奈子","猫寄","猫祭","猫祭り","哈祭咪","喵卷","学猫叫","猫抓板","\uD83D\uDE3A","绝赞101","猫","洗面奶","喵喵喵喵","哈基米钻奈子","猫寄","猫祭"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":160,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19008,"dxRomVersion":0,"sdRomVersion":19008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":694,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19008,"notes":{"total":222,"tap":184,"hold":22,"slide":8,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":694,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19008,"notes":{"total":425,"tap":344,"hold":33,"slide":9,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":694,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"LabiLabi","romVersion":19008,"notes":{"total":522,"tap":328,"hold":73,"slide":56,"touch":0,"break_":65},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":694,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":19008,"notes":{"total":785,"tap":446,"hold":45,"slide":193,"touch":0,"break_":101},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":265,"long":false},{"id":695,"players":3189,"title":"TRUST","utTitle":null,"artist":"小仏 凪(CV:佐倉 薫)","albums":["trust","足控","大脚丫子","脚歌","玉足","玉足冰棍","老冰棍","小仏凪吃雪糕","\uD83E\uDDB6","信任","狱卒","湿身少女翘脚吃冰糕","糯香柠檬茶","trust","足控","大脚丫子","脚歌","玉足","玉足冰棍","老冰棍","小仏凪吃雪糕","\uD83E\uDDB6","信任","狱卒","湿身少女翘脚吃冰糕","糯香柠檬茶","trust","足控","大脚丫子","脚歌","玉足","玉足冰棍","老冰棍","小仏凪吃雪糕","\uD83E\uDDB6","信任","狱卒","湿身少女翘脚吃冰糕","糯香柠檬茶","yokidou"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19008,"dxRomVersion":0,"sdRomVersion":19008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":695,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19008,"notes":{"total":223,"tap":199,"hold":13,"slide":10,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":695,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19008,"notes":{"total":321,"tap":284,"hold":19,"slide":15,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":695,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":19008,"notes":{"total":485,"tap":393,"hold":67,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":695,"level_id":3,"level":"13","level_value":13.1,"note_designer":"玉子豆腐","romVersion":19008,"notes":{"total":729,"tap":585,"hold":31,"slide":97,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":277,"long":false},{"id":696,"players":2915,"title":"Still","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["still","仍然","七对奈子","still","仍然","七对奈子","still","仍然","七对奈子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":176,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19008,"dxRomVersion":0,"sdRomVersion":19008,"utRomVersion":0,"dx":{},"sd":{"0":{"id":696,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19008,"notes":{"total":236,"tap":205,"hold":12,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":696,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19008,"notes":{"total":347,"tap":301,"hold":23,"slide":17,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":696,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":19008,"notes":{"total":523,"tap":410,"hold":58,"slide":48,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":696,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":19008,"notes":{"total":793,"tap":588,"hold":43,"slide":139,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":340,"long":false},{"id":699,"players":4848,"title":"天狗の落とし文 feat. ytr","utTitle":null,"artist":"魂音泉","albums":["天狗の落とし文 feat. ytr","天狗","犹太人","天狗落","天狗的匿名信","天狗的无名文书","ytr","天狗落文","天狗之落","天狗の落とし文","天狗の落とし文 feat. ytr","天狗","犹太人","天狗落","天狗的匿名信","天狗的无名文书","ytr","天狗落文","天狗之落","天狗の落とし文","天狗の落とし文 feat. ytr","天狗","犹太人","天狗落","天狗的匿名信","天狗的无名文书","ytr","天狗落文","天狗之落","天狗の落とし文"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":25009,"sdRomVersion":19011,"utRomVersion":0,"dx":{"0":{"id":10699,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":186,"tap":148,"hold":17,"slide":6,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10699,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25009,"notes":{"total":341,"tap":287,"hold":17,"slide":8,"touch":26,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10699,"level_id":2,"level":"10","level_value":10.2,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":492,"tap":375,"hold":30,"slide":43,"touch":18,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10699,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":25009,"notes":{"total":751,"tap":546,"hold":30,"slide":91,"touch":20,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":699,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19011,"notes":{"total":222,"tap":194,"hold":14,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":699,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19011,"notes":{"total":345,"tap":287,"hold":33,"slide":15,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":699,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"LabiLabi","romVersion":19011,"notes":{"total":430,"tap":309,"hold":48,"slide":69,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":699,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":19011,"notes":{"total":686,"tap":480,"hold":45,"slide":128,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":459,"long":false},{"id":700,"players":5734,"title":"疾走あんさんぶる","utTitle":{"100700":"[協]疾走あんさんぶる"},"artist":"ビートまりお(COOL&CREATE)","albums":["疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹","疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹","疾走あんさんぶる","疾走乐队","疾走","骚灵三姐妹"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":195,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":0,"sdRomVersion":19011,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":700,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19011,"notes":{"total":262,"tap":243,"hold":8,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":700,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19011,"notes":{"total":424,"tap":362,"hold":45,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":700,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":19011,"notes":{"total":613,"tap":490,"hold":72,"slide":43,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":700,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":19011,"notes":{"total":890,"tap":720,"hold":52,"slide":104,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100700":{"id":100700,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":1365,"tap":1092,"hold":220,"slide":2,"touch":0,"break_":51},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":1025,"long":false},{"id":701,"players":10400,"title":"Doll Judgment","utTitle":null,"artist":"ぬるはち","albums":["doll judgment","玩偶审判","人形裁判","人偶审判","人形审判","人偶","dj","玩偶","人偶裁判","doll judgment","玩偶审判","人形裁判","人偶审判","人形审判","人偶","dj","玩偶","人偶裁判","doll judgment","玩偶审判","人形裁判","人偶审判","人形审判","人偶","dj","玩偶","人偶裁判"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":230,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":0,"sdRomVersion":19011,"utRomVersion":0,"dx":{},"sd":{"0":{"id":701,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19011,"notes":{"total":220,"tap":197,"hold":12,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":701,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19011,"notes":{"total":440,"tap":348,"hold":56,"slide":20,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":701,"level_id":2,"level":"12","level_value":12.1,"note_designer":"某S氏","romVersion":19011,"notes":{"total":628,"tap":508,"hold":75,"slide":37,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":701,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":19011,"notes":{"total":896,"tap":728,"hold":40,"slide":115,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":791,"long":false},{"id":702,"players":5647,"title":"WARNING×WARNING×WARNING","utTitle":null,"artist":"暁Records","albums":["warning×warning×warning","克劳恩皮丝","万宁星星","www","warning","条纹过膝袜","注意注意注意","小丑","星条旗","warning×warning×warning","克劳恩皮丝","万宁星星","www","warning","条纹过膝袜","注意注意注意","小丑","星条旗","warning×warning×warning","克劳恩皮丝","万宁星星","www","warning","条纹过膝袜","注意注意注意","小丑","星条旗"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":19011,"dxRomVersion":20000,"sdRomVersion":19011,"utRomVersion":0,"dx":{"0":{"id":10702,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":20000,"notes":{"total":153,"tap":108,"hold":17,"slide":9,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10702,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":20000,"notes":{"total":370,"tap":298,"hold":33,"slide":14,"touch":11,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10702,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":20000,"notes":{"total":569,"tap":377,"hold":40,"slide":38,"touch":92,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10702,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"玉子豆腐","romVersion":20000,"notes":{"total":745,"tap":467,"hold":22,"slide":137,"touch":105,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":702,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19011,"notes":{"total":241,"tap":195,"hold":27,"slide":15,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":702,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19011,"notes":{"total":416,"tap":343,"hold":28,"slide":26,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":702,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"LabiLabi","romVersion":19011,"notes":{"total":569,"tap":385,"hold":79,"slide":79,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":702,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":19011,"notes":{"total":744,"tap":543,"hold":22,"slide":169,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":572,"long":false},{"id":704,"players":5024,"title":"SPILL OVER COLORS","utTitle":null,"artist":"矢鴇つかさ feat. kalon.","albums":["spill over colors","\uD83C\uDFA8","小脸妹","画板","soc","缠流子","sunnyduck","东云绘名","小画家","格蕾修","调色板","水手服小女孩画画","spill over colors","\uD83C\uDFA8","小脸妹","画板","soc","缠流子","sunnyduck","东云绘名","小画家","格蕾修","调色板","水手服小女孩画画","spill over colors","\uD83C\uDFA8","小脸妹","画板","soc","缠流子","sunnyduck","东云绘名","小画家","格蕾修","调色板","水手服小女孩画画"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":142,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19009,"dxRomVersion":0,"sdRomVersion":19009,"utRomVersion":0,"dx":{},"sd":{"0":{"id":704,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19009,"notes":{"total":172,"tap":147,"hold":12,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":704,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19009,"notes":{"total":392,"tap":335,"hold":24,"slide":23,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":704,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":19009,"notes":{"total":483,"tap":356,"hold":63,"slide":59,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":704,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19009,"notes":{"total":832,"tap":648,"hold":12,"slide":160,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":704,"level_id":4,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":19009,"notes":{"total":725,"tap":548,"hold":79,"slide":76,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":705,"players":11022,"title":"Mare Maris","utTitle":null,"artist":"M2U","albums":["mare maris","开船","⛵","大航海","鸭屁股","贼船","小白船","船","\uD83D\uDEA4","船歌","stasis","小破船","海面谭","帆船","白船来航","mare maris","开船","⛵","大航海","鸭屁股","贼船","小白船","船","\uD83D\uDEA4","船歌","stasis","小破船","海面谭","帆船","白船来航","mare maris","开船","⛵","大航海","鸭屁股","贼船","小白船","船","\uD83D\uDEA4","船歌","stasis","小破船","海面谭","帆船","白船来航","郑和下西洋","明日方舟"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19012,"dxRomVersion":0,"sdRomVersion":19012,"utRomVersion":0,"dx":{},"sd":{"0":{"id":705,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19012,"notes":{"total":207,"tap":185,"hold":10,"slide":9,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":705,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19012,"notes":{"total":389,"tap":323,"hold":39,"slide":17,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":705,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":19012,"notes":{"total":555,"tap":394,"hold":73,"slide":76,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":705,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":19012,"notes":{"total":856,"tap":601,"hold":145,"slide":92,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":706,"players":6689,"title":"シャルル","utTitle":null,"artist":"バルーン","albums":["シャルル","汁儿儿","三力儿儿","查尔斯","夏露露","charles","シャルル","汁儿儿","三力儿儿","查尔斯","夏露露","charles","シャルル","汁儿儿","三力儿儿","查尔斯","夏露露","charles"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":19013,"dxRomVersion":20000,"sdRomVersion":19013,"utRomVersion":0,"dx":{"0":{"id":10706,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":162,"tap":131,"hold":2,"slide":5,"touch":22,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10706,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20000,"notes":{"total":310,"tap":240,"hold":30,"slide":19,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10706,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":385,"tap":285,"hold":50,"slide":14,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10706,"level_id":3,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":524,"tap":361,"hold":15,"slide":60,"touch":82,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":706,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19013,"notes":{"total":242,"tap":226,"hold":9,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":706,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19013,"notes":{"total":326,"tap":269,"hold":26,"slide":18,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":706,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"LabiLabi","romVersion":19013,"notes":{"total":396,"tap":301,"hold":54,"slide":30,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":706,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"すきやき奉行","romVersion":19013,"notes":{"total":589,"tap":445,"hold":36,"slide":69,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":707,"players":3195,"title":"フリィダム ロリィタ","utTitle":null,"artist":"ねじ式","albums":["フリィダム ロリィタ","洛丽塔","喂饭","嘘嘘","喂美少女嘘嘘","自由洛丽塔","自由的洛丽塔","フリィダム ロリィタ","洛丽塔","喂饭","嘘嘘","喂美少女嘘嘘","自由洛丽塔","自由的洛丽塔","フリィダム ロリィタ","洛丽塔","喂饭","嘘嘘","喂美少女嘘嘘","自由洛丽塔","自由的洛丽塔"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19013,"dxRomVersion":0,"sdRomVersion":19013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":707,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19013,"notes":{"total":223,"tap":199,"hold":13,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":707,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19013,"notes":{"total":369,"tap":303,"hold":10,"slide":30,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":707,"level_id":2,"level":"10","level_value":10.0,"note_designer":"LabiLabi","romVersion":19013,"notes":{"total":423,"tap":294,"hold":49,"slide":58,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":707,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"玉子豆腐","romVersion":19013,"notes":{"total":645,"tap":485,"hold":48,"slide":100,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":655,"long":false},{"id":708,"players":2789,"title":"バレリーコ","utTitle":null,"artist":"みきとP","albums":["バレリーコ","芭蕾舞者","照镜子","芭蕾","バレリーコ","芭蕾舞者","照镜子","芭蕾","バレリーコ","芭蕾舞者","照镜子","芭蕾"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19013,"dxRomVersion":0,"sdRomVersion":19013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":708,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19013,"notes":{"total":225,"tap":204,"hold":12,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":708,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19013,"notes":{"total":335,"tap":268,"hold":42,"slide":10,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":708,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"LabiLabi","romVersion":19013,"notes":{"total":475,"tap":353,"hold":44,"slide":50,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":708,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":19013,"notes":{"total":674,"tap":483,"hold":39,"slide":108,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":657,"long":false},{"id":709,"players":5076,"title":"アウターサイエンス","utTitle":null,"artist":"じん","albums":["アウターサイエンス","次の","界外科学","outer science","アウターサイエンス","次の","界外科学","outer science","アウターサイエンス","次の","界外科学","outer science"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":195,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19013,"dxRomVersion":0,"sdRomVersion":19013,"utRomVersion":0,"dx":{},"sd":{"0":{"id":709,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19013,"notes":{"total":226,"tap":210,"hold":6,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":709,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19013,"notes":{"total":393,"tap":334,"hold":42,"slide":7,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":709,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":19013,"notes":{"total":671,"tap":552,"hold":33,"slide":54,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":709,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19013,"notes":{"total":721,"tap":523,"hold":34,"slide":141,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":119,"long":false},{"id":710,"players":4880,"title":"REVIVER オルタンシア・サーガ -蒼の騎士団- オリジナルVer.","utTitle":null,"artist":"MY FIRST STORY","albums":["reviver オルタンシア・サーガ -蒼の騎士団- オリジナルver.","reviver","伝説のオルタンシアの蒼の騎士団!","歌名很长的那首","苍之骑士团","苍骑","骑士团","reviver オルタンシア・サーガ -蒼の騎士団- オリジナルver.","reviver","伝説のオルタンシアの蒼の騎士団!","歌名很长的那首","苍之骑士团","苍骑","骑士团","你妈","reviver オルタンシア・サーガ -蒼の騎士団- オリジナルver.","reviver","伝説のオルタンシアの蒼の騎士団!","歌名很长的那首","苍之骑士团","苍骑","骑士团"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":200,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":710,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19000,"notes":{"total":165,"tap":152,"hold":3,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":710,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19000,"notes":{"total":286,"tap":264,"hold":7,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":710,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":19000,"notes":{"total":467,"tap":372,"hold":48,"slide":39,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":710,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":19000,"notes":{"total":632,"tap":467,"hold":30,"slide":122,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":711,"players":8269,"title":"拝啓ドッペルゲンガー","utTitle":null,"artist":"kemu","albums":["拝啓ドッペルゲンガー","我裂开来","分身","拜启","敬启我的分身","敬启分身","影分身十字斩","敬启","拝啓ドッペルゲンガー","我裂开来","分身","拜启","敬启我的分身","敬启分身","影分身十字斩","敬启","拝啓ドッペルゲンガー","我裂开来","分身","拜启","敬启我的分身","敬启分身","影分身十字斩","敬启","yhc"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":181,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":711,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19000,"notes":{"total":256,"tap":230,"hold":12,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":711,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19000,"notes":{"total":505,"tap":448,"hold":36,"slide":10,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":711,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":19000,"notes":{"total":647,"tap":481,"hold":94,"slide":51,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":711,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"LabiLabi","romVersion":19000,"notes":{"total":1070,"tap":835,"hold":48,"slide":124,"touch":0,"break_":63},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":547,"long":false},{"id":712,"players":2128,"title":"ミラクル・ショッピング","utTitle":null,"artist":"田中マイミ","albums":["ミラクル・ショッピング","miracle shopping","qq","乱中取胜","堂吉诃德","购物","神奇阿呦","qq企鹅","企鹅超市","ミラクル・ショッピング","miracle shopping","qq","乱中取胜","堂吉诃德","购物","神奇阿呦","qq企鹅","企鹅超市","ミラクル・ショッピング","miracle shopping","qq","乱中取胜","堂吉诃德","购物","神奇阿呦","qq企鹅","企鹅超市"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":167,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19005,"dxRomVersion":0,"sdRomVersion":19005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":712,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19005,"notes":{"total":213,"tap":188,"hold":16,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":712,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19005,"notes":{"total":341,"tap":272,"hold":20,"slide":33,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":712,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":19005,"notes":{"total":450,"tap":335,"hold":54,"slide":47,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":712,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":19005,"notes":{"total":641,"tap":403,"hold":25,"slide":140,"touch":0,"break_":73},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":713,"players":4435,"title":"Kinda Way","utTitle":null,"artist":"good-cool ft. Pete Klassen","albums":["kinda way","kw","迷你世界","健达路","kinda way","kw","迷你世界","健达路","kinda way","kw","迷你世界","健达路"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":127,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19005,"dxRomVersion":0,"sdRomVersion":19005,"utRomVersion":0,"dx":{},"sd":{"0":{"id":713,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19005,"notes":{"total":188,"tap":168,"hold":8,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":713,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19005,"notes":{"total":375,"tap":331,"hold":13,"slide":25,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":713,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":19005,"notes":{"total":466,"tap":351,"hold":41,"slide":57,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":713,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"すきやき奉行","romVersion":19005,"notes":{"total":725,"tap":597,"hold":20,"slide":78,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":717,"players":4495,"title":"ラブって♡ジュエリー♪えんじぇる☆ブレイク!!","utTitle":null,"artist":"あべにゅうぷろじぇくと feat.天月めぐる&如月すみれ「ツインエンジェルBREAK」","albums":["ラブって♡ジュエリー♪えんじぇる☆ブレイク!!","快盗天使break","刺猬","ラブって♡ジュエリー♪えんじぇる☆ブレイク!!","快盗天使break","刺猬","ラブって♡ジュエリー♪えんじぇる☆ブレイク!!","快盗天使break","刺猬"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":238,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19907,"dxRomVersion":0,"sdRomVersion":19907,"utRomVersion":0,"dx":{},"sd":{"0":{"id":717,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19907,"notes":{"total":158,"tap":124,"hold":22,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":717,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19907,"notes":{"total":285,"tap":258,"hold":13,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":717,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":19907,"notes":{"total":404,"tap":297,"hold":44,"slide":27,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":717,"level_id":3,"level":"13","level_value":13.2,"note_designer":"玉子豆腐","romVersion":19907,"notes":{"total":523,"tap":357,"hold":18,"slide":92,"touch":0,"break_":56},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":585,"long":false},{"id":719,"players":10148,"title":"エンドマークに希望と涙を添えて","utTitle":null,"artist":"cosMo@暴走P","albums":["エンドマークに希望と涙を添えて","筋肉女神","梦泪","希望泪","\uD83D\uDE42","为结局添上希望与泪水","希望累","梦之泪伤","エンドマークに希望と涙を添えて","筋肉女神","梦泪","希望泪","\uD83D\uDE42","为结局添上希望与泪水","希望累","梦之泪伤","エンドマークに希望と涙を添えて","筋肉女神","梦泪","希望泪","\uD83D\uDE42","为结局添上希望与泪水","希望累","梦之泪伤"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":257,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19010,"dxRomVersion":0,"sdRomVersion":19010,"utRomVersion":0,"dx":{},"sd":{"0":{"id":719,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19010,"notes":{"total":244,"tap":215,"hold":19,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":719,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":19010,"notes":{"total":523,"tap":453,"hold":45,"slide":11,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":719,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":19010,"notes":{"total":702,"tap":577,"hold":72,"slide":49,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":719,"level_id":3,"level":"14","level_value":14.3,"note_designer":"小鳥遊さん","romVersion":19010,"notes":{"total":1105,"tap":898,"hold":42,"slide":137,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":103,"long":false},{"id":720,"players":6742,"title":"ナンセンス文学","utTitle":null,"artist":"Eve","albums":["ナンセンス文学","o.o","拍手文学","无意义文学","废话文学","海底谭文学","latata","文学","ナンセンス文学","o.o","拍手文学","无意义文学","废话文学","海底谭文学","latata","文学","ナンセンス文学","o.o","拍手文学","无意义文学","废话文学","海底谭文学","latata","文学"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":154,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19006,"dxRomVersion":0,"sdRomVersion":19006,"utRomVersion":0,"dx":{},"sd":{"0":{"id":720,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19006,"notes":{"total":220,"tap":204,"hold":10,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":720,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19006,"notes":{"total":336,"tap":285,"hold":25,"slide":18,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":720,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"サファ太","romVersion":19006,"notes":{"total":528,"tap":380,"hold":68,"slide":72,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":720,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":19006,"notes":{"total":828,"tap":657,"hold":69,"slide":92,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":816,"long":false},{"id":721,"players":2857,"title":"Bang Babang Bang!!!","utTitle":null,"artist":"御形 アリシアナ(CV:福原 綾香)","albums":["bang babang bang!!!","bbb","大奶子","太大了","邦邦邦邦","邦邦","bbbb","大胸","邦邦邦","大柰子","bang babang bang!!!","bbb","大奶子","太大了","邦邦邦邦","邦邦","bbbb","大胸","邦邦邦","大柰子","大奶张钰泽","bang babang bang!!!","bbb","大奶子","太大了","邦邦邦邦","邦邦","bbbb","大胸","邦邦邦","大柰子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19001,"dxRomVersion":0,"sdRomVersion":19001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":721,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19001,"notes":{"total":208,"tap":190,"hold":4,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":721,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19001,"notes":{"total":343,"tap":273,"hold":29,"slide":15,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":721,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"サファ太","romVersion":19001,"notes":{"total":590,"tap":453,"hold":48,"slide":27,"touch":0,"break_":62},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":721,"level_id":3,"level":"13","level_value":13.2,"note_designer":"LabiLabi","romVersion":19001,"notes":{"total":756,"tap":565,"hold":35,"slide":112,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":268,"long":false},{"id":722,"players":2981,"title":"Tic Tac DREAMIN’","utTitle":null,"artist":"天王洲 なずな(CV:山本 彩乃)","albums":["tic tac dreamin’","粉毛睡衣","⏰","emu","千早爱音","睡衣","tic tac dreamin’","粉毛睡衣","⏰","emu","千早爱音","睡衣","tic tac dreamin’","粉毛睡衣","⏰","emu","千早爱音","睡衣"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":125,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19001,"dxRomVersion":0,"sdRomVersion":19001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":722,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19001,"notes":{"total":169,"tap":151,"hold":5,"slide":11,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":722,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19001,"notes":{"total":284,"tap":241,"hold":19,"slide":21,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":722,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":19001,"notes":{"total":340,"tap":252,"hold":40,"slide":41,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":722,"level_id":3,"level":"12","level_value":12.1,"note_designer":"すきやき奉行","romVersion":19001,"notes":{"total":532,"tap":380,"hold":46,"slide":86,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":337,"long":false},{"id":723,"players":2889,"title":"SPICY SWINGY STYLE","utTitle":null,"artist":"明坂 芹菜(CV:新田 恵海)","albums":["spicy swingy style","巨乳","大奶子","好大","果皇壮如牛","sss","高坂穗乃果","spicy swingy style","巨乳","大奶子","好大","果皇壮如牛","sss","高坂穗乃果","spicy swingy style","巨乳","大奶子","好大","果皇壮如牛","sss","高坂穗乃果"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":242,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19001,"dxRomVersion":0,"sdRomVersion":19001,"utRomVersion":0,"dx":{},"sd":{"0":{"id":723,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19001,"notes":{"total":180,"tap":165,"hold":5,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":723,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19001,"notes":{"total":338,"tap":303,"hold":21,"slide":5,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":723,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"某S氏","romVersion":19001,"notes":{"total":508,"tap":407,"hold":20,"slide":65,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":723,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":19001,"notes":{"total":660,"tap":547,"hold":44,"slide":47,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":338,"long":false},{"id":725,"players":7974,"title":"砂の惑星 feat. HATSUNE MIKU","utTitle":null,"artist":"ハチ","albums":["砂の惑星 feat. hatsune miku","砂之惑星","划龙舟","沙之惑星","沙星","砂惑","砂之行星","砂星","砂の惑星","别急18","沙之行星","最速殿堂","砂の惑星 feat. hatsune miku","砂之惑星","划龙舟","沙之惑星","沙星","砂惑","砂之行星","砂星","砂の惑星","别急18","沙之行星","最速殿堂","砂の惑星 feat. hatsune miku","砂之惑星","划龙舟","沙之惑星","沙星","砂惑","砂之行星","砂星","砂の惑星","别急18","沙之行星","最速殿堂"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":95,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":725,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":19000,"notes":{"total":134,"tap":116,"hold":12,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":725,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19000,"notes":{"total":220,"tap":143,"hold":47,"slide":20,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":725,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":19000,"notes":{"total":481,"tap":380,"hold":63,"slide":36,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":725,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19000,"notes":{"total":719,"tap":582,"hold":54,"slide":75,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":540,"long":false},{"id":726,"players":10003,"title":"アンノウン・マザーグース","utTitle":null,"artist":"wowaka","albums":["アンノウン・マザーグース","不为人知的鹅妈妈童谣","鹅妈妈童谣","鹅妈妈","仁王盾","妈妈鹅","未知的母鹅","unknown mother goose","アンノウン・マザーグース","不为人知的鹅妈妈童谣","鹅妈妈童谣","鹅妈妈","仁王盾","妈妈鹅","未知的母鹅","unknown mother goose","アンノウン・マザーグース","不为人知的鹅妈妈童谣","鹅妈妈童谣","鹅妈妈","仁王盾","妈妈鹅","未知的母鹅","unknown mother goose","大鹅妈妈"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":222,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19000,"dxRomVersion":0,"sdRomVersion":19000,"utRomVersion":0,"dx":{},"sd":{"0":{"id":726,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19000,"notes":{"total":167,"tap":142,"hold":18,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":726,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":19000,"notes":{"total":326,"tap":263,"hold":48,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":726,"level_id":2,"level":"11","level_value":11.1,"note_designer":"玉子豆腐","romVersion":19000,"notes":{"total":483,"tap":352,"hold":66,"slide":56,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":726,"level_id":3,"level":"13","level_value":13.3,"note_designer":"LabiLabi","romVersion":19000,"notes":{"total":732,"tap":566,"hold":83,"slide":65,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":626,"long":false},{"id":731,"players":17132,"title":"妄想感傷代償連盟","utTitle":null,"artist":"DECO*27","albums":["妄想感傷代償連盟","海底谭难民营","阿姨压一压","代偿联盟","盲肠肝脏大肠年龄","鬼","妄想","妄想感伤代偿联盟","啊咿呀咿呀","联盟","妄想感伤","盲肠肛肠大肠联盟","ghost","妄伤","妄想感傷代償連盟","海底谭难民营","阿姨压一压","代偿联盟","盲肠肝脏大肠年龄","鬼","妄想","妄想感伤代偿联盟","啊咿呀咿呀","联盟","妄想感伤","盲肠肛肠大肠联盟","ghost","妄伤","妄想感傷代償連盟","海底谭难民营","阿姨压一压","代偿联盟","盲肠肝脏大肠年龄","鬼","妄想","妄想感伤代偿联盟","啊咿呀咿呀","联盟","妄想感伤","盲肠肛肠大肠联盟","ghost","妄伤","小海底谭"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":110,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":731,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19500,"notes":{"total":177,"tap":162,"hold":7,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":731,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19500,"notes":{"total":301,"tap":248,"hold":40,"slide":5,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":731,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"すきやき奉行","romVersion":19500,"notes":{"total":426,"tap":342,"hold":44,"slide":33,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":731,"level_id":3,"level":"11","level_value":11.4,"note_designer":"緑風 犬三郎","romVersion":19500,"notes":{"total":516,"tap":395,"hold":38,"slide":78,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":731,"level_id":4,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":19500,"notes":{"total":725,"tap":593,"hold":23,"slide":102,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":732,"players":2259,"title":"LOVE EAST","utTitle":null,"artist":"暁Records","albums":["love east","爱东方","转转","爱东","爱吃","love east","爱东方","转转","爱东","爱吃","love east","爱东方","转转","爱东","爱吃"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":168,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":732,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19500,"notes":{"total":223,"tap":197,"hold":16,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":732,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19500,"notes":{"total":344,"tap":287,"hold":35,"slide":13,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":732,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":19500,"notes":{"total":458,"tap":341,"hold":50,"slide":47,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":732,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"LabiLabi","romVersion":19500,"notes":{"total":673,"tap":421,"hold":69,"slide":137,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1027,"long":false},{"id":1325,"players":8406,"title":"テレキャスタービーボーイ","utTitle":{"111325":"[奏]テレキャスタービーボーイ"},"artist":"すりぃ","albums":["テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子","テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子","テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":182,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":24500,"dx":{"0":{"id":11325,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":101,"tap":87,"hold":6,"slide":2,"touch":4,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11325,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22004,"notes":{"total":286,"tap":237,"hold":18,"slide":4,"touch":12,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11325,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"みそかつ侍","romVersion":22004,"notes":{"total":404,"tap":280,"hold":50,"slide":41,"touch":14,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11325,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":22004,"notes":{"total":562,"tap":402,"hold":49,"slide":77,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11325,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22004,"notes":{"total":646,"tap":486,"hold":52,"slide":64,"touch":31,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111325":{"id":111325,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2149,"long":false},{"id":733,"players":1991,"title":"Fist Bump","utTitle":null,"artist":"大谷智哉, Douglas Robb from Hoobastank「ソニック フォース」","albums":["fist bump","碰拳","索尼克力量","fist bump","碰拳","索尼克力量","fist bump","碰拳","索尼克力量"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":217,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":733,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19500,"notes":{"total":245,"tap":218,"hold":18,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":733,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19500,"notes":{"total":373,"tap":304,"hold":38,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":733,"level_id":2,"level":"11","level_value":11.4,"note_designer":"某S氏","romVersion":19500,"notes":{"total":487,"tap":383,"hold":49,"slide":50,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":733,"level_id":3,"level":"13","level_value":13.0,"note_designer":"玉子豆腐","romVersion":19500,"notes":{"total":752,"tap":599,"hold":33,"slide":109,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":734,"players":18243,"title":"ENERGY SYNERGY MATRIX","utTitle":null,"artist":"Tanchiky","albums":["energy synergy matrix","dxesm","傻吊猫","dxesm跑","esm","沙雕猫","esm跑","饿死猫","邮政","跑路猫","energy synergy matrix","dxesm","傻吊猫","dxesm跑","esm","沙雕猫","esm跑","饿死猫","邮政","跑路猫","energy synergy matrix","dxesm","傻吊猫","dxesm跑","esm","沙雕猫","esm跑","饿死猫","邮政","跑路猫"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20191004","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":20106,"sdRomVersion":19500,"utRomVersion":0,"dx":{"0":{"id":10734,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20106,"notes":{"total":164,"tap":124,"hold":17,"slide":2,"touch":16,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":10734,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":20106,"notes":{"total":357,"tap":280,"hold":28,"slide":8,"touch":16,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":10734,"level_id":2,"level":"11","level_value":11.4,"note_designer":"シチミヘルツ","romVersion":20106,"notes":{"total":611,"tap":364,"hold":36,"slide":40,"touch":121,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":10734,"level_id":3,"level":"13","level_value":13.5,"note_designer":"小鳥遊さん","romVersion":20106,"notes":{"total":860,"tap":519,"hold":44,"slide":40,"touch":211,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":734,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19500,"notes":{"total":229,"tap":202,"hold":19,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":734,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19500,"notes":{"total":403,"tap":316,"hold":22,"slide":10,"touch":0,"break_":55},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":734,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":19500,"notes":{"total":664,"tap":489,"hold":35,"slide":48,"touch":0,"break_":92},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":734,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":19500,"notes":{"total":872,"tap":661,"hold":51,"slide":80,"touch":0,"break_":80},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2534,"long":false},{"id":735,"players":2128,"title":"Session High⤴","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["session high⤴","↗️","⬆️","⤴️","↑","session high⤴","↗️","⬆️","⤴️","↑","session high⤴","↗️","⬆️","⤴️","↑"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":735,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19500,"notes":{"total":182,"tap":164,"hold":9,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":735,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19500,"notes":{"total":254,"tap":211,"hold":21,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":735,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"サファ太","romVersion":19500,"notes":{"total":377,"tap":277,"hold":43,"slide":29,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":735,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"すきやき奉行","romVersion":19500,"notes":{"total":536,"tap":390,"hold":20,"slide":79,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":431,"long":false},{"id":736,"players":9100,"title":"World Vanquisher","utTitle":null,"artist":"void (Mournfinale)","albums":["world vanquisher","mother vanquisher","金手指","\uD83D\uDE0E\uD83D\uDC46","奶龙征服者","wv","世界征服者","\uD83E\uDD13☝️","手感噔噔","中二谭","春晚2","噔噔噔噔噔","世征","春晚机器人","三点饮茶","威猛先生","秧歌bot","春晚机器人舞","☝️","林楠","\uD83E\uDD13☝","\uD83E\uDD13\uD83D\uDC46","中二送披萨","\uD83E\uDD13☝\uD83C\uDFFB","world vanquisher","mother vanquisher","金手指","\uD83D\uDE0E\uD83D\uDC46","奶龙征服者","wv","世界征服者","\uD83E\uDD13☝️","手感噔噔","中二谭","春晚2","噔噔噔噔噔","世征","春晚机器人","三点饮茶","威猛先生","秧歌bot","春晚机器人舞","☝️","林楠","\uD83E\uDD13☝","\uD83E\uDD13\uD83D\uDC46","中二送披萨","\uD83E\uDD13☝\uD83C\uDFFB","world vanquisher","mother vanquisher","金手指","\uD83D\uDE0E\uD83D\uDC46","奶龙征服者","wv","世界征服者","\uD83E\uDD13☝️","手感噔噔","中二谭","春晚2","噔噔噔噔噔","世征","春晚机器人","三点饮茶","威猛先生","秧歌bot","春晚机器人舞","☝️","林楠","\uD83E\uDD13☝","\uD83E\uDD13\uD83D\uDC46","中二送披萨","\uD83E\uDD13☝\uD83C\uDFFB","2025春晚"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":170,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":736,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19500,"notes":{"total":300,"tap":272,"hold":17,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":736,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":19500,"notes":{"total":446,"tap":334,"hold":69,"slide":19,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":736,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":19500,"notes":{"total":722,"tap":543,"hold":71,"slide":76,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":736,"level_id":3,"level":"14","level_value":14.3,"note_designer":"小鳥遊さん","romVersion":19500,"notes":{"total":1072,"tap":874,"hold":60,"slide":113,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":464,"long":false},{"id":737,"players":5579,"title":"FestivaLight","utTitle":null,"artist":"霜月はるか","albums":["festivalight","节日光","milked","festival light","雪代主题曲","三小只","魔法灯光夜","日服之光","三相之力","节日灯","festivalight","节日光","milked","festival light","雪代主题曲","三小只","魔法灯光夜","日服之光","三相之力","节日灯","festivalight","节日光","milked","festival light","雪代主题曲","三小只","魔法灯光夜","日服之光","三相之力","节日灯"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":125,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":737,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19500,"notes":{"total":162,"tap":148,"hold":7,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":737,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19500,"notes":{"total":272,"tap":214,"hold":26,"slide":21,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":737,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"はっぴー","romVersion":19500,"notes":{"total":401,"tap":315,"hold":45,"slide":36,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":737,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ぴちネコ","romVersion":19500,"notes":{"total":592,"tap":431,"hold":42,"slide":91,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":738,"players":6609,"title":"Brain Power","utTitle":null,"artist":"ノマ","albums":["brain power","观星","脑力","bp","佐助","圣诞老头","地精老头","bass kick","o-oooooooooo","brain power","观星","脑力","bp","佐助","圣诞老头","地精老头","bass kick","o-oooooooooo","brain power","观星","脑力","bp","佐助","圣诞老头","地精老头","bass kick","o-oooooooooo"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19501,"dxRomVersion":0,"sdRomVersion":19501,"utRomVersion":0,"dx":{},"sd":{"0":{"id":738,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19501,"notes":{"total":228,"tap":207,"hold":10,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":738,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":19501,"notes":{"total":416,"tap":338,"hold":53,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":738,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"サファ太","romVersion":19501,"notes":{"total":457,"tap":310,"hold":54,"slide":45,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":738,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":19501,"notes":{"total":663,"tap":443,"hold":89,"slide":71,"touch":0,"break_":60},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":668,"long":false},{"id":739,"players":3550,"title":"進め!イッスン軍団 -Rebellion of the Dwarfs-","utTitle":null,"artist":"dawn-system","albums":["進め!イッスン軍団 -rebellion of the dwarfs-","小碗","小小兵团","前进军团","针妙丸军团","针妙丸","针","小人国","绣花针","进军团","一尺军团","军团","進め!イッスン軍団 -rebellion of the dwarfs-","小碗","小小兵团","前进军团","针妙丸军团","针妙丸","针","小人国","绣花针","进军团","一尺军团","军团","進め!イッスン軍団 -rebellion of the dwarfs-","小碗","小小兵团","前进军团","针妙丸军团","针妙丸","针","小人国","绣花针","进军团","一尺军团","军团"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19501,"dxRomVersion":0,"sdRomVersion":19501,"utRomVersion":0,"dx":{},"sd":{"0":{"id":739,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19501,"notes":{"total":212,"tap":192,"hold":6,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":739,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19501,"notes":{"total":286,"tap":203,"hold":49,"slide":30,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":739,"level_id":2,"level":"11","level_value":11.3,"note_designer":"LabiLabi","romVersion":19501,"notes":{"total":417,"tap":351,"hold":20,"slide":33,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":739,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":19501,"notes":{"total":596,"tap":303,"hold":193,"slide":92,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":740,"players":3572,"title":"ULTRA B+K","utTitle":null,"artist":"nora2r","albums":["ultra b+k","b+k","超级bk","ubk","河天","超级汉堡王","bk2","ultra b+k","b+k","超级bk","ubk","河天","超级汉堡王","bk2","ultra b+k","b+k","超级bk","ubk","河天","超级汉堡王","bk2"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19508,"dxRomVersion":0,"sdRomVersion":19508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":740,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19508,"notes":{"total":252,"tap":229,"hold":8,"slide":2,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":740,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19508,"notes":{"total":370,"tap":287,"hold":42,"slide":7,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":740,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"LabiLabi","romVersion":19508,"notes":{"total":549,"tap":403,"hold":67,"slide":57,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":740,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ぴちネコ","romVersion":19508,"notes":{"total":845,"tap":590,"hold":98,"slide":129,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":741,"players":7188,"title":"インビジブル","utTitle":null,"artist":"kemu","albums":["インビジブル","透明人","invisible","透明人间","建筑工地","インビジブル","透明人","invisible","透明人间","建筑工地","インビジブル","透明人","invisible","透明人间","建筑工地"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":192,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19504,"dxRomVersion":0,"sdRomVersion":19504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":741,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19504,"notes":{"total":302,"tap":279,"hold":9,"slide":3,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":741,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19504,"notes":{"total":439,"tap":349,"hold":54,"slide":6,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":741,"level_id":2,"level":"11","level_value":11.5,"note_designer":"玉子豆腐","romVersion":19504,"notes":{"total":583,"tap":474,"hold":31,"slide":48,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":741,"level_id":3,"level":"12","level_value":12.3,"note_designer":"緑風 犬三郎","romVersion":19504,"notes":{"total":730,"tap":548,"hold":15,"slide":156,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":741,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"華火職人","romVersion":19504,"notes":{"total":939,"tap":752,"hold":31,"slide":102,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":293,"long":false},{"id":742,"players":4429,"title":"彗星ハネムーン","utTitle":null,"artist":"ナユタン星人","albums":["彗星ハネムーン","彗星","彗星蜜月","彗星ハネムーン","彗星","彗星蜜月","彗星ハネムーン","彗星","彗星蜜月"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19504,"dxRomVersion":0,"sdRomVersion":19504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":742,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19504,"notes":{"total":269,"tap":237,"hold":21,"slide":2,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":742,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19504,"notes":{"total":413,"tap":355,"hold":20,"slide":16,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":742,"level_id":2,"level":"10","level_value":10.5,"note_designer":"某S氏","romVersion":19504,"notes":{"total":507,"tap":380,"hold":63,"slide":52,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":742,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":19504,"notes":{"total":742,"tap":562,"hold":37,"slide":115,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1005,"long":false},{"id":745,"players":3333,"title":"keep hopping","utTitle":null,"artist":"kamome sano","albums":["keep hopping","kh","一直跳","一起摇摆","kamome sano","保持火拼","keep hopping","kh","一直跳","一起摇摆","kamome sano","保持火拼","keep hopping","kh","一直跳","一起摇摆","kamome sano","保持火拼"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19503,"dxRomVersion":0,"sdRomVersion":19503,"utRomVersion":0,"dx":{},"sd":{"0":{"id":745,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19503,"notes":{"total":242,"tap":221,"hold":8,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":745,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19503,"notes":{"total":369,"tap":282,"hold":55,"slide":10,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":745,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"小鳥遊さん","romVersion":19503,"notes":{"total":560,"tap":416,"hold":48,"slide":60,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":745,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":19503,"notes":{"total":888,"tap":699,"hold":80,"slide":66,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":746,"players":7633,"title":"larva","utTitle":null,"artist":"ガリガリさむし","albums":["larva","蓝色尖锐湿疣","雪降雨","龟头结冰","岩浆","冰","拉完","神之震惊","辣蛙","拉瓦","幼虫","pupa2","源石虫","虫","larva","蓝色尖锐湿疣","雪降雨","龟头结冰","岩浆","冰","拉完","神之震惊","辣蛙","拉瓦","幼虫","pupa2","源石虫","虫","鬼头结冰","larva","蓝色尖锐湿疣","雪降雨","龟头结冰","岩浆","冰","拉完","神之震惊","辣蛙","拉瓦","幼虫","pupa2","源石虫","虫","=⚡️★","萨菲","青泥石"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":202,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19503,"dxRomVersion":0,"sdRomVersion":19503,"utRomVersion":0,"dx":{},"sd":{"0":{"id":746,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19503,"notes":{"total":307,"tap":277,"hold":11,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":746,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19503,"notes":{"total":523,"tap":458,"hold":46,"slide":8,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":746,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"すきやき奉行","romVersion":19503,"notes":{"total":767,"tap":650,"hold":40,"slide":54,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":746,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"Jack","romVersion":19503,"notes":{"total":1173,"tap":939,"hold":78,"slide":82,"touch":0,"break_":74},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":713,"long":false},{"id":750,"players":10357,"title":"初音ミクの激唱","utTitle":null,"artist":"Storyteller","albums":["初音ミクの激唱","鸡场","初音未来的激唱","\uD83D\uDC14\uD83C\uDFA4","姬昌","机场","激唱","大葱天使","初音ミクの激唱","鸡场","初音未来的激唱","\uD83D\uDC14\uD83C\uDFA4","姬昌","机场","激唱","大葱天使","花语的机场","初音ミクの激唱","鸡场","初音未来的激唱","\uD83D\uDC14\uD83C\uDFA4","姬昌","机场","激唱","大葱天使"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19505,"dxRomVersion":0,"sdRomVersion":19505,"utRomVersion":0,"dx":{},"sd":{"0":{"id":750,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19505,"notes":{"total":313,"tap":252,"hold":45,"slide":9,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":750,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19505,"notes":{"total":409,"tap":313,"hold":68,"slide":1,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":750,"level_id":2,"level":"12","level_value":12.4,"note_designer":"華火職人","romVersion":19505,"notes":{"total":563,"tap":454,"hold":87,"slide":8,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":750,"level_id":3,"level":"14","level_value":14.5,"note_designer":"チャン@DP皆伝","romVersion":19505,"notes":{"total":834,"tap":653,"hold":72,"slide":70,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":631,"long":false},{"id":752,"players":1911,"title":"true my heart -Lovable mix-","utTitle":null,"artist":"ave;new feat.佐倉紗織","albums":["true my heart -lovable mix-","真我心","打电话","true my heart -lovable mix-","真我心","打电话","true my heart -lovable mix-","真我心","打电话"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":135,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19907,"dxRomVersion":0,"sdRomVersion":19907,"utRomVersion":0,"dx":{},"sd":{"0":{"id":752,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19907,"notes":{"total":167,"tap":137,"hold":16,"slide":11,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":752,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19907,"notes":{"total":292,"tap":265,"hold":13,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":752,"level_id":2,"level":"10","level_value":10.3,"note_designer":"某S氏","romVersion":19907,"notes":{"total":406,"tap":321,"hold":38,"slide":33,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":752,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":19907,"notes":{"total":476,"tap":332,"hold":41,"slide":87,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":363,"long":false},{"id":753,"players":5202,"title":"Rodeo Machine","utTitle":null,"artist":"HALFBY","albums":["rodeo machine","欧内的手","广播","绿手手","碳酸的大手","蠢鹿","绿手指","马","绿手","绿皮星星歌","见手青","社交的手腕","rodeo machine","欧内的手","广播","绿手手","碳酸的大手","蠢鹿","绿手指","马","绿手","绿皮星星歌","见手青","社交的手腕","rodeo machine","欧内的手","广播","绿手手","碳酸的大手","蠢鹿","绿手指","马","绿手","绿皮星星歌","见手青","社交的手腕"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":115,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19502,"dxRomVersion":0,"sdRomVersion":19502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":753,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19502,"notes":{"total":123,"tap":98,"hold":16,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":753,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19502,"notes":{"total":306,"tap":253,"hold":18,"slide":15,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":753,"level_id":2,"level":"11","level_value":11.1,"note_designer":"サファ太","romVersion":19502,"notes":{"total":461,"tap":316,"hold":59,"slide":42,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":753,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":19502,"notes":{"total":428,"tap":197,"hold":0,"slide":215,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":756,"players":7588,"title":"CYBER Sparks","utTitle":null,"artist":"Tatsh","albums":["cyber sparks","黄色嘉然","魔理沙爆炸","魔光炮","\uD83E\uDDF9","endtime青春版","赛博火花","cs","小endtime","赛博斯派克","赛博炮","反恐精英","cyber sparks","黄色嘉然","魔理沙爆炸","魔光炮","\uD83E\uDDF9","endtime青春版","赛博火花","cs","小endtime","赛博斯派克","赛博炮","反恐精英","cyber sparks","黄色嘉然","魔理沙爆炸","魔光炮","\uD83E\uDDF9","endtime青春版","赛博火花","cs","小endtime","赛博斯派克","赛博炮","反恐精英"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":192,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19507,"dxRomVersion":0,"sdRomVersion":19507,"utRomVersion":0,"dx":{},"sd":{"0":{"id":756,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19507,"notes":{"total":181,"tap":153,"hold":17,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":756,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19507,"notes":{"total":325,"tap":277,"hold":30,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":756,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":19507,"notes":{"total":561,"tap":486,"hold":48,"slide":23,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":756,"level_id":3,"level":"12","level_value":12.5,"note_designer":"緑風 犬三郎","romVersion":19507,"notes":{"total":626,"tap":436,"hold":36,"slide":150,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":756,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"玉子豆腐","romVersion":19507,"notes":{"total":945,"tap":827,"hold":8,"slide":82,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":757,"players":6868,"title":"Xevel","utTitle":null,"artist":"Tatsh","albums":["xevel","邪恶vel","宵崎奏","女人唱歌男人死","健身房","女鬼小气走","黑白双gay","希尔薇","累死人不偿命","xevel","邪恶vel","宵崎奏","女人唱歌男人死","健身房","女鬼小气走","黑白双gay","希尔薇","累死人不偿命","xevel","邪恶vel","宵崎奏","女人唱歌男人死","健身房","女鬼小气走","黑白双gay","希尔薇","累死人不偿命","叉evel","苦命鸳鸯","希沃"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":176,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19507,"dxRomVersion":0,"sdRomVersion":19507,"utRomVersion":0,"dx":{},"sd":{"0":{"id":757,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19507,"notes":{"total":265,"tap":228,"hold":20,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":757,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19507,"notes":{"total":429,"tap":361,"hold":30,"slide":18,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":757,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":19507,"notes":{"total":721,"tap":535,"hold":38,"slide":63,"touch":0,"break_":85},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":757,"level_id":3,"level":"14","level_value":14.3,"note_designer":"すきやき奉行","romVersion":19507,"notes":{"total":1169,"tap":938,"hold":30,"slide":110,"touch":0,"break_":91},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":469,"long":false},{"id":758,"players":2238,"title":"INFINITE WORLD","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["infinite world","无限世界","\uD83D\uDCF7","天狗拍照","恶心丸","infinite world","无限世界","\uD83D\uDCF7","天狗拍照","恶心丸","infinite world","无限世界","\uD83D\uDCF7","天狗拍照","恶心丸"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":167,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19508,"dxRomVersion":0,"sdRomVersion":19508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":758,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19508,"notes":{"total":199,"tap":180,"hold":9,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":758,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":19508,"notes":{"total":353,"tap":291,"hold":17,"slide":21,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":758,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":19508,"notes":{"total":508,"tap":361,"hold":62,"slide":53,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":758,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"某S氏","romVersion":19508,"notes":{"total":661,"tap":488,"hold":44,"slide":98,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":759,"players":7468,"title":"サドマミホリック","utTitle":null,"artist":"ビートまりお(COOL&CREATE)","albums":["サドマミホリック","灵梦撒钱","灵梦撒币","撒币","撒币的灵梦","サドマミホリック","灵梦撒钱","灵梦撒币","撒币","撒币的灵梦","奈绪撒币","サドマミホリック","灵梦撒钱","灵梦撒币","撒币","撒币的灵梦"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19509,"dxRomVersion":0,"sdRomVersion":19509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":759,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19509,"notes":{"total":308,"tap":281,"hold":14,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":759,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19509,"notes":{"total":433,"tap":343,"hold":40,"slide":16,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":759,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"小鳥遊さん","romVersion":19509,"notes":{"total":580,"tap":429,"hold":79,"slide":48,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":759,"level_id":3,"level":"12","level_value":12.5,"note_designer":"緑風 犬三郎","romVersion":19509,"notes":{"total":761,"tap":581,"hold":32,"slide":130,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":759,"level_id":4,"level":"13","level_value":13.3,"note_designer":"玉子豆腐","romVersion":19509,"notes":{"total":977,"tap":767,"hold":19,"slide":146,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":628,"long":false},{"id":760,"players":3911,"title":"Ragnarok","utTitle":null,"artist":"sky_delta","albums":["ragnarok","诸神黄昏","黄昏","ragnarok","诸神黄昏","黄昏","ragnarok","诸神黄昏","黄昏"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":184,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19508,"dxRomVersion":0,"sdRomVersion":19508,"utRomVersion":0,"dx":{},"sd":{"0":{"id":760,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19508,"notes":{"total":278,"tap":250,"hold":21,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":760,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19508,"notes":{"total":372,"tap":292,"hold":33,"slide":25,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":760,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"LabiLabi","romVersion":19508,"notes":{"total":530,"tap":347,"hold":79,"slide":86,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":760,"level_id":3,"level":"14","level_value":14.1,"note_designer":"華火職人","romVersion":19508,"notes":{"total":826,"tap":591,"hold":106,"slide":74,"touch":0,"break_":55},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":762,"players":3655,"title":"このピアノでお前を8759632145回ぶん殴る","utTitle":null,"artist":"SLAVE.V-V-R","albums":["このピアノでお前を8759632145回ぶん殴る","1919810","钢琴打人","一串数字","我会用这架钢琴殴打你8759632145次","钢琴","钢琴殴打","一堆数字","用钢琴揍你8759632145回","钢琴砸人","8759632145","踢钢琴","このピアノでお前を8759632145回ぶん殴る","1919810","钢琴打人","一串数字","我会用这架钢琴殴打你8759632145次","钢琴","钢琴殴打","一堆数字","用钢琴揍你8759632145回","钢琴砸人","8759632145","踢钢琴","このピアノでお前を8759632145回ぶん殴る","1919810","钢琴打人","一串数字","我会用这架钢琴殴打你8759632145次","钢琴","钢琴殴打","一堆数字","用钢琴揍你8759632145回","钢琴砸人","8759632145","踢钢琴"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19513,"dxRomVersion":0,"sdRomVersion":19513,"utRomVersion":0,"dx":{},"sd":{"0":{"id":762,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19513,"notes":{"total":204,"tap":166,"hold":19,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":762,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19513,"notes":{"total":390,"tap":324,"hold":22,"slide":26,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":762,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":19513,"notes":{"total":639,"tap":567,"hold":42,"slide":24,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":762,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":19513,"notes":{"total":967,"tap":809,"hold":15,"slide":121,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1355,"players":13055,"title":"ラグトレイン","utTitle":{"111355":"[協]ラグトレイン"},"artist":"稲葉曇","albums":["ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain","ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain","ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":147,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":24000,"dx":{"0":{"id":11355,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22007,"notes":{"total":137,"tap":105,"hold":16,"slide":4,"touch":9,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11355,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22007,"notes":{"total":307,"tap":249,"hold":22,"slide":14,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11355,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":22007,"notes":{"total":536,"tap":438,"hold":64,"slide":19,"touch":5,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11355,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":772,"tap":551,"hold":84,"slide":96,"touch":30,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111355":{"id":111355,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2101,"long":false},{"id":763,"players":4822,"title":"はやくそれになりたい!","utTitle":null,"artist":"キノシタ feat. 音街ウナ","albums":["はやくそれになりたい!","音街鳗","音街","\uD83D\uDE2B","想快点成为那个样子","i wanna be it","蓝瓶尖叫","想快点变成那个样子","はやくそれになりたい!","音街鳗","音街","\uD83D\uDE2B","想快点成为那个样子","i wanna be it","蓝瓶尖叫","想快点变成那个样子","はやくそれになりたい!","音街鳗","音街","\uD83D\uDE2B","想快点成为那个样子","i wanna be it","蓝瓶尖叫","想快点变成那个样子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19513,"dxRomVersion":0,"sdRomVersion":19513,"utRomVersion":0,"dx":{},"sd":{"0":{"id":763,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19513,"notes":{"total":316,"tap":284,"hold":18,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":763,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19513,"notes":{"total":453,"tap":375,"hold":24,"slide":14,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":763,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"華火職人","romVersion":19513,"notes":{"total":576,"tap":419,"hold":49,"slide":55,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":763,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"緑風 犬三郎","romVersion":19513,"notes":{"total":764,"tap":582,"hold":31,"slide":142,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":763,"level_id":4,"level":"13","level_value":13.2,"note_designer":"玉子豆腐","romVersion":19513,"notes":{"total":758,"tap":508,"hold":64,"slide":143,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":738,"long":false},{"id":764,"players":5625,"title":"フィクサー","utTitle":null,"artist":"ぬゆり","albums":["フィクサー","黑山羊吃席","fixer","修人","黑暗海底谭","牛头人喝酒","黑山羊","フィクサー","黑山羊吃席","fixer","修人","黑暗海底谭","牛头人喝酒","黑山羊","フィクサー","黑山羊吃席","fixer","修人","黑暗海底谭","牛头人喝酒","黑山羊"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":135,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19513,"dxRomVersion":0,"sdRomVersion":19513,"utRomVersion":0,"dx":{},"sd":{"0":{"id":764,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19513,"notes":{"total":205,"tap":187,"hold":7,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":764,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19513,"notes":{"total":352,"tap":311,"hold":26,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":764,"level_id":2,"level":"10","level_value":10.3,"note_designer":"サファ太","romVersion":19513,"notes":{"total":431,"tap":322,"hold":48,"slide":55,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":764,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19513,"notes":{"total":772,"tap":618,"hold":51,"slide":95,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":987,"long":false},{"id":765,"players":2003,"title":"みんなの","utTitle":null,"artist":"豚乙女","albums":["みんなの","兽道","獸道","大家的","みんなの","兽道","獸道","大家的","みんなの","兽道","獸道","大家的"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19509,"dxRomVersion":0,"sdRomVersion":19509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":765,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19509,"notes":{"total":216,"tap":175,"hold":28,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":765,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19509,"notes":{"total":339,"tap":243,"hold":56,"slide":19,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":765,"level_id":2,"level":"10","level_value":10.0,"note_designer":"華火職人","romVersion":19509,"notes":{"total":425,"tap":312,"hold":60,"slide":23,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":765,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":19509,"notes":{"total":633,"tap":467,"hold":42,"slide":82,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":766,"players":3751,"title":"アマノジャクリバース feat. ytr","utTitle":null,"artist":"魂音泉","albums":["アマノジャクリバース feat. ytr","\uD83D\uDEB8","天邪鬼反转","0梦过马路","天邪鬼","灵梦过街","ytr","过马路","灵梦过马路","アマノジャクリバース feat. ytr","\uD83D\uDEB8","天邪鬼反转","0梦过马路","天邪鬼","灵梦过街","ytr","过马路","灵梦过马路","アマノジャクリバース feat. ytr","\uD83D\uDEB8","天邪鬼反转","0梦过马路","天邪鬼","灵梦过街","ytr","过马路","灵梦过马路"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20260116","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":19509,"dxRomVersion":0,"sdRomVersion":19509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":766,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19509,"notes":{"total":219,"tap":205,"hold":4,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":766,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19509,"notes":{"total":318,"tap":235,"hold":47,"slide":18,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":766,"level_id":2,"level":"11","level_value":11.4,"note_designer":"某S氏","romVersion":19509,"notes":{"total":443,"tap":336,"hold":60,"slide":37,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":766,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"合作だよ","romVersion":19509,"notes":{"total":777,"tap":659,"hold":18,"slide":89,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1359,"players":3339,"title":"アカツキアライヴァル","utTitle":{"111359":"[奏]アカツキアライヴァル"},"artist":"Last Note.","albums":["アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达","アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达","アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":24000,"dx":{"0":{"id":11359,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22007,"notes":{"total":126,"tap":106,"hold":4,"slide":3,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11359,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":22007,"notes":{"total":280,"tap":198,"hold":30,"slide":22,"touch":23,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11359,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":522,"tap":429,"hold":28,"slide":53,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11359,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ロシェ@ペンギン","romVersion":22007,"notes":{"total":786,"tap":577,"hold":68,"slide":61,"touch":73,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111359":{"id":111359,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":282,"long":false},{"id":767,"players":3388,"title":"進捗どうですか?","utTitle":null,"artist":"sumijun(Halozy) feat. ななひら(Confetto)","albums":["進捗どうですか?","进步","进度如何","进展如何","进度","進捗どうですか?","进步","进度如何","进展如何","进度","進捗どうですか?","进步","进度如何","进展如何","进度","八云橙"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":199,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19509,"dxRomVersion":0,"sdRomVersion":19509,"utRomVersion":0,"dx":{},"sd":{"0":{"id":767,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19509,"notes":{"total":249,"tap":218,"hold":24,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":767,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19509,"notes":{"total":447,"tap":354,"hold":55,"slide":14,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":767,"level_id":2,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":19509,"notes":{"total":546,"tap":425,"hold":78,"slide":30,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":767,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":19509,"notes":{"total":918,"tap":689,"hold":62,"slide":135,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":848,"long":false},{"id":768,"players":2347,"title":"Help me, あーりん!","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["help me, あーりん!","救我","帮我阿李安","帮我","帮帮我","月铃姐妹","彩绿永琳","教我,永琳!","erin!erin!","help me, あーりん!","救我","帮我阿李安","帮我","帮帮我","月铃姐妹","彩绿永琳","教我,永琳!","erin!erin!","help me, あーりん!","救我","帮我阿李安","帮我","帮帮我","月铃姐妹","彩绿永琳","教我,永琳!","erin!erin!"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":183,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19510,"dxRomVersion":0,"sdRomVersion":19510,"utRomVersion":0,"dx":{},"sd":{"0":{"id":768,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19510,"notes":{"total":259,"tap":195,"hold":38,"slide":5,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":768,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19510,"notes":{"total":432,"tap":345,"hold":46,"slide":15,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":768,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":19510,"notes":{"total":534,"tap":347,"hold":90,"slide":69,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":768,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"某S氏","romVersion":19510,"notes":{"total":699,"tap":515,"hold":68,"slide":93,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":245,"long":false},{"id":769,"players":2854,"title":"なるとなぎのパーフェクトロックンロール教室","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["なるとなぎのパーフェクトロックンロール教室","冒牌⑨","摇滚教室","箱部鸣与小佛凪的完美摇滚教室","琪露诺的完美算数教室","⑨","中二教室","数学教室","なるとなぎのパーフェクトロックンロール教室","冒牌⑨","摇滚教室","箱部鸣与小佛凪的完美摇滚教室","琪露诺的完美算数教室","⑨","中二教室","数学教室","なるとなぎのパーフェクトロックンロール教室","冒牌⑨","摇滚教室","箱部鸣与小佛凪的完美摇滚教室","琪露诺的完美算数教室","⑨","中二教室","数学教室"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":216,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19510,"dxRomVersion":0,"sdRomVersion":19510,"utRomVersion":0,"dx":{},"sd":{"0":{"id":769,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19510,"notes":{"total":247,"tap":188,"hold":40,"slide":8,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":769,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19510,"notes":{"total":352,"tap":270,"hold":48,"slide":9,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":769,"level_id":2,"level":"11","level_value":11.1,"note_designer":"玉子豆腐","romVersion":19510,"notes":{"total":530,"tap":378,"hold":63,"slide":53,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":769,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"華火職人","romVersion":19510,"notes":{"total":787,"tap":538,"hold":40,"slide":110,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":246,"long":false},{"id":770,"players":2381,"title":"あねぺったん","utTitle":null,"artist":"月鈴姉妹(イロドリミドリ)","albums":["あねぺったん","便当","假酒","月铃姐妹","姐姐好平","醋溜便当","あねぺったん","便当","假酒","月铃姐妹","姐姐好平","醋溜便当","あねぺったん","便当","假酒","月铃姐妹","姐姐好平","醋溜便当"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":180,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19510,"dxRomVersion":0,"sdRomVersion":19510,"utRomVersion":0,"dx":{},"sd":{"0":{"id":770,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19510,"notes":{"total":240,"tap":153,"hold":79,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":770,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":19510,"notes":{"total":388,"tap":268,"hold":69,"slide":19,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":770,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"華火職人","romVersion":19510,"notes":{"total":537,"tap":271,"hold":161,"slide":45,"touch":0,"break_":60},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":770,"level_id":3,"level":"13","level_value":13.3,"note_designer":"小鳥遊さん","romVersion":19510,"notes":{"total":721,"tap":478,"hold":107,"slide":118,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":396,"long":false},{"id":771,"players":4158,"title":"We Gonna Journey","utTitle":null,"artist":"Queen P.A.L.","albums":["we gonna journey","wgj","我们要旅行","王国军","我们去旅行","红色长角","we gonna journey","wgj","我们要旅行","王国军","我们去旅行","红色长角","we gonna journey","wgj","我们要旅行","王国军","我们去旅行","红色长角"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":160,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19511,"dxRomVersion":0,"sdRomVersion":19511,"utRomVersion":0,"dx":{},"sd":{"0":{"id":771,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19511,"notes":{"total":281,"tap":241,"hold":28,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":771,"level_id":1,"level":"9","level_value":9.1,"note_designer":"-","romVersion":19511,"notes":{"total":403,"tap":346,"hold":29,"slide":16,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":771,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":19511,"notes":{"total":622,"tap":435,"hold":55,"slide":62,"touch":0,"break_":70},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":771,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":19511,"notes":{"total":915,"tap":716,"hold":34,"slide":115,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":107,"long":false},{"id":772,"players":13182,"title":"FREEDOM DiVE (tpz Overcute Remix)","utTitle":null,"artist":"t+pazolite","albums":["freedom dive (tpz overcute remix)","大陆首杀","丛雨","↓","自由落体","牢大坠机","fdfd","自由戴夫","234.56","科比","23456","fd","发癫","fdmm","freedom dive","freedom dive (tpz overcute remix)","大陆首杀","丛雨","↓","自由落体","牢大坠机","fdfd","自由戴夫","234.56","科比","23456","fd","发癫","fdmm","freedom dive","张钰泽坠机","白毛控自由落体","freedom dive (tpz overcute remix)","大陆首杀","丛雨","↓","自由落体","牢大坠机","fdfd","自由戴夫","234.56","科比","23456","fd","发癫","fdmm","freedom dive","自由潜水"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":234,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":19511,"dxRomVersion":0,"sdRomVersion":19511,"utRomVersion":0,"dx":{},"sd":{"0":{"id":772,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19511,"notes":{"total":354,"tap":312,"hold":32,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":772,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":19511,"notes":{"total":471,"tap":406,"hold":46,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":772,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"華火職人","romVersion":19511,"notes":{"total":701,"tap":509,"hold":85,"slide":39,"touch":0,"break_":68},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":772,"level_id":3,"level":"14","level_value":14.1,"note_designer":"サファ太","romVersion":19511,"notes":{"total":1085,"tap":717,"hold":115,"slide":166,"touch":0,"break_":87},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1365,"players":7693,"title":"アンビバレンス","utTitle":{"111365":"[奏]アンビバレンス"},"artist":"すりぃ×相沢","albums":["アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心","アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心","アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"maimai","bpm":187,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":25000,"dx":{"0":{"id":11365,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22004,"notes":{"total":202,"tap":163,"hold":14,"slide":5,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11365,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22004,"notes":{"total":372,"tap":275,"hold":15,"slide":34,"touch":41,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11365,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"隅田川星人","romVersion":22004,"notes":{"total":603,"tap":439,"hold":77,"slide":41,"touch":26,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11365,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":884,"tap":564,"hold":50,"slide":203,"touch":51,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111365":{"id":111365,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2269,"long":false},{"id":773,"players":6724,"title":"SILENT BLUE","utTitle":null,"artist":"かねこちはる","albums":["silent blue","水晶迪克","sb","↓↑","乙醇姬","色篮","静蓝","蓝绿","四块钱","默蓝","silent blue","水晶迪克","sb","↓↑","乙醇姬","色篮","静蓝","蓝绿","四块钱","默蓝","silent blue","水晶迪克","sb","↓↑","乙醇姬","色篮","静蓝","蓝绿","四块钱","默蓝","静谧的蓝","水神9"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":210,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19514,"dxRomVersion":0,"sdRomVersion":19514,"utRomVersion":0,"dx":{},"sd":{"0":{"id":773,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19514,"notes":{"total":216,"tap":168,"hold":32,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":773,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19514,"notes":{"total":322,"tap":274,"hold":23,"slide":24,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":773,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":19514,"notes":{"total":692,"tap":511,"hold":80,"slide":74,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":773,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"サファ太","romVersion":19514,"notes":{"total":1086,"tap":838,"hold":83,"slide":126,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2583,"long":false},{"id":775,"players":2450,"title":"ジンギスカン","utTitle":null,"artist":"仁井山征弘 Feat. GREAT G and surprise","albums":["ジンギスカン","成吉思汗","watame","wtm","角卷绵芽","金金金金金","ジンギスカン","成吉思汗","watame","wtm","角卷绵芽","金金金金金","ジンギスカン","成吉思汗","watame","wtm","角卷绵芽","金金金金金"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":150,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19512,"dxRomVersion":0,"sdRomVersion":19512,"utRomVersion":0,"dx":{},"sd":{"0":{"id":775,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19512,"notes":{"total":178,"tap":133,"hold":17,"slide":9,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":775,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19512,"notes":{"total":356,"tap":276,"hold":37,"slide":14,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":775,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":19512,"notes":{"total":502,"tap":356,"hold":54,"slide":28,"touch":0,"break_":64},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":775,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19512,"notes":{"total":752,"tap":546,"hold":16,"slide":124,"touch":0,"break_":66},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":776,"players":4475,"title":"にじよめちゃん体操第一億","utTitle":null,"artist":"にじよめちゃんとZIPたん","albums":["にじよめちゃん体操第一億","体操第一亿","体操","体操第一億","牵线木偶","体操一亿","\uD83E\uDD24","にじよめちゃん体操第一億","体操第一亿","体操","体操第一億","牵线木偶","体操一亿","\uD83E\uDD24","にじよめちゃん体操第一億","体操第一亿","体操","体操第一億","牵线木偶","体操一亿","\uD83E\uDD24"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":120,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19512,"dxRomVersion":0,"sdRomVersion":19512,"utRomVersion":0,"dx":{},"sd":{"0":{"id":776,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19512,"notes":{"total":148,"tap":128,"hold":10,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":776,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19512,"notes":{"total":188,"tap":128,"hold":10,"slide":14,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":776,"level_id":2,"level":"9","level_value":9.4,"note_designer":"玉子豆腐","romVersion":19512,"notes":{"total":278,"tap":183,"hold":32,"slide":27,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":776,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"玉子豆腐","romVersion":19512,"notes":{"total":469,"tap":238,"hold":1,"slide":156,"touch":0,"break_":74},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":777,"players":11600,"title":"花と、雪と、ドラムンベース。","utTitle":null,"artist":"kanone feat. せんざい","albums":["花と、雪と、ドラムンベース。","雪鸡","花雪一堆日本字","冬之花","别急6","花\uD83D\uDE0B、雪\uD83E\uDD24、\uD83D\uDE18\uD83D\uDE28\uD83E\uDD75\uD83E\uDD22\uD83D\uDE08\uD83E\uDD23\uD83D\uDE05。","四月的雪","舞萌金曲","快慢刀","\uD83C\uDF38❄️","六块钱","\uD83C\uDF381⃣️\uD83D\uDEDE","花一轮","雪球","花雪","昭和金曲","花,雪和bass","花花花花花花一轮","花と、雪と、ドラムンベース。","雪鸡","花雪一堆日本字","冬之花","别急6","花\uD83D\uDE0B、雪\uD83E\uDD24、\uD83D\uDE18\uD83D\uDE28\uD83E\uDD75\uD83E\uDD22\uD83D\uDE08\uD83E\uDD23\uD83D\uDE05。","四月的雪","舞萌金曲","快慢刀","\uD83C\uDF38❄️","六块钱","\uD83C\uDF381⃣️\uD83D\uDEDE","花一轮","雪球","花雪","昭和金曲","花,雪和bass","花花花花花花一轮","zzm有多神经","28275peyz第一孝子byt奥运铜牌世界赛硬实力亚军plk出列","张钰泽快乐歌","花と、雪と、ドラムンベース。","雪鸡","花雪一堆日本字","冬之花","别急6","花\uD83D\uDE0B、雪\uD83E\uDD24、\uD83D\uDE18\uD83D\uDE28\uD83E\uDD75\uD83E\uDD22\uD83D\uDE08\uD83E\uDD23\uD83D\uDE05。","四月的雪","舞萌金曲","快慢刀","\uD83C\uDF38❄️","六块钱","\uD83C\uDF381⃣️\uD83D\uDEDE","花一轮","雪球","花雪","昭和金曲","花,雪和bass","花花花花花花一轮"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19512,"dxRomVersion":0,"sdRomVersion":19512,"utRomVersion":0,"dx":{},"sd":{"0":{"id":777,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19512,"notes":{"total":206,"tap":171,"hold":18,"slide":6,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":777,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19512,"notes":{"total":369,"tap":261,"hold":54,"slide":34,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":777,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":19512,"notes":{"total":440,"tap":278,"hold":87,"slide":67,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":777,"level_id":3,"level":"14","level_value":14.3,"note_designer":"合作だよ","romVersion":19512,"notes":{"total":876,"tap":647,"hold":71,"slide":116,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":777,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":19512,"notes":{"total":398,"tap":250,"hold":32,"slide":106,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2147,"long":false},{"id":778,"players":1546,"title":"Conquista Ciela","utTitle":null,"artist":"光吉猛修「バーチャロン」","albums":["conquista ciela","电脑战机","光吉猛修","头疼","cc","脑阔疼","男人唱歌","conquista ciela","电脑战机","光吉猛修","头疼","cc","脑阔疼","男人唱歌","conquista ciela","电脑战机","光吉猛修","头疼","cc","脑阔疼","男人唱歌"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19502,"dxRomVersion":0,"sdRomVersion":19502,"utRomVersion":0,"dx":{},"sd":{"0":{"id":778,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19502,"notes":{"total":200,"tap":176,"hold":16,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":778,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19502,"notes":{"total":323,"tap":230,"hold":39,"slide":28,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":778,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":19502,"notes":{"total":347,"tap":234,"hold":67,"slide":41,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":778,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":19502,"notes":{"total":614,"tap":420,"hold":103,"slide":85,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":779,"players":6806,"title":"怒槌","utTitle":null,"artist":"光吉猛修","albums":["怒槌","怒锤","\uD83D\uDE21\uD83D\uDC4A","该罚","愤怒的锤子","ikazuchi","努吹","梅西哥打交","怒捶","\uD83D\uDE21\uD83D\uDD28","怒槌","怒锤","\uD83D\uDE21\uD83D\uDC4A","该罚","愤怒的锤子","ikazuchi","努吹","梅西哥打交","怒捶","\uD83D\uDE21\uD83D\uDD28","怒槌","怒锤","\uD83D\uDE21\uD83D\uDC4A","该罚","愤怒的锤子","ikazuchi","努吹","梅西哥打交","怒捶","\uD83D\uDE21\uD83D\uDD28","神之一锤"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19514,"dxRomVersion":0,"sdRomVersion":19514,"utRomVersion":0,"dx":{},"sd":{"0":{"id":779,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19514,"notes":{"total":400,"tap":323,"hold":51,"slide":12,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":779,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":19514,"notes":{"total":487,"tap":383,"hold":74,"slide":20,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":779,"level_id":2,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":19514,"notes":{"total":797,"tap":606,"hold":78,"slide":93,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":779,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"譜面ボーイズからの挑戦状","romVersion":19514,"notes":{"total":1188,"tap":928,"hold":55,"slide":158,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":180,"long":false},{"id":781,"players":3620,"title":"Seyana. ~何でも言うことを聞いてくれるアカネチャン~","utTitle":null,"artist":"GYARI","albums":["seyana. ~何でも言うことを聞いてくれるアカネチャン~","seyana","不管说什么都在听着的琴叶茜酱","小茜","说的事呢","sodayo","akane","琴叶茜","seyana. ~何でも言うことを聞いてくれるアカネチャン~","seyana","不管说什么都在听着的琴叶茜酱","小茜","说的事呢","sodayo","akane","琴叶茜","seyana. ~何でも言うことを聞いてくれるアカネチャン~","seyana","不管说什么都在听着的琴叶茜酱","小茜","说的事呢","sodayo","akane","琴叶茜"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":144,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":19500,"dxRomVersion":0,"sdRomVersion":19500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":781,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19500,"notes":{"total":170,"tap":147,"hold":16,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":781,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19500,"notes":{"total":292,"tap":254,"hold":18,"slide":15,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":781,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Moon Strix","romVersion":19500,"notes":{"total":441,"tap":305,"hold":43,"slide":56,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":781,"level_id":3,"level":"13","level_value":13.3,"note_designer":"玉子豆腐","romVersion":19500,"notes":{"total":668,"tap":529,"hold":36,"slide":66,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":737,"long":false},{"id":782,"players":4958,"title":"おねがいダーリン","utTitle":null,"artist":"ONE (song by ナナホシ管弦楽団)","albums":["おねがいダーリン","拜托了,亲爱的","拜托了原神","拜托了darling","拜托了亲爱的","one","おねがいダーリン","拜托了,亲爱的","拜托了原神","拜托了darling","拜托了亲爱的","one","おねがいダーリン","拜托了,亲爱的","拜托了原神","拜托了darling","拜托了亲爱的","one"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19504,"dxRomVersion":0,"sdRomVersion":19504,"utRomVersion":0,"dx":{},"sd":{"0":{"id":782,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19504,"notes":{"total":255,"tap":227,"hold":10,"slide":10,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":782,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":19504,"notes":{"total":391,"tap":329,"hold":26,"slide":13,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":782,"level_id":2,"level":"11","level_value":11.3,"note_designer":"LabiLabi","romVersion":19504,"notes":{"total":687,"tap":522,"hold":83,"slide":63,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":782,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"玉子豆腐","romVersion":19504,"notes":{"total":689,"tap":509,"hold":45,"slide":103,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":842,"long":false},{"id":786,"players":8162,"title":"My First Phone","utTitle":null,"artist":"cubesato","albums":["my first phone","爷の手机","别急20","中二的雨","手机","电话","☎️","小灵通","我的第一部手机","别急3","座机","\uD83D\uDC74的第一部手机","my first phone","爷の手机","别急20","中二的雨","手机","电话","☎️","小灵通","我的第一部手机","别急3","座机","\uD83D\uDC74的第一部手机","my first phone","爷の手机","别急20","中二的雨","手机","电话","☎️","小灵通","我的第一部手机","别急3","座机","\uD83D\uDC74的第一部手机"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":114,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19514,"dxRomVersion":0,"sdRomVersion":19514,"utRomVersion":0,"dx":{},"sd":{"0":{"id":786,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19514,"notes":{"total":232,"tap":216,"hold":8,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":786,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19514,"notes":{"total":292,"tap":231,"hold":43,"slide":13,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":786,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":19514,"notes":{"total":458,"tap":375,"hold":30,"slide":48,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":786,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"譜面-100号","romVersion":19514,"notes":{"total":532,"tap":312,"hold":45,"slide":173,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":51,"long":false},{"id":789,"players":3902,"title":"ネ!コ!","utTitle":null,"artist":"パトリシア・オブ・エンド・黒木未知・夕莉シャチ・明日原ユウキ「ノラと皇女と野良猫ハート」","albums":["ネ!コ!","nero","neko","流浪猫之心","野良猫","ne!ko!","节粮猫","zood","猫","ネコ","咪咪","ネ!コ!","nero","neko","流浪猫之心","野良猫","ne!ko!","节粮猫","zood","猫","ネコ","咪咪","ネ!コ!","nero","neko","流浪猫之心","野良猫","ne!ko!","节粮猫","zood","猫","ネコ","咪咪"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":182,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":789,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19900,"notes":{"total":200,"tap":175,"hold":12,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":789,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19900,"notes":{"total":379,"tap":307,"hold":27,"slide":21,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":789,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"玉子豆腐","romVersion":19900,"notes":{"total":407,"tap":294,"hold":55,"slide":32,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":789,"level_id":3,"level":"13","level_value":13.0,"note_designer":"玉子豆腐","romVersion":19900,"notes":{"total":620,"tap":408,"hold":40,"slide":133,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":574,"long":false},{"id":791,"players":5369,"title":"ロールプレイングゲーム","utTitle":null,"artist":"そらまふうらさか","albums":["ロールプレイングゲーム","mafumafu","rpg","日屁股","ロールプレイングゲーム","mafumafu","rpg","日屁股","ロールプレイングゲーム","mafumafu","rpg","日屁股"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":791,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19900,"notes":{"total":253,"tap":228,"hold":9,"slide":6,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":791,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19900,"notes":{"total":372,"tap":314,"hold":36,"slide":4,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":791,"level_id":2,"level":"10","level_value":10.5,"note_designer":"LabiLabi","romVersion":19900,"notes":{"total":591,"tap":444,"hold":45,"slide":72,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":791,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":19900,"notes":{"total":754,"tap":555,"hold":12,"slide":161,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":792,"players":19850,"title":"ヒバナ","utTitle":null,"artist":"DECO*27","albums":["ヒバナ","匕八十","大狙架miku","狙击初音未来","狙击初音","匕八卜","七八十","fufu遇刺","火花","hibana","k杀","爆头初音","初音未来被爆头","初音爆头","tsubaki","大狙架初音","7810","狙击fufu","大狙怼脸","狙初音","ヒバナ","匕八十","大狙架miku","狙击初音未来","狙击初音","匕八卜","七八十","fufu遇刺","火花","hibana","k杀","爆头初音","初音未来被爆头","初音爆头","tsubaki","大狙架初音","7810","狙击fufu","大狙怼脸","狙初音","ヒバナ","匕八十","大狙架miku","狙击初音未来","狙击初音","匕八卜","七八十","fufu遇刺","火花","hibana","k杀","爆头初音","初音未来被爆头","初音爆头","tsubaki","大狙架初音","7810","狙击fufu","大狙怼脸","狙初音","狙击小日本"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":792,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19900,"notes":{"total":200,"tap":173,"hold":16,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":792,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":19900,"notes":{"total":405,"tap":304,"hold":31,"slide":39,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":792,"level_id":2,"level":"11","level_value":11.1,"note_designer":"玉子豆腐","romVersion":19900,"notes":{"total":474,"tap":386,"hold":57,"slide":21,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":792,"level_id":3,"level":"12","level_value":12.0,"note_designer":"緑風 犬三郎","romVersion":19900,"notes":{"total":671,"tap":483,"hold":48,"slide":138,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":792,"level_id":4,"level":"13","level_value":13.2,"note_designer":"華火職人","romVersion":19900,"notes":{"total":740,"tap":564,"hold":44,"slide":105,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":818,"long":false},{"id":793,"players":15532,"title":"ロキ","utTitle":{"110793":"[疑]ロキ"},"artist":"みきとP","albums":["ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰","ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰","ロキ","roki","洛基","嘴巴吃烤串","口干","ruaki","㕩","口≠","口丰"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":793,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19900,"notes":{"total":217,"tap":189,"hold":15,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":793,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":19900,"notes":{"total":367,"tap":313,"hold":22,"slide":10,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":793,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":19900,"notes":{"total":496,"tap":355,"hold":61,"slide":63,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":793,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":19900,"notes":{"total":730,"tap":566,"hold":43,"slide":117,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":793,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":19900,"notes":{"total":839,"tap":661,"hold":57,"slide":110,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110793":{"id":110793,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":669,"tap":459,"hold":20,"slide":150,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":720,"long":false},{"id":794,"players":2944,"title":"Money Money","utTitle":null,"artist":"暁Records","albums":["money money","紫苑镇","来财","\uD83D\uDCB0","马内马内","钱钱","moneymoney","钱钱钱钱钱","骂你骂你","money money","紫苑镇","来财","\uD83D\uDCB0","马内马内","钱钱","moneymoney","钱钱钱钱钱","骂你骂你","money money","紫苑镇","来财","\uD83D\uDCB0","马内马内","钱钱","moneymoney","钱钱钱钱钱","骂你骂你"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":145,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":794,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19900,"notes":{"total":171,"tap":139,"hold":18,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":794,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19900,"notes":{"total":350,"tap":272,"hold":30,"slide":24,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":794,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"LabiLabi","romVersion":19900,"notes":{"total":467,"tap":337,"hold":72,"slide":44,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":794,"level_id":3,"level":"13","level_value":13.2,"note_designer":"小鳥遊さん","romVersion":19900,"notes":{"total":745,"tap":555,"hold":64,"slide":85,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":796,"players":6315,"title":"極圏","utTitle":null,"artist":"cosMo VS dj TAKA「SOUND VOLTEX」より","albums":["極圏","sdvx","極圈","急圈","\uD83D\uDC14⭕","极圈","只因圈","寄圈","\uD83D\uDC14⭕️","鸡圈","肌肉奶龙","極圏","sdvx","極圈","急圈","\uD83D\uDC14⭕","极圈","只因圈","寄圈","\uD83D\uDC14⭕️","鸡圈","肌肉奶龙","極圏","sdvx","極圈","急圈","\uD83D\uDC14⭕","极圈","只因圈","寄圈","\uD83D\uDC14⭕️","鸡圈","肌肉奶龙"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":207,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":796,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19900,"notes":{"total":252,"tap":192,"hold":31,"slide":6,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":796,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":19900,"notes":{"total":451,"tap":379,"hold":30,"slide":16,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":796,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"小鳥遊さん","romVersion":19900,"notes":{"total":581,"tap":424,"hold":86,"slide":51,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":796,"level_id":3,"level":"14","level_value":14.4,"note_designer":"華火職人","romVersion":19900,"notes":{"total":979,"tap":755,"hold":74,"slide":98,"touch":0,"break_":52},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":471,"long":false},{"id":797,"players":7153,"title":"Scarlet Lance","utTitle":null,"artist":"MASAKI(ZUNTATA)「グルーヴコースター3EXドリームパーティー」より","albums":["scarlet lance","麒麟X夜刀","红烧狮子头","朗基努斯之枪","红色紧身裤","狗含剑","红叉","火枪","斯卡雷特开源","红枪","叉子","朗基努斯枪","斯卡雷特开元","狗罕见","scarlet lance","麒麟X夜刀","红烧狮子头","朗基努斯之枪","红色紧身裤","狗含剑","红叉","火枪","斯卡雷特开源","红枪","叉子","朗基努斯枪","斯卡雷特开元","狗罕见","scarlet lance","麒麟X夜刀","红烧狮子头","朗基努斯之枪","红色紧身裤","狗含剑","红叉","火枪","斯卡雷特开源","红枪","叉子","朗基努斯枪","斯卡雷特开元","狗罕见","苍响","红温叉子"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":185,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":797,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19900,"notes":{"total":285,"tap":241,"hold":19,"slide":12,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":797,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19900,"notes":{"total":397,"tap":318,"hold":39,"slide":23,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":797,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"LabiLabi","romVersion":19900,"notes":{"total":701,"tap":534,"hold":53,"slide":82,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":797,"level_id":3,"level":"14","level_value":14.2,"note_designer":"サファ太","romVersion":19900,"notes":{"total":1036,"tap":875,"hold":46,"slide":70,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":472,"long":false},{"id":798,"players":6867,"title":"セイクリッド ルイン","utTitle":null,"artist":"Drop&祇羽 feat. 葉月ゆら「太鼓の達人」より","albums":["セイクリッド ルイン","肾虚","太鼓达人","圣灭","圣墟","セイクリッド ルイン","肾虚","太鼓达人","圣灭","圣墟","セイクリッド ルイン","肾虚","太鼓达人","圣灭","圣墟"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":186,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":798,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19900,"notes":{"total":317,"tap":255,"hold":40,"slide":15,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":798,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":19900,"notes":{"total":486,"tap":401,"hold":35,"slide":13,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":798,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"LabiLabi","romVersion":19900,"notes":{"total":594,"tap":418,"hold":34,"slide":92,"touch":0,"break_":50},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":798,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":19900,"notes":{"total":971,"tap":744,"hold":33,"slide":160,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":470,"long":false},{"id":799,"players":17690,"title":"QZKago Requiem","utTitle":null,"artist":"t+pazolite","albums":["qzkago requiem","茄子","qzkago requiem","茄子","巧克力大战香子兰","哈基奈大战迪拉熊","哈基奈为了上分和迪拉熊大打出手","林博文b1","羊村守护者","qzkago requiem","茄子","巧克力大战香子兰","\uD83C\uDF46","嵯峨大战凯尔希","茄子卡狗","猫中毒","哪吒大战敖丙","两只猫打架"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":257,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19992,"dxRomVersion":0,"sdRomVersion":19992,"utRomVersion":0,"dx":{},"sd":{"0":{"id":799,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19992,"notes":{"total":306,"tap":270,"hold":12,"slide":11,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":799,"level_id":1,"level":"10+","level_value":10.7,"note_designer":"-","romVersion":19992,"notes":{"total":593,"tap":509,"hold":24,"slide":24,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":799,"level_id":2,"level":"13","level_value":13.0,"note_designer":"小鳥遊さん","romVersion":19992,"notes":{"total":731,"tap":580,"hold":55,"slide":64,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":799,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"チャン@DP皆伝","romVersion":19992,"notes":{"total":1105,"tap":838,"hold":12,"slide":191,"touch":0,"break_":64},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":799,"level_id":4,"level":"14+","level_value":14.9,"note_designer":"Garakuta Scramble!","romVersion":19992,"notes":{"total":1181,"tap":861,"hold":19,"slide":211,"touch":0,"break_":90},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2229,"long":false},{"id":800,"players":2624,"title":"EVERGREEN","utTitle":null,"artist":"Cranky","albums":["evergreen","长春","eg","一直绿","绿一色","长荣","绿色圆圈","青春永驻","永绿","常绿树","常青","常绿","evergreen","长春","eg","一直绿","绿一色","长荣","绿色圆圈","青春永驻","永绿","常绿树","常青","常绿","evergreen","长春","eg","一直绿","绿一色","长荣","绿色圆圈","青春永驻","永绿","常绿树","常青","常绿"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":145,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19901,"dxRomVersion":0,"sdRomVersion":19901,"utRomVersion":0,"dx":{},"sd":{"0":{"id":800,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19901,"notes":{"total":172,"tap":146,"hold":16,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":800,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19901,"notes":{"total":262,"tap":230,"hold":24,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":800,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":19901,"notes":{"total":414,"tap":279,"hold":69,"slide":65,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":800,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ぴちネコ","romVersion":19901,"notes":{"total":652,"tap":525,"hold":67,"slide":37,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":802,"players":5185,"title":"不思議の国のクリスマス","utTitle":null,"artist":"SOUND HOLIC feat. 3L","albums":["不思議の国のクリスマス","圣诞节","不可思议","不思议国","秘封俱乐部","不思议","反海底谭","不思议之国","不思議の国のクリスマス","圣诞节","不可思议","不思议国","秘封俱乐部","不思议","反海底谭","不思议之国","不思議の国のクリスマス","圣诞节","不可思议","不思议国","秘封俱乐部","不思议","反海底谭","不思议之国"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":128,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19901,"dxRomVersion":0,"sdRomVersion":19901,"utRomVersion":0,"dx":{},"sd":{"0":{"id":802,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19901,"notes":{"total":193,"tap":161,"hold":17,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":802,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":19901,"notes":{"total":283,"tap":229,"hold":19,"slide":20,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":802,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":19901,"notes":{"total":379,"tap":277,"hold":37,"slide":28,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":802,"level_id":3,"level":"13","level_value":13.3,"note_designer":"小鳥遊さん","romVersion":19901,"notes":{"total":546,"tap":340,"hold":12,"slide":153,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":803,"players":8871,"title":"Schwarzschild","utTitle":null,"artist":"Tsukasa","albums":["schwarzschild","s属性爆发","火娃","黑斜塔","长香水","黑臭火","漆黑之盾","四川火娃","\uD83D\uDD25\uD83D\uDC38","四川白娃","schw","史瓦西","黑色小孩","暗黑之盾","黑香水","黑盾","四川香水","水神10","schwarzschild","s属性爆发","火娃","黑斜塔","长香水","黑臭火","漆黑之盾","四川火娃","\uD83D\uDD25\uD83D\uDC38","四川白娃","schw","史瓦西","黑色小孩","暗黑之盾","黑香水","黑盾","四川香水","水神10","张哲","schwarzschild","s属性爆发","火娃","黑斜塔","长香水","黑臭火","漆黑之盾","四川火娃","\uD83D\uDD25\uD83D\uDC38","四川白娃","schw","史瓦西","黑色小孩","暗黑之盾","黑香水","黑盾","四川香水","水神10","烓","四川火娃弱智齿轮队"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19993,"dxRomVersion":0,"sdRomVersion":19993,"utRomVersion":0,"dx":{},"sd":{"0":{"id":803,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19993,"notes":{"total":260,"tap":235,"hold":16,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":803,"level_id":1,"level":"9+","level_value":9.7,"note_designer":"-","romVersion":19993,"notes":{"total":443,"tap":392,"hold":33,"slide":16,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":803,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":19993,"notes":{"total":549,"tap":392,"hold":65,"slide":81,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":803,"level_id":3,"level":"14","level_value":14.3,"note_designer":"“H”ack","romVersion":19993,"notes":{"total":898,"tap":819,"hold":28,"slide":49,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":803,"level_id":4,"level":"14+","level_value":14.9,"note_designer":"“H”ack underground","romVersion":19993,"notes":{"total":875,"tap":806,"hold":22,"slide":45,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":806,"players":3903,"title":"ナイトメア☆パーティーナイト","utTitle":null,"artist":"くちばしP","albums":["ナイトメア☆パーティーナイト","月下初音","nightmarepartynight","nightmare party night","噩梦派对之夜","華月","华","噩梦派对夜","小丑初音","月初音","初音小摩尔","初音月下舞","华月","月球miku","ナイトメア☆パーティーナイト","月下初音","nightmarepartynight","nightmare party night","噩梦派对之夜","華月","华","噩梦派对夜","小丑初音","月初音","初音小摩尔","初音月下舞","华月","月球miku","ナイトメア☆パーティーナイト","月下初音","nightmarepartynight","nightmare party night","噩梦派对之夜","華月","华","噩梦派对夜","小丑初音","月初音","初音小摩尔","初音月下舞","华月","月球miku"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19902,"dxRomVersion":0,"sdRomVersion":19902,"utRomVersion":0,"dx":{},"sd":{"0":{"id":806,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19902,"notes":{"total":246,"tap":205,"hold":22,"slide":10,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":806,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19902,"notes":{"total":419,"tap":338,"hold":42,"slide":13,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":806,"level_id":2,"level":"11","level_value":11.0,"note_designer":"某S氏","romVersion":19902,"notes":{"total":560,"tap":415,"hold":75,"slide":50,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":806,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"緑風 犬三郎","romVersion":19902,"notes":{"total":693,"tap":515,"hold":11,"slide":162,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":806,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"華火職人","romVersion":19902,"notes":{"total":695,"tap":468,"hold":82,"slide":97,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":809,"players":4525,"title":"結ンデ開イテ羅刹ト骸","utTitle":null,"artist":"ハチ","albums":["結ンデ開イテ羅刹ト骸","罗刹骨骸","连起来又分开,罗刹与骨骸","八爷","结骸","分分合合的罗刹与骨骸","罗刹","結ンデ開イテ羅刹ト骸","罗刹骨骸","连起来又分开,罗刹与骨骸","八爷","结骸","分分合合的罗刹与骨骸","罗刹","結ンデ開イテ羅刹ト骸","罗刹骨骸","连起来又分开,罗刹与骨骸","八爷","结骸","分分合合的罗刹与骨骸","罗刹"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":169,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19903,"dxRomVersion":0,"sdRomVersion":19903,"utRomVersion":0,"dx":{},"sd":{"0":{"id":809,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19903,"notes":{"total":204,"tap":179,"hold":14,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":809,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19903,"notes":{"total":341,"tap":318,"hold":17,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":809,"level_id":2,"level":"11","level_value":11.1,"note_designer":"サファ太","romVersion":19903,"notes":{"total":455,"tap":344,"hold":77,"slide":26,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":809,"level_id":3,"level":"12","level_value":12.0,"note_designer":"緑風 犬三郎","romVersion":19903,"notes":{"total":587,"tap":472,"hold":40,"slide":73,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":809,"level_id":4,"level":"13","level_value":13.3,"note_designer":"玉子豆腐","romVersion":19903,"notes":{"total":697,"tap":559,"hold":16,"slide":111,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":812,"players":9924,"title":"Alea jacta est!","utTitle":null,"artist":"BlackY fused with WAiKURO","albums":["alea jacta est!","魂5","avemujica","黑人击剑","\uD83E\uDD3A","木已成舟","骰子已经掷下","宝可梦剑盾","aj","农具打架","求求你们不要再打啦","科比肘击詹姆斯","骰子已被掷下","孤注一掷","击剑","2025春晚","种植园纷争","黑人打架","aje","打架","种植园纠纷","黑人打胶","alea jacta est!","魂5","avemujica","黑人击剑","\uD83E\uDD3A","木已成舟","骰子已经掷下","宝可梦剑盾","aj","农具打架","求求你们不要再打啦","科比肘击詹姆斯","骰子已被掷下","孤注一掷","击剑","2025春晚","种植园纷争","黑人打架","aje","打架","种植园纠纷","黑人打胶","光肘击对立","alea jacta est!","魂5","avemujica","黑人击剑","\uD83E\uDD3A","木已成舟","骰子已经掷下","宝可梦剑盾","aj","农具打架","求求你们不要再打啦","科比肘击詹姆斯","骰子已被掷下","孤注一掷","击剑","2025春晚","种植园纷争","黑人打架","aje","打架","种植园纠纷","黑人打胶","\uD83D\uDDFF"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":162,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19994,"dxRomVersion":0,"sdRomVersion":19994,"utRomVersion":0,"dx":{},"sd":{"0":{"id":812,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19994,"notes":{"total":341,"tap":313,"hold":16,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":812,"level_id":1,"level":"9+","level_value":9.6,"note_designer":"-","romVersion":19994,"notes":{"total":469,"tap":375,"hold":27,"slide":35,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":812,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":19994,"notes":{"total":741,"tap":540,"hold":74,"slide":82,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":812,"level_id":3,"level":"14","level_value":14.4,"note_designer":"“Carpe diem” * HAN∀BI","romVersion":19994,"notes":{"total":1010,"tap":793,"hold":51,"slide":82,"touch":0,"break_":84},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":812,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん fused with Phoenix","romVersion":19994,"notes":{"total":1137,"tap":906,"hold":83,"slide":77,"touch":0,"break_":71},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1009,"long":false},{"id":815,"players":3825,"title":"L4TS:2018 (feat. あひる & KTA)","utTitle":null,"artist":"Sprite Recordings","albums":["l4ts:2018 (feat. あひる & kta)","小奶子伊蕾娜","宵崎奏","银发女孩","小七走","绫地宁宁","白毛萝莉","l4ts","小奈子伊蕾娜","伊蕾娜","knd","2018","l4ts:2018 (feat. あひる & kta)","小奶子伊蕾娜","宵崎奏","银发女孩","小七走","绫地宁宁","白毛萝莉","l4ts","小奈子伊蕾娜","伊蕾娜","knd","2018","l4ts:2018 (feat. あひる & kta)","小奶子伊蕾娜","宵崎奏","银发女孩","小七走","绫地宁宁","白毛萝莉","l4ts","小奈子伊蕾娜","伊蕾娜","knd","2018","小气走"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19904,"dxRomVersion":0,"sdRomVersion":19904,"utRomVersion":0,"dx":{},"sd":{"0":{"id":815,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19904,"notes":{"total":153,"tap":125,"hold":16,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":815,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19904,"notes":{"total":261,"tap":211,"hold":25,"slide":18,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":815,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"玉子豆腐","romVersion":19904,"notes":{"total":420,"tap":297,"hold":38,"slide":63,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":815,"level_id":3,"level":"13","level_value":13.3,"note_designer":"サファ太","romVersion":19904,"notes":{"total":574,"tap":391,"hold":23,"slide":124,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":816,"players":5199,"title":"クレイジークレイジーダンサーズ","utTitle":null,"artist":"ビートまりお+あまね(COOL&CREATE)","albums":["クレイジークレイジーダンサーズ","女同6","185","二人危险炸弹","尬舞姐妹2","crazy crazy dancers","crazycrazydancers","疯狂疯狂跳舞","魔理沙帕秋莉贴贴","疯狂舞者","ccd","小kib","クレイジークレイジーダンサーズ","女同6","185","二人危险炸弹","尬舞姐妹2","crazy crazy dancers","crazycrazydancers","疯狂疯狂跳舞","魔理沙帕秋莉贴贴","疯狂舞者","ccd","小kib","クレイジークレイジーダンサーズ","女同6","185","二人危险炸弹","尬舞姐妹2","crazy crazy dancers","crazycrazydancers","疯狂疯狂跳舞","魔理沙帕秋莉贴贴","疯狂舞者","ccd","小kib"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":19905,"dxRomVersion":0,"sdRomVersion":19905,"utRomVersion":0,"dx":{},"sd":{"0":{"id":816,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19905,"notes":{"total":215,"tap":186,"hold":13,"slide":5,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":816,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19905,"notes":{"total":396,"tap":307,"hold":20,"slide":11,"touch":0,"break_":58},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":816,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":19905,"notes":{"total":510,"tap":340,"hold":62,"slide":59,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":816,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":19905,"notes":{"total":606,"tap":459,"hold":31,"slide":105,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":816,"level_id":4,"level":"13","level_value":13.3,"note_designer":"小鳥遊さん","romVersion":19905,"notes":{"total":794,"tap":469,"hold":27,"slide":113,"touch":0,"break_":185},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":817,"players":2669,"title":"【東方ニコカラ】秘神マターラ feat.魂音泉【IOSYS】","utTitle":null,"artist":"ARM (IOSYS)","albums":["【東方ニコカラ】秘神マターラ feat.魂音泉【iosys】","秘神摩多罗","东方〇起","东方勃起","见前","秘神","【東方ニコカラ】秘神マターラ feat.魂音泉【iosys】","秘神摩多罗","东方〇起","东方勃起","见前","秘神","【東方ニコカラ】秘神マターラ feat.魂音泉【iosys】","秘神摩多罗","东方〇起","东方勃起","见前","秘神"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":168,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19905,"dxRomVersion":0,"sdRomVersion":19905,"utRomVersion":0,"dx":{},"sd":{"0":{"id":817,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19905,"notes":{"total":231,"tap":192,"hold":18,"slide":4,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":817,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19905,"notes":{"total":429,"tap":336,"hold":56,"slide":12,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":817,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":19905,"notes":{"total":569,"tap":408,"hold":63,"slide":50,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":817,"level_id":3,"level":"13","level_value":13.4,"note_designer":"玉子豆腐","romVersion":19905,"notes":{"total":851,"tap":607,"hold":26,"slide":165,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":745,"long":false},{"id":818,"players":5085,"title":"隠然","utTitle":null,"artist":"豚乙女","albums":["隠然","隐然","引燃","隠然","隐然","引燃","隠然","隐然","引燃"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":210,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19905,"dxRomVersion":0,"sdRomVersion":19905,"utRomVersion":0,"dx":{},"sd":{"0":{"id":818,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19905,"notes":{"total":234,"tap":209,"hold":9,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":818,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19905,"notes":{"total":416,"tap":364,"hold":22,"slide":22,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":818,"level_id":2,"level":"11","level_value":11.5,"note_designer":"玉子豆腐","romVersion":19905,"notes":{"total":585,"tap":475,"hold":49,"slide":29,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":818,"level_id":3,"level":"12","level_value":12.5,"note_designer":"緑風 犬三郎","romVersion":19905,"notes":{"total":729,"tap":643,"hold":24,"slide":61,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":818,"level_id":4,"level":"13","level_value":13.4,"note_designer":"某S氏","romVersion":19905,"notes":{"total":734,"tap":535,"hold":78,"slide":106,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":819,"players":2738,"title":"White Traveling Girl","utTitle":null,"artist":"A-One","albums":["white traveling girl","wtg","白旅女","白色旅行女孩","白色旅行少女","萃香","西瓜fumo","白色旅人","white traveling girl","wtg","白旅女","白色旅行女孩","白色旅行少女","萃香","西瓜fumo","白色旅人","white traveling girl","wtg","白旅女","白色旅行女孩","白色旅行少女","萃香","西瓜fumo","白色旅人"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":154,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19905,"dxRomVersion":0,"sdRomVersion":19905,"utRomVersion":0,"dx":{},"sd":{"0":{"id":819,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19905,"notes":{"total":203,"tap":168,"hold":15,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":819,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19905,"notes":{"total":319,"tap":269,"hold":25,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":819,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"華火職人","romVersion":19905,"notes":{"total":560,"tap":418,"hold":81,"slide":24,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":819,"level_id":3,"level":"13","level_value":13.4,"note_designer":"某S氏","romVersion":19905,"notes":{"total":805,"tap":554,"hold":86,"slide":107,"touch":0,"break_":58},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":742,"long":false},{"id":820,"players":9085,"title":"FFT","utTitle":null,"artist":"cybermiso","albums":["fft","喜报","傅立叶快速变换","快速傅立叶变换","沙发太撸管","福费廷","傅立叶转换","傅立叶","ttf","粪粪掏","狒狒踢","芳芳痛","傅里叶变换","傅里叶","埃夫爱妇踢","狒狒头","傅立叶变换","发发图","快速傅里叶变换","付费通","fft","喜报","傅立叶快速变换","快速傅立叶变换","沙发太撸管","福费廷","傅立叶转换","傅立叶","ttf","粪粪掏","狒狒踢","芳芳痛","傅里叶变换","傅里叶","埃夫爱妇踢","狒狒头","傅立叶变换","发发图","快速傅里叶变换","付费通","fft","喜报","傅立叶快速变换","快速傅立叶变换","沙发太撸管","福费廷","傅立叶转换","傅立叶","ttf","粪粪掏","狒狒踢","芳芳痛","傅里叶变换","傅里叶","埃夫爱妇踢","狒狒头","傅立叶变换","发发图","快速傅里叶变换","付费通","大灵通","扶扶她"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19995,"dxRomVersion":0,"sdRomVersion":19995,"utRomVersion":0,"dx":{},"sd":{"0":{"id":820,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19995,"notes":{"total":260,"tap":215,"hold":23,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":820,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":19995,"notes":{"total":383,"tap":282,"hold":68,"slide":18,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":820,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":19995,"notes":{"total":407,"tap":189,"hold":143,"slide":53,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":820,"level_id":3,"level":"14","level_value":14.0,"note_designer":"safaTAmago","romVersion":19995,"notes":{"total":849,"tap":580,"hold":61,"slide":173,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":820,"level_id":4,"level":"14","level_value":14.5,"note_designer":"JAQ","romVersion":19995,"notes":{"total":947,"tap":711,"hold":63,"slide":155,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":821,"players":2713,"title":"-OutsideR:RequieM-","utTitle":null,"artist":"箱部なる(CV:M・A・O)","albums":["-outsider:requiem-","拉面","\uD83C\uDF5C","妹子嗦面","outsider","嗦拉面","吃面","我和我的泡面","杯面","泡面","阿梓喵吃面","吃拉面","吃泡面","-outsider:requiem-","拉面","\uD83C\uDF5C","妹子嗦面","outsider","嗦拉面","吃面","我和我的泡面","杯面","泡面","阿梓喵吃面","吃拉面","吃泡面","-outsider:requiem-","拉面","\uD83C\uDF5C","妹子嗦面","outsider","嗦拉面","吃面","我和我的泡面","杯面","泡面","阿梓喵吃面","吃拉面","吃泡面"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":181,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19906,"dxRomVersion":0,"sdRomVersion":19906,"utRomVersion":0,"dx":{},"sd":{"0":{"id":821,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19906,"notes":{"total":211,"tap":173,"hold":21,"slide":10,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":821,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19906,"notes":{"total":328,"tap":274,"hold":28,"slide":20,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":821,"level_id":2,"level":"11","level_value":11.4,"note_designer":"はっぴー","romVersion":19906,"notes":{"total":520,"tap":421,"hold":56,"slide":40,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":821,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":19906,"notes":{"total":817,"tap":636,"hold":21,"slide":130,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":487,"long":false},{"id":822,"players":2271,"title":"イロトリドリのメロディ","utTitle":null,"artist":"小仏凪(CV:佐倉薫)","albums":["イロトリドリのメロディ","小仏凪","彩绿之歌","多彩旋律","端茶","イロトリドリのメロディ","小仏凪","彩绿之歌","多彩旋律","端茶","イロトリドリのメロディ","小仏凪","彩绿之歌","多彩旋律","端茶"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19906,"dxRomVersion":0,"sdRomVersion":19906,"utRomVersion":0,"dx":{},"sd":{"0":{"id":822,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":19906,"notes":{"total":166,"tap":142,"hold":7,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":822,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":19906,"notes":{"total":250,"tap":215,"hold":8,"slide":19,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":822,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"小鳥遊さん","romVersion":19906,"notes":{"total":406,"tap":314,"hold":40,"slide":34,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":822,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"華火職人","romVersion":19906,"notes":{"total":575,"tap":483,"hold":27,"slide":42,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":481,"long":false},{"id":823,"players":3446,"title":"奏者はただ背中と提琴で語るのみ","utTitle":null,"artist":"月鈴那知(CV:今村彩夏)","albums":["奏者はただ背中と提琴で語るのみ","月玲那知","月玲妹妹躺沙发","美少女躺沙发","奏者","奏者背后的提琴在说话","提琴","奏者はただ背中と提琴で語るのみ","月玲那知","月玲妹妹躺沙发","美少女躺沙发","奏者","奏者背后的提琴在说话","提琴","奏者はただ背中と提琴で語るのみ","月玲那知","月玲妹妹躺沙发","美少女躺沙发","奏者","奏者背后的提琴在说话","提琴"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":230,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19906,"dxRomVersion":0,"sdRomVersion":19906,"utRomVersion":0,"dx":{},"sd":{"0":{"id":823,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19906,"notes":{"total":295,"tap":220,"hold":56,"slide":12,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":823,"level_id":1,"level":"9","level_value":9.2,"note_designer":"-","romVersion":19906,"notes":{"total":434,"tap":384,"hold":27,"slide":22,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":823,"level_id":2,"level":"12","level_value":12.3,"note_designer":"某S氏","romVersion":19906,"notes":{"total":616,"tap":501,"hold":45,"slide":60,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":823,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":19906,"notes":{"total":929,"tap":698,"hold":60,"slide":110,"touch":0,"break_":61},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":468,"long":false},{"id":825,"players":9814,"title":"雷切-RAIKIRI-","utTitle":null,"artist":"kanone","albums":["雷切-raikiri-","噔噔噔噔","两把刀","影刃","纯粹的强大","地雷女切手手","梦想一心","雷切","雷切-raikiri-","噔噔噔噔","两把刀","影刃","纯粹的强大","地雷女切手手","梦想一心","雷切","雷切-raikiri-","噔噔噔噔","两把刀","影刃","纯粹的强大","地雷女切手手","梦想一心","雷切","你们怎么解读出我和他切割的"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19996,"dxRomVersion":0,"sdRomVersion":19996,"utRomVersion":0,"dx":{},"sd":{"0":{"id":825,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19996,"notes":{"total":301,"tap":257,"hold":13,"slide":14,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":825,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19996,"notes":{"total":407,"tap":304,"hold":64,"slide":23,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":825,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":19996,"notes":{"total":670,"tap":496,"hold":47,"slide":73,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":825,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"某S氏","romVersion":19996,"notes":{"total":1190,"tap":1053,"hold":13,"slide":85,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":825,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"Phoenix","romVersion":19996,"notes":{"total":1167,"tap":1007,"hold":43,"slide":71,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2399,"long":false},{"id":829,"players":5614,"title":"敗北の少年","utTitle":null,"artist":"kemu","albums":["敗北の少年","败北","败北的少年","黑丝破洞","败北少年","敗北の少年","败北","败北的少年","黑丝破洞","败北少年","敗北の少年","败北","败北的少年","黑丝破洞","败北少年"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19909,"dxRomVersion":0,"sdRomVersion":19909,"utRomVersion":0,"dx":{},"sd":{"0":{"id":829,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19909,"notes":{"total":251,"tap":213,"hold":23,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":829,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19909,"notes":{"total":447,"tap":405,"hold":14,"slide":24,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":829,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":19909,"notes":{"total":636,"tap":544,"hold":35,"slide":40,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":829,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":19909,"notes":{"total":968,"tap":769,"hold":18,"slide":166,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":830,"players":5374,"title":"立ち入り禁止","utTitle":null,"artist":"まふまふ","albums":["立ち入り禁止","\uD83D\uDEAB","禁止进入","立入禁止","禁止寸止","后入群主","后入禁止","立ち入り禁止","\uD83D\uDEAB","禁止进入","立入禁止","禁止寸止","后入群主","后入禁止","立ち入り禁止","\uD83D\uDEAB","禁止进入","立入禁止","禁止寸止","后入群主","后入禁止"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19909,"dxRomVersion":0,"sdRomVersion":19909,"utRomVersion":0,"dx":{},"sd":{"0":{"id":830,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19909,"notes":{"total":193,"tap":168,"hold":12,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":830,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19909,"notes":{"total":395,"tap":345,"hold":17,"slide":19,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":830,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":19909,"notes":{"total":558,"tap":441,"hold":67,"slide":35,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":830,"level_id":3,"level":"12","level_value":12.1,"note_designer":"緑風 犬三郎","romVersion":19909,"notes":{"total":768,"tap":635,"hold":14,"slide":109,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":830,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"玉子豆腐","romVersion":19909,"notes":{"total":953,"tap":801,"hold":23,"slide":76,"touch":0,"break_":53},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":832,"players":4188,"title":"命ばっかり","utTitle":null,"artist":"ぬゆり","albums":["命ばっかり","命没","沙发太","蓝色男人坐沙发","只有命","只为生命","命","全是命","命ばっかり","命没","沙发太","蓝色男人坐沙发","只有命","只为生命","命","全是命","命ばっかり","命没","沙发太","蓝色男人坐沙发","只有命","只为生命","命","全是命"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19909,"dxRomVersion":0,"sdRomVersion":19909,"utRomVersion":0,"dx":{},"sd":{"0":{"id":832,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19909,"notes":{"total":167,"tap":145,"hold":14,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":832,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":19909,"notes":{"total":313,"tap":295,"hold":11,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":832,"level_id":2,"level":"10","level_value":10.0,"note_designer":"某S氏","romVersion":19909,"notes":{"total":364,"tap":268,"hold":38,"slide":38,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":832,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":19909,"notes":{"total":631,"tap":505,"hold":54,"slide":68,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":795,"long":false},{"id":833,"players":14590,"title":"the EmpErroR","utTitle":null,"artist":"sasakure.UK","albums":["the emperror","↗️↘️↗️","钢琴冒烟的艺术家","皇帝","两小儿跳棋","农夫山泉","emperror","跳棋","\uD83D\uDC6B","跳一跳","vinta","siesta","东海帝皇","俩跳棋","电子脉冲错误","西瓜皮","nenene","爱神","怡宝和农夫山泉","the emperror","↗️↘️↗️","钢琴冒烟的艺术家","皇帝","两小儿跳棋","农夫山泉","emperror","跳棋","\uD83D\uDC6B","跳一跳","vinta","siesta","东海帝皇","俩跳棋","电子脉冲错误","西瓜皮","nenene","爱神","怡宝和农夫山泉","才羽毛毛人","才羽毛毛入","淮安老皇帝","淮安老皇帝ltc","新亚皇帝雨水","淮安皇帝库克","新亚皇帝六十位","淮安皇帝孙震撼","the emperror","↗️↘️↗️","钢琴冒烟的艺术家","皇帝","两小儿跳棋","农夫山泉","emperror","跳棋","\uD83D\uDC6B","跳一跳","vinta","siesta","东海帝皇","俩跳棋","电子脉冲错误","西瓜皮","nenene","爱神","怡宝和农夫山泉","锅盖头跳棋","电磁脉冲错误"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":240,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19997,"dxRomVersion":0,"sdRomVersion":19997,"utRomVersion":0,"dx":{},"sd":{"0":{"id":833,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19997,"notes":{"total":213,"tap":185,"hold":17,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":833,"level_id":1,"level":"10+","level_value":10.6,"note_designer":"-","romVersion":19997,"notes":{"total":533,"tap":476,"hold":35,"slide":18,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":833,"level_id":2,"level":"13","level_value":13.4,"note_designer":"すきやき奉行","romVersion":19997,"notes":{"total":812,"tap":657,"hold":88,"slide":48,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":833,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":19997,"notes":{"total":1057,"tap":938,"hold":35,"slide":62,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":833,"level_id":4,"level":"14+","level_value":14.9,"note_designer":"-ZONE- SaFaRi","romVersion":19997,"notes":{"total":1057,"tap":836,"hold":104,"slide":102,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1058,"long":false},{"id":834,"players":17333,"title":"PANDORA PARADOXXX","utTitle":null,"artist":"削除","albums":["pandora paradoxxx","潘多拉","最水15","天苍苍野茫茫","天苍苍野茫茫风吹草低见牛羊","kop5决赛二号曲","随个15","潘","今日舞萌","kop5官方严选","100日元","天苍苍,野茫茫,风吹草低见牛羊","新手教程","噔噔","很急","推荐乐曲排行榜","舞状元","原神","水15","潘多拉悖论","xxx","pp","pandora paradoxxx","潘多拉","最水15","天苍苍野茫茫","天苍苍野茫茫风吹草低见牛羊","kop5决赛二号曲","随个15","潘","今日舞萌","kop5官方严选","100日元","天苍苍,野茫茫,风吹草低见牛羊","新手教程","噔噔","很急","推荐乐曲排行榜","舞状元","原神","水15","潘多拉悖论","pp","测试潘","pandora paradoxxx","潘多拉","最水15","天苍苍野茫茫","天苍苍野茫茫风吹草低见牛羊","kop5决赛二号曲","随个15","潘","今日舞萌","kop5官方严选","100日元","天苍苍,野茫茫,风吹草低见牛羊","新手教程","噔噔","很急","推荐乐曲排行榜","舞状元","原神","水15","潘多拉悖论","xxx","pp"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19998,"dxRomVersion":0,"sdRomVersion":19998,"utRomVersion":0,"dx":{},"sd":{"0":{"id":834,"level_id":0,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":19998,"notes":{"total":307,"tap":257,"hold":29,"slide":15,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":834,"level_id":1,"level":"11","level_value":11.5,"note_designer":"-","romVersion":19998,"notes":{"total":568,"tap":482,"hold":63,"slide":10,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":834,"level_id":2,"level":"13+","level_value":13.9,"note_designer":"譜面-100号","romVersion":19998,"notes":{"total":855,"tap":613,"hold":72,"slide":121,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":834,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"PANDORA BOXXX","romVersion":19998,"notes":{"total":1309,"tap":1017,"hold":98,"slide":117,"touch":0,"break_":77},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":834,"level_id":4,"level":"15","level_value":15.0,"note_designer":"PANDORA PARADOXXX","romVersion":19998,"notes":{"total":1342,"tap":1165,"hold":72,"slide":90,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":835,"players":8381,"title":"Believe the Rainbow","utTitle":null,"artist":"Shoichiro Hirata feat.Sana","albums":["believe the rainbow","\uD83C\uDF08","北面","别信彩虹","辉代主题曲","相信彩虹","彩虹","彩虹六号","相信LGBT","btr","彩虹桥","believe the rainbow","\uD83C\uDF08","北面","别信彩虹","辉代主题曲","相信彩虹","彩虹","彩虹六号","相信LGBT","btr","彩虹桥","believe the rainbow","\uD83C\uDF08","北面","别信彩虹","辉代主题曲","相信彩虹","彩虹","彩虹六号","相信LGBT","btr","彩虹桥"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":133,"releaseDate":"20250712","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":19999,"dxRomVersion":0,"sdRomVersion":19999,"utRomVersion":0,"dx":{},"sd":{"0":{"id":835,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19999,"notes":{"total":152,"tap":126,"hold":12,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":835,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19999,"notes":{"total":342,"tap":277,"hold":26,"slide":28,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":835,"level_id":2,"level":"10","level_value":10.2,"note_designer":"某S氏","romVersion":19999,"notes":{"total":370,"tap":275,"hold":38,"slide":43,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":835,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":19999,"notes":{"total":445,"tap":196,"hold":0,"slide":242,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":836,"players":10168,"title":"Good Bye, Mr. Jack","utTitle":null,"artist":"sasakure.UK","albums":["good bye, mr. jack","再见","杰哥","杰哥不要","再见杰哥","再见杰克","再见我的杰","good bye, mr. jack","再见","杰哥","杰哥不要","再见杰哥","再见杰克","再见我的杰","good bye, mr. jack","再见","杰哥","杰哥不要","再见杰哥","再见杰克","再见我的杰"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19910,"dxRomVersion":0,"sdRomVersion":19910,"utRomVersion":0,"dx":{},"sd":{"0":{"id":836,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19910,"notes":{"total":202,"tap":171,"hold":14,"slide":13,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":836,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":19910,"notes":{"total":404,"tap":319,"hold":56,"slide":25,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":836,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":19910,"notes":{"total":637,"tap":507,"hold":76,"slide":43,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":836,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":19910,"notes":{"total":933,"tap":755,"hold":92,"slide":75,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1429,"players":10108,"title":"Love's Theme of BADASS ~バッド・アス 愛のテーマ~","utTitle":{"111429":"[爆]Love's Theme of BADASS ~バッド・アス 愛のテーマ~"},"artist":"Hommarju","albums":["love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass","love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass","章鱼一次胜利","love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"ゲームバラエティ","bpm":202,"releaseDate":"20241224","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":25009,"dx":{"0":{"id":11429,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":279,"tap":240,"hold":13,"slide":6,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11429,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23001,"notes":{"total":455,"tap":348,"hold":21,"slide":12,"touch":34,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11429,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":744,"tap":499,"hold":27,"slide":125,"touch":38,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11429,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":23001,"notes":{"total":1034,"tap":467,"hold":155,"slide":180,"touch":79,"break_":153},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111429":{"id":111429,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":25009,"notes":{"total":1342,"tap":337,"hold":115,"slide":8,"touch":391,"break_":491},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2540,"long":false},{"id":837,"players":9537,"title":"Altale","utTitle":null,"artist":"削除","albums":["altale","tga年度最佳","开心的小曲儿","别急2","阿泰尔","机器人","削除的电线","你先别急","机器人钓鱼","电线","漏电电线","altale","tga年度最佳","开心的小曲儿","别急2","阿泰尔","机器人","削除的电线","你先别急","机器人钓鱼","电线","漏电电线","altale","tga年度最佳","开心的小曲儿","别急2","阿泰尔","机器人","削除的电线","你先别急","机器人钓鱼","电线","漏电电线","天线"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":90,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19910,"dxRomVersion":0,"sdRomVersion":19910,"utRomVersion":0,"dx":{},"sd":{"0":{"id":837,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19910,"notes":{"total":145,"tap":126,"hold":10,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":837,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19910,"notes":{"total":256,"tap":195,"hold":47,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":837,"level_id":2,"level":"12","level_value":12.4,"note_designer":"Jack","romVersion":19910,"notes":{"total":402,"tap":305,"hold":52,"slide":24,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":837,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"チャン@DP皆伝","romVersion":19910,"notes":{"total":487,"tap":371,"hold":7,"slide":81,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":142,"long":false},{"id":838,"players":12193,"title":"最終鬼畜妹フランドール・S","utTitle":null,"artist":"ビートまりお(COOL&CREATE)","albums":["最終鬼畜妹フランドール・s","二小姐","蓝蓝路","最终鬼畜妹","鬼畜妹","二妹","最終鬼畜妹フランドール・s","二小姐","蓝蓝路","最终鬼畜妹","鬼畜妹","二妹","最終鬼畜妹フランドール・s","二小姐","蓝蓝路","最终鬼畜妹","鬼畜妹","二妹"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19911,"dxRomVersion":0,"sdRomVersion":19911,"utRomVersion":0,"dx":{},"sd":{"0":{"id":838,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19911,"notes":{"total":165,"tap":141,"hold":10,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":838,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":19911,"notes":{"total":381,"tap":331,"hold":19,"slide":27,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":838,"level_id":2,"level":"11","level_value":11.5,"note_designer":"小鳥遊さん","romVersion":19911,"notes":{"total":561,"tap":401,"hold":89,"slide":41,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":838,"level_id":3,"level":"12","level_value":12.1,"note_designer":"緑風 犬三郎","romVersion":19911,"notes":{"total":666,"tap":472,"hold":42,"slide":144,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":838,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"某S氏","romVersion":19911,"notes":{"total":853,"tap":590,"hold":87,"slide":125,"touch":0,"break_":51},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":819,"long":false},{"id":839,"players":3589,"title":"ネクロファンタジア~Arr.Demetori","utTitle":null,"artist":"Demetori","albums":["ネクロファンタジア~arr.demetori","紫妈弹吉他","亡灵幻想曲","arr","老太婆弹吉他","demetori","ネクロファンタジア","少女幻葬曲","ネクロファンタジア~arr.demetori","紫妈弹吉他","亡灵幻想曲","arr","老太婆弹吉他","demetori","ネクロファンタジア","少女幻葬曲","ネクロファンタジア~arr.demetori","紫妈弹吉他","亡灵幻想曲","arr","老太婆弹吉他","demetori","ネクロファンタジア","少女幻葬曲"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19911,"dxRomVersion":0,"sdRomVersion":19911,"utRomVersion":0,"dx":{},"sd":{"0":{"id":839,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19911,"notes":{"total":192,"tap":164,"hold":14,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":839,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19911,"notes":{"total":386,"tap":331,"hold":21,"slide":26,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":839,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"華火職人","romVersion":19911,"notes":{"total":589,"tap":410,"hold":66,"slide":59,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":839,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":19911,"notes":{"total":971,"tap":755,"hold":23,"slide":168,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":840,"players":8477,"title":"Imperishable Night 2006 (2016 Refine)","utTitle":null,"artist":"ゆうゆ / 篠螺悠那","albums":["imperishable night 2006 (2016 refine)","灵梦玩火","永夜抄2006","2006","2016","imperishable night 2006 (2016 refine)","灵梦玩火","永夜抄2006","2006","2016","永夜抄","东方永夜抄","imperishable night 2006 (2016 refine)","灵梦玩火","永夜抄2006","2006","2016"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"東方Project","bpm":161,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19911,"dxRomVersion":0,"sdRomVersion":19911,"utRomVersion":0,"dx":{},"sd":{"0":{"id":840,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19911,"notes":{"total":226,"tap":197,"hold":11,"slide":3,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":840,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":19911,"notes":{"total":448,"tap":399,"hold":36,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":840,"level_id":2,"level":"12","level_value":12.3,"note_designer":"サファ太","romVersion":19911,"notes":{"total":662,"tap":528,"hold":56,"slide":34,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":840,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":19911,"notes":{"total":1043,"tap":862,"hold":26,"slide":94,"touch":0,"break_":61},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":322,"long":false},{"id":1433,"players":8578,"title":"ヒトガタ","utTitle":{"111433":"[奏]ヒトガタ"},"artist":"HIMEHINA","albums":["ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕","ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕","ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":150,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":24511,"dx":{"0":{"id":11433,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23002,"notes":{"total":131,"tap":107,"hold":8,"slide":6,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11433,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23002,"notes":{"total":329,"tap":259,"hold":19,"slide":16,"touch":28,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11433,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":23002,"notes":{"total":550,"tap":380,"hold":80,"slide":39,"touch":35,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11433,"level_id":3,"level":"13","level_value":13.4,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":799,"tap":530,"hold":82,"slide":134,"touch":19,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111433":{"id":111433,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24511,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":841,"players":12027,"title":"終点","utTitle":null,"artist":"cosMo@暴走P","albums":["終点","打怪兽","怪兽","b50里有终点","终点","小心地滑","污点","b50的起点","終点","打怪兽","怪兽","b50里有终点","终点","小心地滑","污点","b50的起点","終点","打怪兽","怪兽","b50里有终点","终点","小心地滑","污点","b50的起点","\uD83C\uDFC1"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":222,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19912,"dxRomVersion":0,"sdRomVersion":19912,"utRomVersion":0,"dx":{},"sd":{"0":{"id":841,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19912,"notes":{"total":176,"tap":150,"hold":13,"slide":5,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":841,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":19912,"notes":{"total":274,"tap":234,"hold":17,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":841,"level_id":2,"level":"12","level_value":12.4,"note_designer":"小鳥遊さん","romVersion":19912,"notes":{"total":531,"tap":432,"hold":46,"slide":35,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":841,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":19912,"notes":{"total":710,"tap":553,"hold":39,"slide":79,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":842,"players":1760,"title":"WORLD'S END UMBRELLA","utTitle":null,"artist":"ハチ","albums":["world's end umbrella","世终伞","世末雨伞","世界终末雨伞","世末伞","世终雨伞","世界结束雨伞","☔","world's end umbrella","世终伞","世末雨伞","世界终末雨伞","世末伞","世终雨伞","世界结束雨伞","☔","world's end umbrella","世终伞","世末雨伞","世界终末雨伞","世末伞","世终雨伞","世界结束雨伞","☔"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19912,"dxRomVersion":0,"sdRomVersion":19912,"utRomVersion":0,"dx":{},"sd":{"0":{"id":842,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":19912,"notes":{"total":148,"tap":120,"hold":18,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":842,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":19912,"notes":{"total":287,"tap":239,"hold":23,"slide":13,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":842,"level_id":2,"level":"10","level_value":10.3,"note_designer":"サファ太","romVersion":19912,"notes":{"total":445,"tap":352,"hold":50,"slide":29,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":842,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":19912,"notes":{"total":519,"tap":387,"hold":46,"slide":75,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":844,"players":10629,"title":"End Time","utTitle":null,"artist":"Cres.","albums":["end time","endtime","et","终时","伊岛","终焉时刻","最后的老时","终章","结束啦","end time","endtime","et","终时","伊岛","终焉时刻","最后的老时","终章","结束啦","end time","endtime","et","终时","伊岛","终焉时刻","最后的老时","终章","结束啦"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19912,"dxRomVersion":0,"sdRomVersion":19912,"utRomVersion":0,"dx":{},"sd":{"0":{"id":844,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19912,"notes":{"total":198,"tap":188,"hold":1,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":844,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19912,"notes":{"total":347,"tap":281,"hold":38,"slide":10,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":844,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":19912,"notes":{"total":579,"tap":475,"hold":64,"slide":34,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":844,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"チャン@DP皆伝","romVersion":19912,"notes":{"total":949,"tap":829,"hold":52,"slide":38,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":619,"long":false},{"id":1437,"players":12673,"title":"三妖精SAY YA!!!","utTitle":{"111437":"[協]三妖精SAY YA!!!"},"artist":"森羅万象","albums":["三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精","三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精","三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"東方Project","bpm":150,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":24506,"dx":{"0":{"id":11437,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23004,"notes":{"total":142,"tap":105,"hold":6,"slide":7,"touch":21,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11437,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23004,"notes":{"total":333,"tap":290,"hold":8,"slide":14,"touch":20,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11437,"level_id":2,"level":"10","level_value":10.0,"note_designer":"じゃこレモン","romVersion":23004,"notes":{"total":493,"tap":366,"hold":52,"slide":31,"touch":33,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11437,"level_id":3,"level":"13","level_value":13.3,"note_designer":"隅田川星人","romVersion":23004,"notes":{"total":802,"tap":481,"hold":86,"slide":140,"touch":72,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111437":{"id":111437,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24506,"notes":{"total":1282,"tap":724,"hold":251,"slide":71,"touch":25,"break_":211},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2324,"long":false},{"id":848,"players":5236,"title":"魔法少女になるしかねぇ","utTitle":null,"artist":"ねこみりん feat.小宮真央","albums":["魔法少女になるしかねぇ","脏","马猴烧酒","只好成为魔法少女了","魔法少女","魔法少女になるしかねぇ","脏","马猴烧酒","只好成为魔法少女了","魔法少女","魔法少女になるしかねぇ","脏","马猴烧酒","只好成为魔法少女了","魔法少女"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":165,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19904,"dxRomVersion":0,"sdRomVersion":19904,"utRomVersion":0,"dx":{},"sd":{"0":{"id":848,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":19904,"notes":{"total":234,"tap":205,"hold":16,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":848,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19904,"notes":{"total":430,"tap":332,"hold":30,"slide":21,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":848,"level_id":2,"level":"12","level_value":12.4,"note_designer":"玉子豆腐","romVersion":19904,"notes":{"total":537,"tap":402,"hold":35,"slide":73,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":848,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小鳥遊さん","romVersion":19904,"notes":{"total":956,"tap":712,"hold":33,"slide":124,"touch":0,"break_":87},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":849,"players":7470,"title":"Kattobi KEIKYU Rider","utTitle":null,"artist":"Sampling Masters MEGA","albums":["kattobi keikyu rider","收到","电车妹","京急线","叮叮叮","丁丁电车","京急","电车骑士","五块钱","电车娘","电车","京急电车","松江有轨","列车","叮叮叮叮叮","爱上火车","叮叮电车","丁丁车","叮叮车","kattobi keikyu rider","收到","电车妹","京急线","叮叮叮","丁丁电车","京急","电车骑士","五块钱","电车娘","电车","京急电车","松江有轨","列车","叮叮叮叮叮","爱上火车","叮叮电车","丁丁车","叮叮车","kattobi keikyu rider","收到","电车妹","京急线","叮叮叮","丁丁电车","京急","电车骑士","五块钱","电车娘","电车","京急电车","松江有轨","列车","叮叮叮叮叮","爱上火车","叮叮电车","丁丁车","叮叮车","呦西哟西"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":220,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19904,"dxRomVersion":0,"sdRomVersion":19904,"utRomVersion":0,"dx":{},"sd":{"0":{"id":849,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19904,"notes":{"total":304,"tap":264,"hold":26,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":849,"level_id":1,"level":"9","level_value":9.3,"note_designer":"-","romVersion":19904,"notes":{"total":537,"tap":401,"hold":81,"slide":31,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":849,"level_id":2,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":19904,"notes":{"total":828,"tap":649,"hold":116,"slide":45,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":849,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"玉子豆腐","romVersion":19904,"notes":{"total":844,"tap":510,"hold":85,"slide":184,"touch":0,"break_":65},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":441,"long":false},{"id":850,"players":4333,"title":"B.M.S.","utTitle":null,"artist":"光吉猛修の父","albums":["b.m.s.","抱猫神","披萨","bms","达美乐披萨","冰美式","光吉猛修他爹","光吉","b.m.s.","抱猫神","披萨","bms","达美乐披萨","冰美式","光吉猛修他爹","光吉","b.m.s.","抱猫神","披萨","bms","达美乐披萨","冰美式","光吉猛修他爹","光吉"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19904,"dxRomVersion":0,"sdRomVersion":19904,"utRomVersion":0,"dx":{},"sd":{"0":{"id":850,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":19904,"notes":{"total":187,"tap":169,"hold":8,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":850,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":19904,"notes":{"total":358,"tap":255,"hold":52,"slide":15,"touch":0,"break_":36},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":850,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":19904,"notes":{"total":522,"tap":394,"hold":39,"slide":86,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":850,"level_id":3,"level":"14","level_value":14.2,"note_designer":"はっぴー","romVersion":19904,"notes":{"total":853,"tap":687,"hold":84,"slide":51,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":852,"players":9771,"title":"TiamaT:F minor","utTitle":null,"artist":"Team Grimoire","albums":["tiamat:f minor","白豆","提亚马特","tfboys","黑神话","绝赞交互","猩猩歌","大猩猩","提提,提提提","手感提","猩猩比","提一提","黑神话悟空","m t:f","tiama t:fboys","\uD83E\uDD8D\uD83E\uDD8D,\uD83E\uDD8D\uD83E\uDD8D\uD83E\uDD8D","\uD83E\uDD8D","提亚玛特","tf","健身教练","泡泡玛特","ttf","猩手教程","提","提提,提提提!","tiamat:f minor","白豆","提亚马特","tfboys","黑神话","绝赞交互","猩猩歌","大猩猩","提提,提提提","手感提","猩猩比","提一提","黑神话悟空","m t:f","tiama t:fboys","\uD83E\uDD8D\uD83E\uDD8D,\uD83E\uDD8D\uD83E\uDD8D\uD83E\uDD8D","\uD83E\uDD8D","提亚玛特","tf","健身教练","泡泡玛特","ttf","猩手教程","提","提提,提提提!","哇袄","cookie","6a变身baka大绝赞","圣园未花","tiamat:f minor","白豆","提亚马特","tfboys","黑神话","绝赞交互","猩猩歌","大猩猩","提提,提提提","手感提","猩猩比","提一提","黑神话悟空","m t:f","tiama t:fboys","\uD83E\uDD8D\uD83E\uDD8D,\uD83E\uDD8D\uD83E\uDD8D\uD83E\uDD8D","\uD83E\uDD8D","提亚玛特","tf","健身教练","泡泡玛特","ttf","猩手教程","提","提提,提提提!"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":215,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":19900,"dxRomVersion":0,"sdRomVersion":19900,"utRomVersion":0,"dx":{},"sd":{"0":{"id":852,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":19900,"notes":{"total":356,"tap":337,"hold":12,"slide":1,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":852,"level_id":1,"level":"10","level_value":10.3,"note_designer":"-","romVersion":19900,"notes":{"total":503,"tap":412,"hold":48,"slide":13,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":852,"level_id":2,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":19900,"notes":{"total":800,"tap":598,"hold":26,"slide":120,"touch":0,"break_":56},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":852,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"合作だよ","romVersion":19900,"notes":{"total":1122,"tap":829,"hold":108,"slide":124,"touch":0,"break_":61},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":258,"long":false},{"id":853,"players":8041,"title":"前前前世","utTitle":null,"artist":"RADWIMPS","albums":["前前前世","推荐乐曲排行榜","你的名字","上上上辈子","韦一敏","前前前世","推荐乐曲排行榜","你的名字","上上上辈子","韦一敏","前前前世","推荐乐曲排行榜","你的名字","上上上辈子","韦一敏"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPSアニメ","bpm":190,"releaseDate":"20200917","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":true,"jp":true,"m2l":false,"firstRomVersion":18500,"dxRomVersion":0,"sdRomVersion":18500,"utRomVersion":0,"dx":{},"sd":{"0":{"id":853,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18500,"notes":{"total":162,"tap":142,"hold":9,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":853,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18500,"notes":{"total":276,"tap":248,"hold":5,"slide":19,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":853,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":18500,"notes":{"total":465,"tap":384,"hold":30,"slide":37,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":853,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":18500,"notes":{"total":697,"tap":540,"hold":19,"slide":120,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":421,"long":false},{"id":1488,"players":11776,"title":"スカーレット警察のゲットーパトロール24時","utTitle":{"111488":"[覚]スカーレット警察のゲットーパトロール24時"},"artist":"七条レタスグループ","albums":["スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察","スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察","スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"東方Project","bpm":160,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":24506,"dx":{"0":{"id":11488,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":117,"tap":88,"hold":9,"slide":8,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11488,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23005,"notes":{"total":252,"tap":189,"hold":17,"slide":12,"touch":18,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11488,"level_id":2,"level":"9","level_value":9.5,"note_designer":"じゃこレモン","romVersion":23005,"notes":{"total":307,"tap":172,"hold":51,"slide":28,"touch":18,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11488,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":711,"tap":519,"hold":31,"slide":77,"touch":49,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111488":{"id":111488,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24506,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2265,"long":false},{"id":1513,"players":6717,"title":"回る空うさぎ","utTitle":{"111513":"[回]回る空うさぎ"},"artist":"Orangestar","albums":["回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师","回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师","回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":24015,"dx":{"0":{"id":11513,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":129,"tap":103,"hold":9,"slide":2,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11513,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23008,"notes":{"total":256,"tap":205,"hold":14,"slide":16,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11513,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":298,"tap":217,"hold":35,"slide":25,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11513,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":526,"tap":415,"hold":27,"slide":47,"touch":9,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111513":{"id":111513,"level_id":0,"level":"11?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":254,"tap":0,"hold":0,"slide":32,"touch":221,"break_":1},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1516,"players":10283,"title":"Aegleseeker","utTitle":{"111516":"[蔵]Aegleseeker"},"artist":"Silentroom vs Frums","albums":["aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥","aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥","aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"ゲームバラエティ","bpm":234,"releaseDate":"20240315","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":24003,"dx":{"0":{"id":11516,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23008,"notes":{"total":245,"tap":184,"hold":19,"slide":4,"touch":31,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11516,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23008,"notes":{"total":390,"tap":312,"hold":17,"slide":18,"touch":23,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11516,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":665,"tap":480,"hold":88,"slide":41,"touch":35,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11516,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太 vs 翠楼屋","romVersion":23008,"notes":{"total":1084,"tap":754,"hold":87,"slide":49,"touch":114,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111516":{"id":111516,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":1269,"tap":987,"hold":106,"slide":42,"touch":61,"break_":73},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":1557,"players":5253,"title":"不機嫌なスリーカード","utTitle":{"111557":"[蛸]不機嫌なスリーカード"},"artist":"HIMEHINA","albums":["不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主","不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主","不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":195,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":25006,"dx":{"0":{"id":11557,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":112,"tap":91,"hold":9,"slide":2,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11557,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24000,"notes":{"total":314,"tap":244,"hold":23,"slide":10,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11557,"level_id":2,"level":"10","level_value":10.5,"note_designer":"翠楼屋","romVersion":24000,"notes":{"total":431,"tap":302,"hold":77,"slide":11,"touch":6,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11557,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":24000,"notes":{"total":559,"tap":441,"hold":27,"slide":41,"touch":13,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111557":{"id":111557,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25006,"notes":{"total":693,"tap":467,"hold":130,"slide":16,"touch":18,"break_":62},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1577,"players":2939,"title":"はんぶんこ","utTitle":{"111577":"[両]はんぶんこ"},"artist":"三枝明那","albums":["はんぶんこ","另一半","三枝明那","半分子","はんぶんこ","另一半","三枝明那","半分子","はんぶんこ","另一半","三枝明那","半分子"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":124,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":24511,"dx":{"0":{"id":11577,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":24002,"notes":{"total":125,"tap":99,"hold":9,"slide":6,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11577,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":24002,"notes":{"total":246,"tap":197,"hold":25,"slide":6,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11577,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":281,"tap":192,"hold":21,"slide":38,"touch":20,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11577,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Luxizhel","romVersion":24002,"notes":{"total":377,"tap":197,"hold":15,"slide":77,"touch":28,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111577":{"id":111577,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24511,"notes":{"total":509,"tap":354,"hold":42,"slide":64,"touch":37,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1001,"players":1626,"title":"BLACK ROSE","utTitle":null,"artist":"S!N・+α/あるふぁきゅん。×ALI PROJECT","albums":["black rose","黑玫瑰","迪卢克","black rose","黑玫瑰","迪卢克","black rose","黑玫瑰","迪卢克","黑肉丝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11001,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":142,"tap":102,"hold":10,"slide":6,"touch":22,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11001,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":20000,"notes":{"total":297,"tap":216,"hold":21,"slide":14,"touch":38,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11001,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":445,"tap":301,"hold":47,"slide":47,"touch":46,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11001,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":709,"tap":530,"hold":39,"slide":95,"touch":43,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1084,"long":false},{"id":1002,"players":4169,"title":"Secret Sleuth","utTitle":null,"artist":"島爺×蜂屋ななし","albums":["secret sleuth","ss","兔爷快乐歌","言叶2","秘密侦探","secret sleuth","ss","兔爷快乐歌","言叶2","秘密侦探","secret sleuth","ss","兔爷快乐歌","言叶2","秘密侦探","咪咪蒸蛋"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":288,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11002,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":111,"tap":84,"hold":6,"slide":4,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11002,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":263,"tap":185,"hold":15,"slide":10,"touch":42,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11002,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":20000,"notes":{"total":568,"tap":389,"hold":83,"slide":32,"touch":55,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11002,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"某S氏","romVersion":20000,"notes":{"total":726,"tap":492,"hold":53,"slide":83,"touch":88,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11002,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":897,"tap":682,"hold":68,"slide":103,"touch":35,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":914,"long":false},{"id":1003,"players":7169,"title":"でらっくmaimai♪てんてこまい!","utTitle":null,"artist":"やしきん feat.でらっくま(CV:三森すずこ)","albums":["でらっくmaimai♪てんてこまい!","dx主题曲","舞萌主题曲","天手古舞","滴蜡熊","三森铃子","迪拉熊","でらっくmaimai♪てんてこまい!","dx主题曲","舞萌主题曲","天手古舞","滴蜡熊","三森铃子","迪拉熊","でらっくmaimai♪てんてこまい!","dx主题曲","舞萌主题曲","天手古舞","滴蜡熊","三森铃子","迪拉熊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11003,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20000,"notes":{"total":171,"tap":130,"hold":19,"slide":4,"touch":11,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11003,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":20000,"notes":{"total":356,"tap":292,"hold":23,"slide":20,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11003,"level_id":2,"level":"10","level_value":10.3,"note_designer":"Jack","romVersion":20000,"notes":{"total":588,"tap":404,"hold":69,"slide":44,"touch":61,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11003,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":772,"tap":518,"hold":44,"slide":132,"touch":68,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1004,"players":9802,"title":"MAXRAGE","utTitle":null,"artist":"EBIMAYO","albums":["maxrage","暴怒","红按钮","极怒","\uD83D\uDE21","超雄","绝赞交互","迪卢克按按钮","樱雨","红温","迪卢克","满怒","超级生气","好生气","良怒2","红色重启","迪卢克按地雷","核按钮","巨他妈生气","小七","很生气","极限红温","气炸了","迪卢克按炸弹","气炸","狂怒","急怒","maxrage","暴怒","红按钮","极怒","\uD83D\uDE21","超雄","绝赞交互","迪卢克按按钮","樱雨","红温","迪卢克","满怒","超级生气","好生气","良怒2","红色重启","迪卢克按地雷","核按钮","巨他妈生气","小七","很生气","极限红温","气炸了","迪卢克按炸弹","气炸","狂怒","急怒","maxrage","暴怒","红按钮","极怒","\uD83D\uDE21","超雄","绝赞交互","迪卢克按按钮","樱雨","红温","迪卢克","满怒","超级生气","好生气","良怒2","红色重启","迪卢克按地雷","核按钮","巨他妈生气","小七","很生气","极限红温","气炸了","迪卢克按炸弹","气炸","狂怒","急怒","续标识"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":222,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11004,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20000,"notes":{"total":186,"tap":158,"hold":8,"slide":4,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11004,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20000,"notes":{"total":363,"tap":293,"hold":44,"slide":8,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11004,"level_id":2,"level":"11","level_value":11.4,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":673,"tap":527,"hold":57,"slide":19,"touch":43,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11004,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"玉子豆腐","romVersion":20000,"notes":{"total":938,"tap":650,"hold":35,"slide":107,"touch":114,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11004,"level_id":4,"level":"14","level_value":14.2,"note_designer":"サファ太","romVersion":20000,"notes":{"total":965,"tap":731,"hold":73,"slide":79,"touch":43,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2364,"long":false},{"id":1597,"players":10660,"title":"ノンブレス・オブリージュ","utTitle":{"111597":"[息]ノンブレス・オブリージュ"},"artist":"ピノキオピー","albums":["ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","看见光"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":148,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":24500,"dx":{"0":{"id":11597,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24005,"notes":{"total":141,"tap":109,"hold":9,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11597,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24005,"notes":{"total":279,"tap":227,"hold":11,"slide":8,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11597,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":345,"tap":241,"hold":38,"slide":26,"touch":25,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11597,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":465,"tap":102,"hold":281,"slide":39,"touch":15,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111597":{"id":111597,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":925,"tap":803,"hold":89,"slide":15,"touch":1,"break_":17},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2811,"long":false},{"id":1005,"players":4302,"title":"バーチャルダム ネーション","utTitle":null,"artist":"Sampling Masters MEGA","albums":["バーチャルダム ネーション","虚拟赛车","小汽车","赛车","印度人3","爸日儿子","virtualdam nation","印度赛车","越南","月儿子2","vn","七块钱","バーチャルダム ネーション","虚拟赛车","小汽车","赛车","印度人3","爸日儿子","virtualdam nation","印度赛车","越南","月儿子2","vn","七块钱","バーチャルダム ネーション","虚拟赛车","小汽车","赛车","印度人3","爸日儿子","virtualdam nation","印度赛车","越南","月儿子2","vn","七块钱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":210,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11005,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":175,"tap":141,"hold":13,"slide":4,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11005,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":20000,"notes":{"total":351,"tap":279,"hold":31,"slide":13,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11005,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":20000,"notes":{"total":653,"tap":483,"hold":89,"slide":10,"touch":60,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11005,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":909,"tap":609,"hold":67,"slide":79,"touch":148,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11005,"level_id":4,"level":"14","level_value":14.4,"note_designer":"ぴちネコ","romVersion":20000,"notes":{"total":984,"tap":640,"hold":71,"slide":129,"touch":100,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1006,"players":2102,"title":"P-qoq","utTitle":null,"artist":"owl*tree","albums":["p-qoq","灯射来红","qoq","激光火箭","oppo","星际拉面快递","拉面火箭","p-qoq","灯射来红","qoq","激光火箭","oppo","星际拉面快递","拉面火箭","p-qoq","灯射来红","qoq","激光火箭","oppo","星际拉面快递","拉面火箭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11006,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":119,"tap":96,"hold":7,"slide":1,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11006,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":315,"tap":262,"hold":20,"slide":11,"touch":20,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11006,"level_id":2,"level":"10","level_value":10.5,"note_designer":"華火職人","romVersion":20000,"notes":{"total":488,"tap":313,"hold":71,"slide":13,"touch":64,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11006,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":20000,"notes":{"total":895,"tap":601,"hold":53,"slide":114,"touch":109,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1007,"players":7260,"title":"超常マイマイン","utTitle":null,"artist":"ナユタン星人","albums":["超常マイマイン","咕噜咕噜","超常滴蜡熊","超常","大逼圈入门曲","超常maimai","超常マイマイン","咕噜咕噜","超常滴蜡熊","超常","大逼圈入门曲","超常maimai","超常マイマイン","咕噜咕噜","超常滴蜡熊","超常","大逼圈入门曲","超常maimai"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11007,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":151,"tap":121,"hold":14,"slide":3,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11007,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":331,"tap":260,"hold":35,"slide":12,"touch":19,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11007,"level_id":2,"level":"10","level_value":10.3,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":648,"tap":522,"hold":57,"slide":9,"touch":34,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11007,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":986,"tap":726,"hold":19,"slide":99,"touch":124,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11007,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"ロシアンブラック","romVersion":20000,"notes":{"total":1069,"tap":663,"hold":121,"slide":110,"touch":122,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2362,"long":false},{"id":1008,"players":4035,"title":"Crazy Circle","utTitle":null,"artist":"みきとP feat. FantasticYouth","albums":["crazy circle","黑喂狗","疯圈","ddlc","多多理财","crazy circle","黑喂狗","疯圈","ddlc","多多理财","crazy circle","黑喂狗","疯圈","ddlc","多多理财"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11008,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":149,"tap":126,"hold":5,"slide":7,"touch":9,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11008,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":20000,"notes":{"total":379,"tap":308,"hold":3,"slide":16,"touch":36,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11008,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":463,"tap":328,"hold":57,"slide":29,"touch":42,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11008,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":20000,"notes":{"total":910,"tap":671,"hold":64,"slide":73,"touch":78,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1009,"players":6079,"title":"STEREOSCAPE","utTitle":null,"artist":"164 feat. めいちゃん","albums":["stereoscape","玩手机","天体观测","stereoscape","玩手机","天体观测","stereoscape","玩手机","天体观测","立体镜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":164,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11009,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":132,"tap":106,"hold":9,"slide":5,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11009,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":20000,"notes":{"total":280,"tap":192,"hold":37,"slide":13,"touch":26,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11009,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":409,"tap":323,"hold":29,"slide":27,"touch":25,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11009,"level_id":3,"level":"12","level_value":12.4,"note_designer":"華火職人","romVersion":20000,"notes":{"total":602,"tap":379,"hold":58,"slide":57,"touch":83,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11009,"level_id":4,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":20000,"notes":{"total":733,"tap":529,"hold":31,"slide":109,"touch":47,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1010,"players":7117,"title":"STARTLINER","utTitle":null,"artist":"曲:kz(livetune)/歌:オンゲキシューターズ","albums":["startliner","音击","キミト","内鬼","きみと","君と","startliner","音击","キミト","内鬼","きみと","君と","startliner","音击","キミト","内鬼","きみと","君と","wifi满格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":135,"releaseDate":"20190726","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11010,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20106,"notes":{"total":137,"tap":112,"hold":9,"slide":5,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11010,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":20106,"notes":{"total":266,"tap":190,"hold":27,"slide":18,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11010,"level_id":2,"level":"9","level_value":9.1,"note_designer":"華火職人","romVersion":20106,"notes":{"total":370,"tap":249,"hold":48,"slide":24,"touch":30,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11010,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":20106,"notes":{"total":521,"tap":293,"hold":53,"slide":75,"touch":92,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11010,"level_id":4,"level":"12","level_value":12.3,"note_designer":"はっぴー","romVersion":20106,"notes":{"total":567,"tap":334,"hold":33,"slide":36,"touch":131,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":802,"long":false},{"id":1014,"players":1593,"title":"♡マイマイマイラブ♡","utTitle":null,"artist":"ビートまりお","albums":["♡マイマイマイラブ♡","出mai我的爱","maimaimailove","章鱼歌","舞萌痴","爱情买卖","maimailove","my my my love","maimai love","♡マイマイマイラブ♡","出mai我的爱","maimaimailove","章鱼歌","舞萌痴","爱情买卖","maimailove","my my my love","maimai love","♡マイマイマイラブ♡","出mai我的爱","maimaimailove","章鱼歌","舞萌痴","爱情买卖","maimailove","my my my love","maimai love"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20191004","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11014,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20106,"notes":{"total":183,"tap":142,"hold":20,"slide":4,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11014,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20106,"notes":{"total":301,"tap":203,"hold":55,"slide":8,"touch":24,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11014,"level_id":2,"level":"10","level_value":10.2,"note_designer":"華火職人","romVersion":20106,"notes":{"total":433,"tap":258,"hold":49,"slide":30,"touch":44,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11014,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":20106,"notes":{"total":685,"tap":454,"hold":18,"slide":100,"touch":77,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1015,"players":6511,"title":"一か罰","utTitle":null,"artist":"豚乙女","albums":["一か罰","只有我最摇摆","一刀罚","一罚","一力罚","一罰","一か罰","只有我最摇摆","一刀罚","一罚","一力罚","一罰","一か罰","只有我最摇摆","一刀罚","一罚","一力罚","一罰"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":196,"releaseDate":"20191018","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11015,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20100,"notes":{"total":193,"tap":153,"hold":19,"slide":5,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11015,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20100,"notes":{"total":340,"tap":286,"hold":28,"slide":11,"touch":9,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11015,"level_id":2,"level":"11","level_value":11.4,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":688,"tap":515,"hold":31,"slide":35,"touch":89,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11015,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"華火職人","romVersion":20100,"notes":{"total":728,"tap":524,"hold":51,"slide":62,"touch":56,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11015,"level_id":4,"level":"14","level_value":14.0,"note_designer":"サファ太","romVersion":20100,"notes":{"total":928,"tap":538,"hold":94,"slide":112,"touch":76,"break_":108},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1016,"players":1749,"title":"キリキリ舞Mine","utTitle":null,"artist":"A-One","albums":["キリキリ舞mine","キリキリ","舞mine","girigiri舞","kirikiri","キリキリ舞mine","キリキリ","舞mine","girigiri舞","kirikiri","キリキリ舞mine","キリキリ","舞mine","girigiri舞","kirikiri"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":168,"releaseDate":"20191018","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11016,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":168,"tap":117,"hold":27,"slide":10,"touch":12,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11016,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20100,"notes":{"total":375,"tap":284,"hold":59,"slide":10,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11016,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":20100,"notes":{"total":566,"tap":364,"hold":75,"slide":46,"touch":59,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11016,"level_id":3,"level":"13","level_value":13.4,"note_designer":"某S氏","romVersion":20100,"notes":{"total":879,"tap":673,"hold":44,"slide":96,"touch":50,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1017,"players":1891,"title":"福宿音屋魂音泉","utTitle":null,"artist":"魂音泉","albums":["福宿音屋魂音泉","魂音泉","福州温泉","福州男同","敬业福","福宿音屋魂音泉","魂音泉","福州温泉","福州男同","敬业福","福宿音屋魂音泉","魂音泉","福州温泉","福州男同","敬业福"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":162,"releaseDate":"20191018","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11017,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":169,"tap":133,"hold":7,"slide":6,"touch":14,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11017,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":20100,"notes":{"total":352,"tap":249,"hold":39,"slide":11,"touch":43,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11017,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":563,"tap":397,"hold":35,"slide":32,"touch":74,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11017,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"7.3Hz+Jack","romVersion":20100,"notes":{"total":871,"tap":474,"hold":68,"slide":96,"touch":191,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1083,"long":false},{"id":1018,"players":5111,"title":"Now or Never","utTitle":null,"artist":"MintJam","albums":["now or never","机不可失时不再来","non","现在或从不","时不我待","now or never","机不可失时不再来","non","现在或从不","时不我待","now or never","机不可失时不再来","non","现在或从不","时不我待"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":202,"releaseDate":"20191018","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11018,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20100,"notes":{"total":165,"tap":134,"hold":16,"slide":7,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11018,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20100,"notes":{"total":335,"tap":250,"hold":51,"slide":16,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11018,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":20100,"notes":{"total":624,"tap":415,"hold":124,"slide":25,"touch":32,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11018,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":1007,"tap":724,"hold":20,"slide":153,"touch":90,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11018,"level_id":4,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":20100,"notes":{"total":1004,"tap":722,"hold":40,"slide":151,"touch":26,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1019,"players":3682,"title":"Scarlet Wings","utTitle":null,"artist":"REDALiCE feat. Ayumi Nomiya","albums":["scarlet wings","红鸡翅","小黑姬","黑姬","小星星2","黑姬拔刀","鸭翅","红翅膀子","红翼","鸡翅膀","红烧鸡翅","redalice","猩红之翼","scarlet wings","红鸡翅","小黑姬","黑姬","小星星2","黑姬拔刀","鸭翅","红翅膀子","红翼","鸡翅膀","红烧鸡翅","redalice","猩红之翼","scarlet wings","红鸡翅","小黑姬","黑姬","小星星2","黑姬拔刀","鸭翅","红翅膀子","红翼","鸡翅膀","红烧鸡翅","redalice","猩红之翼"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":183,"releaseDate":"20190809","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20003,"dxRomVersion":20003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11019,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20003,"notes":{"total":185,"tap":143,"hold":15,"slide":4,"touch":14,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11019,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20003,"notes":{"total":362,"tap":277,"hold":31,"slide":14,"touch":36,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11019,"level_id":2,"level":"10","level_value":10.5,"note_designer":"華火職人","romVersion":20003,"notes":{"total":508,"tap":369,"hold":35,"slide":31,"touch":47,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11019,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"シチミヘルツ","romVersion":20003,"notes":{"total":747,"tap":511,"hold":29,"slide":93,"touch":74,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1020,"players":5432,"title":"Technicians High","utTitle":null,"artist":"HiTECH NINJA","albums":["technicians high","dx科技高","蓝的盆","高科技","科技","科技很高","科技高","technicians high","dx科技高","蓝的盆","高科技","科技","科技很高","科技高","technicians high","dx科技高","蓝的盆","高科技","科技","科技很高","科技高"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20190809","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20003,"dxRomVersion":20003,"sdRomVersion":22005,"utRomVersion":0,"dx":{"0":{"id":11020,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20003,"notes":{"total":195,"tap":169,"hold":9,"slide":4,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11020,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":20003,"notes":{"total":308,"tap":224,"hold":20,"slide":22,"touch":25,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11020,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"シチミヘルツ","romVersion":20003,"notes":{"total":553,"tap":363,"hold":69,"slide":33,"touch":44,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11020,"level_id":3,"level":"13","level_value":13.4,"note_designer":"華火職人","romVersion":20003,"notes":{"total":870,"tap":668,"hold":13,"slide":25,"touch":147,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1020,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22005,"notes":{"total":125,"tap":101,"hold":11,"slide":11,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1020,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22005,"notes":{"total":376,"tap":326,"hold":22,"slide":14,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1020,"level_id":2,"level":"11","level_value":11.0,"note_designer":"隅田川星人","romVersion":22005,"notes":{"total":558,"tap":390,"hold":86,"slide":58,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1020,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":22005,"notes":{"total":784,"tap":642,"hold":48,"slide":86,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1038,"long":false},{"id":1021,"players":6380,"title":"魔ジョ狩リ","utTitle":null,"artist":"Nothing But Requiem (feat.Aikapin & Chiyoko)","albums":["魔ジョ狩リ","魔女的夜宴","骑士之夜remix版","魔狩","魔女狩猎","魔ジョ狩リ","魔女的夜宴","骑士之夜remix版","魔狩","魔女狩猎","魔ジョ狩リ","魔女的夜宴","骑士之夜remix版","魔狩","魔女狩猎","魔法少女的魔女审判"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20190809","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20003,"dxRomVersion":20003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11021,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20003,"notes":{"total":184,"tap":140,"hold":13,"slide":5,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11021,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20003,"notes":{"total":306,"tap":233,"hold":17,"slide":10,"touch":40,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11021,"level_id":2,"level":"11","level_value":11.1,"note_designer":"はっぴー","romVersion":20003,"notes":{"total":550,"tap":426,"hold":34,"slide":32,"touch":54,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11021,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":20003,"notes":{"total":665,"tap":416,"hold":69,"slide":65,"touch":102,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1022,"players":3170,"title":"TwisteD! XD","utTitle":null,"artist":"t+pazolite","albums":["twisted! xd","退订","TwisteD!XD","twisted","xd","td","twisted! xd","退订","TwisteD!XD","twisted","xd","td","twisted! xd","退订","TwisteD!XD","twisted","xd","td"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20190809","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20003,"dxRomVersion":20003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11022,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20003,"notes":{"total":162,"tap":128,"hold":13,"slide":4,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11022,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":20003,"notes":{"total":338,"tap":258,"hold":41,"slide":15,"touch":16,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11022,"level_id":2,"level":"11","level_value":11.2,"note_designer":"華火職人","romVersion":20003,"notes":{"total":616,"tap":345,"hold":70,"slide":32,"touch":150,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11022,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":20003,"notes":{"total":871,"tap":594,"hold":31,"slide":63,"touch":155,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1023,"players":8743,"title":"Blows Up Everything","utTitle":null,"artist":"USAO","albums":["blows up everything","爆","6级白谱","吹","吹爆","bue","吹爆一切","拆爆","嘿嘿歌","blows up everything","爆","6级白谱","吹","吹爆","bue","吹爆一切","拆爆","嘿嘿歌","blows up everything","爆","6级白谱","吹","吹爆","bue","吹爆一切","拆爆","嘿嘿歌","吹吹爆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":215,"releaseDate":"20190809","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20003,"dxRomVersion":20003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11023,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20003,"notes":{"total":204,"tap":169,"hold":10,"slide":4,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11023,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":20003,"notes":{"total":446,"tap":353,"hold":24,"slide":14,"touch":32,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11023,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":20003,"notes":{"total":729,"tap":429,"hold":122,"slide":70,"touch":42,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11023,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":20003,"notes":{"total":1008,"tap":563,"hold":17,"slide":130,"touch":276,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11023,"level_id":4,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":20003,"notes":{"total":1012,"tap":714,"hold":80,"slide":112,"touch":43,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2145,"long":false},{"id":1024,"players":1502,"title":"Agitation!","utTitle":null,"artist":"舞ヶ原高校軽音部","albums":["agitation!","agi","gbc","吉他姐2","agitation!","agi","gbc","吉他姐2","agitation!","agi","gbc","吉他姐2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":163,"releaseDate":"20191115","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11024,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20106,"notes":{"total":163,"tap":118,"hold":16,"slide":10,"touch":10,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11024,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20106,"notes":{"total":283,"tap":174,"hold":44,"slide":13,"touch":30,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11024,"level_id":2,"level":"10","level_value":10.2,"note_designer":"華火職人","romVersion":20106,"notes":{"total":497,"tap":342,"hold":42,"slide":45,"touch":39,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11024,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":20106,"notes":{"total":665,"tap":531,"hold":40,"slide":61,"touch":21,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":774,"long":false},{"id":1025,"players":4016,"title":"管弦楽組曲 第3番 ニ長調「第2曲(G線上のアリア)」BWV.1068-2","utTitle":null,"artist":"月鈴 那知(ヴァイオリン) 伴奏:イロドリミドリ","albums":["管弦楽組曲 第3番 ニ長調「第2曲(g線上のアリア)」bwv.1068-2","g弦上的咏叹调","二长调","妹妹拉小提琴","小女孩齐打交","管弦乐","管弦乐组曲","g弦","管弦楽組曲 第3番 ニ長調「第2曲(g線上のアリア)」bwv.1068-2","g弦上的咏叹调","二长调","妹妹拉小提琴","小女孩齐打交","管弦乐","管弦乐组曲","g弦","管弦楽組曲 第3番 ニ長調「第2曲(g線上のアリア)」bwv.1068-2","g弦上的咏叹调","二长调","妹妹拉小提琴","小女孩齐打交","管弦乐","管弦乐组曲","g弦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":180,"releaseDate":"20191115","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11025,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20106,"notes":{"total":168,"tap":99,"hold":34,"slide":16,"touch":13,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11025,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20106,"notes":{"total":359,"tap":272,"hold":43,"slide":15,"touch":21,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11025,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":20106,"notes":{"total":572,"tap":417,"hold":65,"slide":42,"touch":30,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11025,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":20106,"notes":{"total":937,"tap":718,"hold":58,"slide":74,"touch":44,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":600,"long":false},{"id":1026,"players":7735,"title":"TEmPTaTiON","utTitle":null,"artist":"かねこちはる","albums":["temptation","小萝莉","百合咲","dy","小天使","塔铺忒深","引诱","mika","轻语","肯德基六翅桶","诱惑","百合咲低语","小萝莉的诱惑","百合咲mika","temptation","小萝莉","百合咲","dy","小天使","塔铺忒深","引诱","mika","轻语","肯德基六翅桶","诱惑","百合咲低语","小萝莉的诱惑","百合咲mika","temptation","小萝莉","百合咲","dy","小天使","塔铺忒深","引诱","mika","轻语","肯德基六翅桶","诱惑","百合咲低语","小萝莉的诱惑","百合咲mika"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20191213","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11026,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20100,"notes":{"total":258,"tap":183,"hold":39,"slide":9,"touch":18,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11026,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20100,"notes":{"total":368,"tap":293,"hold":28,"slide":14,"touch":20,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11026,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":20100,"notes":{"total":665,"tap":475,"hold":76,"slide":49,"touch":43,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11026,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":1115,"tap":799,"hold":96,"slide":43,"touch":144,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2270,"long":false},{"id":1027,"players":5844,"title":"アポカリプスに反逆の焔を焚べろ","utTitle":null,"artist":"cosMo@暴走AlterEgo","albums":["アポカリプスに反逆の焔を焚べろ","于启示录上燃烧的叛逆火焰","反逆","apocalypse rebellious","在启示录上点燃叛逆的火焰","反逆焰","アポカリプスに反逆の焔を焚べろ","于启示录上燃烧的叛逆火焰","反逆","apocalypse rebellious","在启示录上点燃叛逆的火焰","反逆焰","小提","アポカリプスに反逆の焔を焚べろ","于启示录上燃烧的叛逆火焰","反逆","apocalypse rebellious","在启示录上点燃叛逆的火焰","反逆焰"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":222,"releaseDate":"20191213","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11027,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20100,"notes":{"total":310,"tap":219,"hold":39,"slide":6,"touch":40,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11027,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20100,"notes":{"total":386,"tap":293,"hold":30,"slide":14,"touch":26,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11027,"level_id":2,"level":"12","level_value":12.5,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":756,"tap":545,"hold":37,"slide":34,"touch":89,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11027,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太","romVersion":20100,"notes":{"total":1086,"tap":822,"hold":54,"slide":78,"touch":106,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1106,"long":false},{"id":1028,"players":5278,"title":"玩具狂奏曲 -終焉-","utTitle":null,"artist":"きくお","albums":["玩具狂奏曲 -終焉-","玩具","玩具狂奏曲","别急23","第五人格","玩具狂奏曲 -終焉-","玩具","玩具狂奏曲","别急23","第五人格","玩具狂奏曲 -終焉-","玩具","玩具狂奏曲","别急23","第五人格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":130,"releaseDate":"20191024","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11028,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20100,"notes":{"total":205,"tap":127,"hold":26,"slide":5,"touch":43,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11028,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":20100,"notes":{"total":329,"tap":220,"hold":55,"slide":6,"touch":44,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11028,"level_id":2,"level":"13","level_value":13.3,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":614,"tap":327,"hold":134,"slide":71,"touch":47,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11028,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":20100,"notes":{"total":947,"tap":660,"hold":65,"slide":78,"touch":125,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":219,"long":false},{"id":1029,"players":7410,"title":"Titania","utTitle":null,"artist":"xi","albums":["titania","踢他奶","蓝毛萝莉","体坛","江江","江江比✌️","qqn比耶","天卫三","tinan","双色球","缇坦妮娅","踢他娘","✌","泰坦尼亚","江江比耶","✌\uD83C\uDFFB","✌️","☁\uD83D\uDC3C✌","蓝毛小萝莉","二氧化钛","踢她娘","titania","踢他奶","蓝毛萝莉","体坛","江江","江江比✌️","qqn比耶","天卫三","tinan","双色球","缇坦妮娅","踢他娘","✌","泰坦尼亚","江江比耶","✌\uD83C\uDFFB","✌️","☁\uD83D\uDC3C✌","蓝毛小萝莉","二氧化钛","踢她娘","老婆","titania","踢他奶","蓝毛萝莉","体坛","江江","江江比✌️","qqn比耶","天卫三","tinan","双色球","缇坦妮娅","踢他娘","✌","泰坦尼亚","江江比耶","✌\uD83C\uDFFB","✌️","☁\uD83D\uDC3C✌","蓝毛小萝莉","二氧化钛","踢她娘"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":212,"releaseDate":"20191024","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11029,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20100,"notes":{"total":211,"tap":147,"hold":30,"slide":6,"touch":20,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11029,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":20100,"notes":{"total":325,"tap":239,"hold":28,"slide":21,"touch":27,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11029,"level_id":2,"level":"12","level_value":12.5,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":710,"tap":496,"hold":70,"slide":55,"touch":65,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11029,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"某S氏","romVersion":20100,"notes":{"total":1031,"tap":831,"hold":45,"slide":74,"touch":50,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2171,"long":false},{"id":1030,"players":3996,"title":"BOKUTO","utTitle":null,"artist":"じーざすP feat.kradness","albums":["bokuto","→↓→↓→↓→↓","破裤头","剥裤头","波裤头","bokuto","→↓→↓→↓→↓","破裤头","剥裤头","波裤头","bokuto","→↓→↓→↓→↓","破裤头","剥裤头","波裤头"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":188,"releaseDate":"20200110","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11030,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20106,"notes":{"total":175,"tap":128,"hold":20,"slide":8,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11030,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20106,"notes":{"total":342,"tap":250,"hold":51,"slide":7,"touch":25,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11030,"level_id":2,"level":"11","level_value":11.2,"note_designer":"Jack","romVersion":20106,"notes":{"total":637,"tap":445,"hold":83,"slide":71,"touch":18,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11030,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン","romVersion":20106,"notes":{"total":1010,"tap":690,"hold":62,"slide":107,"touch":133,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":257,"long":false},{"id":1031,"players":4579,"title":"立川浄穢捕物帳","utTitle":null,"artist":"青島探偵事務所器楽捜査部B担","albums":["立川浄穢捕物帳","青岛侦探事务所","青岛市公安局","立川净秽捕物帐","立川","捕物帐","立川浄穢捕物帳","青岛侦探事务所","青岛市公安局","立川净秽捕物帐","立川","捕物帐","立川浄穢捕物帳","青岛侦探事务所","青岛市公安局","立川净秽捕物帐","立川","捕物帐"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":210,"releaseDate":"20200110","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11031,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20106,"notes":{"total":196,"tap":160,"hold":14,"slide":3,"touch":12,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11031,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20106,"notes":{"total":365,"tap":298,"hold":29,"slide":19,"touch":13,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11031,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":20106,"notes":{"total":628,"tap":504,"hold":56,"slide":40,"touch":15,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11031,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":20106,"notes":{"total":971,"tap":713,"hold":33,"slide":140,"touch":50,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":433,"long":false},{"id":1032,"players":3025,"title":"CHOCOLATE BOMB!!!!","utTitle":null,"artist":"YUC'e","albums":["chocolate bomb!!!!","cho爆炸","答辩2","巧克力炸弹","巧克力蚌埠","\uD83C\uDF6B\uD83D\uDCA3","巧克力爆","chocolate bomb!!!!","cho爆炸","答辩2","巧克力炸弹","巧克力蚌埠","\uD83C\uDF6B\uD83D\uDCA3","巧克力爆","chocolate bomb!!!!","cho爆炸","答辩2","巧克力炸弹","巧克力蚌埠","\uD83C\uDF6B\uD83D\uDCA3","巧克力爆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20200904","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11032,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":21003,"notes":{"total":174,"tap":132,"hold":3,"slide":9,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11032,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":21003,"notes":{"total":363,"tap":290,"hold":47,"slide":5,"touch":1,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11032,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"小鳥遊さん","romVersion":21003,"notes":{"total":523,"tap":316,"hold":81,"slide":28,"touch":70,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11032,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"華火職人","romVersion":21003,"notes":{"total":787,"tap":502,"hold":76,"slide":64,"touch":88,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":568,"long":false},{"id":1034,"players":2658,"title":"METEOR","utTitle":null,"artist":"DIVELA feat.初音ミク","albums":["meteor","流星","meteor","流星","meteor","流星"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20190822","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11034,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":125,"tap":104,"hold":7,"slide":2,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11034,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20100,"notes":{"total":288,"tap":237,"hold":12,"slide":7,"touch":18,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11034,"level_id":2,"level":"9","level_value":9.5,"note_designer":"Jack","romVersion":20100,"notes":{"total":415,"tap":307,"hold":23,"slide":50,"touch":14,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11034,"level_id":3,"level":"12","level_value":12.4,"note_designer":"華火職人","romVersion":20100,"notes":{"total":544,"tap":358,"hold":33,"slide":65,"touch":44,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":780,"long":false},{"id":1037,"players":1829,"title":"HOT LIMIT","utTitle":null,"artist":"T.M.Revolution [covered by 光吉猛修]","albums":["hot limit","太烧辣","热限","裸足","\uD83E\uDD75","光吉熊","热限制","红熊","阳性","捆绑滴蜡熊","火辣限制","hot limit","太烧辣","热限","裸足","\uD83E\uDD75","光吉熊","热限制","红熊","阳性","捆绑滴蜡熊","火辣限制","hot limit","太烧辣","热限","裸足","\uD83E\uDD75","光吉熊","热限制","红熊","阳性","捆绑滴蜡熊","火辣限制"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":138,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11037,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":112,"tap":96,"hold":2,"slide":1,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11037,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20000,"notes":{"total":217,"tap":165,"hold":17,"slide":9,"touch":13,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11037,"level_id":2,"level":"9","level_value":9.4,"note_designer":"華火職人","romVersion":20000,"notes":{"total":323,"tap":200,"hold":38,"slide":16,"touch":49,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11037,"level_id":3,"level":"12","level_value":12.0,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":563,"tap":432,"hold":34,"slide":30,"touch":44,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1043,"players":3969,"title":"メルト","utTitle":null,"artist":"supercell","albums":["メルト","简笔画","melt","融化","熔化","x儿卜","叉儿卜","メルト","简笔画","melt","融化","熔化","x儿卜","叉儿卜","メルト","简笔画","melt","融化","熔化","x儿卜","叉儿卜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11043,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20000,"notes":{"total":137,"tap":103,"hold":10,"slide":7,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11043,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20000,"notes":{"total":302,"tap":242,"hold":24,"slide":8,"touch":23,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11043,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"華火職人","romVersion":20000,"notes":{"total":497,"tap":368,"hold":49,"slide":39,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11043,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":20000,"notes":{"total":597,"tap":406,"hold":59,"slide":96,"touch":31,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":285,"long":false},{"id":1044,"players":4275,"title":"メルティランドナイトメア","utTitle":null,"artist":"はるまきごはん feat.初音ミク","albums":["メルティランドナイトメア","春卷饭","可爱歌","melty","meltyland","梦魇","小粉","melty land nightmare","原子能酸菜","メルティランドナイトメア","春卷饭","可爱歌","melty","meltyland","梦魇","小粉","melty land nightmare","原子能酸菜","メルティランドナイトメア","春卷饭","可爱歌","melty","meltyland","梦魇","小粉","melty land nightmare","原子能酸菜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11044,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":111,"tap":85,"hold":5,"slide":7,"touch":11,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11044,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":20000,"notes":{"total":266,"tap":212,"hold":18,"slide":8,"touch":24,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11044,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"ロシェ@ペンギン","romVersion":20000,"notes":{"total":417,"tap":291,"hold":52,"slide":29,"touch":39,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11044,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":573,"tap":440,"hold":20,"slide":78,"touch":32,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":921,"long":false},{"id":1636,"players":5487,"title":"さくゆいたいそう","utTitle":{"111636":"[奏]さくゆいたいそう"},"artist":"さくゆい","albums":["さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","女同17"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":160,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":24505,"dx":{"0":{"id":11636,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24004,"notes":{"total":163,"tap":124,"hold":16,"slide":6,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11636,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24004,"notes":{"total":335,"tap":269,"hold":24,"slide":2,"touch":26,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11636,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"佑","romVersion":24004,"notes":{"total":538,"tap":421,"hold":50,"slide":29,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11636,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"メロンポップ","romVersion":24004,"notes":{"total":681,"tap":381,"hold":129,"slide":69,"touch":41,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111636":{"id":111636,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24505,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2496,"long":false},{"id":1046,"players":2214,"title":"アディショナルメモリー","utTitle":null,"artist":"じん","albums":["アディショナルメモリー","回忆追加","额外记忆","アディショナルメモリー","回忆追加","额外记忆","アディショナルメモリー","回忆追加","额外记忆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11046,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":95,"tap":68,"hold":7,"slide":4,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11046,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":20000,"notes":{"total":257,"tap":216,"hold":13,"slide":12,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11046,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"ロシェ@ペンギン","romVersion":20000,"notes":{"total":450,"tap":365,"hold":46,"slide":10,"touch":21,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11046,"level_id":3,"level":"12","level_value":12.5,"note_designer":"シチミヘルツ","romVersion":20000,"notes":{"total":585,"tap":423,"hold":43,"slide":91,"touch":10,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1048,"players":7484,"title":"ナイト・オブ・ナイツ (Cranky Remix)","utTitle":null,"artist":"ビートまりお × Cranky","albums":["ナイト・オブ・ナイツ (cranky remix)","nok2","夜骑","咲夜","夜骑remix","盗版夜骑","夜骑2","cranky夜骑","night of knights","dx夜骑","cranky也要当夜骑","十六夜咲夜","nok","ナイト・オブ・ナイツ (cranky remix)","nok2","夜骑","咲夜","夜骑remix","盗版夜骑","夜骑2","cranky夜骑","night of knights","dx夜骑","cranky也要当夜骑","十六夜咲夜","nok","ナイト・オブ・ナイツ (cranky remix)","nok2","夜骑","咲夜","夜骑remix","盗版夜骑","夜骑2","cranky夜骑","night of knights","dx夜骑","cranky也要当夜骑","十六夜咲夜","nok"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11048,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20000,"notes":{"total":164,"tap":124,"hold":5,"slide":6,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11048,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20000,"notes":{"total":324,"tap":265,"hold":29,"slide":14,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11048,"level_id":2,"level":"10","level_value":10.4,"note_designer":"某S氏","romVersion":20000,"notes":{"total":548,"tap":386,"hold":47,"slide":27,"touch":53,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11048,"level_id":3,"level":"13","level_value":13.2,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":811,"tap":571,"hold":33,"slide":50,"touch":127,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":667,"long":false},{"id":1049,"players":5255,"title":"Bad Apple!! feat.nomico (REDALiCE Remix)","utTitle":null,"artist":"Masayoshi Minoshima × REDALiCE","albums":["bad apple!! feat.nomico (redalice remix)","小红的烂苹果","badappleremix","dx坏苹果","坏苹果3","红苹果","烂苹果remix","\uD83C\uDF4E","坏苹果remix","烂苹果3","bad apple!! feat.nomico (redalice remix)","小红的烂苹果","badappleremix","dx坏苹果","坏苹果3","红苹果","烂苹果remix","\uD83C\uDF4E","坏苹果remix","烂苹果3","bad apple!! feat.nomico (redalice remix)","小红的烂苹果","badappleremix","dx坏苹果","坏苹果3","红苹果","烂苹果remix","\uD83C\uDF4E","坏苹果remix","烂苹果3"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":170,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11049,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20105,"notes":{"total":155,"tap":127,"hold":5,"slide":2,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11049,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20105,"notes":{"total":306,"tap":226,"hold":20,"slide":11,"touch":35,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11049,"level_id":2,"level":"10","level_value":10.5,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":495,"tap":360,"hold":48,"slide":20,"touch":53,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11049,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"某S氏","romVersion":20105,"notes":{"total":714,"tap":404,"hold":47,"slide":155,"touch":92,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2029,"long":false},{"id":1050,"players":1502,"title":"Strobe♡Girl","utTitle":null,"artist":"colate","albums":["strobe♡girl","strobegirl","闪烁少女","strobe♡girl","strobegirl","闪烁少女","strobe♡girl","strobegirl","闪烁少女"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11050,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":90,"tap":59,"hold":11,"slide":3,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11050,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":20000,"notes":{"total":284,"tap":226,"hold":7,"slide":22,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11050,"level_id":2,"level":"10","level_value":10.0,"note_designer":"華火職人","romVersion":20000,"notes":{"total":381,"tap":251,"hold":52,"slide":16,"touch":35,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11050,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"小鳥遊さん","romVersion":20000,"notes":{"total":597,"tap":408,"hold":67,"slide":68,"touch":32,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1051,"players":13376,"title":"Destr0yer","utTitle":null,"artist":"削除 feat. Nikki Simmons","albums":["destr0yer","——口","界限突破","消除男","毁灭方块人","null","----------☀️◻","驱逐舰","dx削除射线","毁灭者","d0","削除射线","destroyer","削除光线","削除","destr0yer","——口","界限突破","消除男","毁灭方块人","null","----------☀️◻","驱逐舰","dx削除射线","毁灭者","d0","削除射线","destroyer","削除光线","削除","destr0yer","——口","界限突破","消除男","毁灭方块人","null","----------☀️◻","驱逐舰","dx削除射线","毁灭者","d0","削除射线","destroyer","削除光线","削除"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":90,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20000,"dxRomVersion":20000,"sdRomVersion":22006,"utRomVersion":0,"dx":{"0":{"id":11051,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20000,"notes":{"total":116,"tap":78,"hold":18,"slide":1,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11051,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20000,"notes":{"total":271,"tap":189,"hold":29,"slide":9,"touch":35,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11051,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":20000,"notes":{"total":440,"tap":285,"hold":36,"slide":37,"touch":80,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11051,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":20000,"notes":{"total":602,"tap":364,"hold":53,"slide":66,"touch":114,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1051,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":22006,"notes":{"total":163,"tap":112,"hold":32,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1051,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":22006,"notes":{"total":374,"tap":313,"hold":12,"slide":38,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1051,"level_id":2,"level":"12","level_value":12.0,"note_designer":"シチミヘルツ","romVersion":22006,"notes":{"total":537,"tap":416,"hold":69,"slide":42,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1051,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Jack","romVersion":22006,"notes":{"total":897,"tap":744,"hold":53,"slide":84,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":832,"long":false},{"id":1052,"players":3966,"title":"グリーンライツ・セレナーデ","utTitle":null,"artist":"Omoi feat. 初音ミク","albums":["グリーンライツ・セレナーデ","魔法未来2018","绿光","绿光小夜曲","墨芷","グリーンライツ・セレナーデ","魔法未来2018","绿光","绿光小夜曲","墨芷","グリーンライツ・セレナーデ","魔法未来2018","绿光","绿光小夜曲","墨芷"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190822","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11052,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":145,"tap":129,"hold":6,"slide":2,"touch":4,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11052,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20100,"notes":{"total":369,"tap":324,"hold":16,"slide":6,"touch":13,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11052,"level_id":2,"level":"10","level_value":10.3,"note_designer":"華火職人","romVersion":20100,"notes":{"total":613,"tap":458,"hold":49,"slide":23,"touch":42,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11052,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":861,"tap":568,"hold":17,"slide":137,"touch":128,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":953,"long":false},{"id":1058,"players":2861,"title":"デンパラダイム","utTitle":null,"artist":"lumo","albums":["デンパラダイム","denparadigm","木棍入侵正方形他家","电波","传送带","电波范式","デンパラダイム","denparadigm","木棍入侵正方形他家","电波","传送带","电波范式","デンパラダイム","denparadigm","木棍入侵正方形他家","电波","传送带","电波范式"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":220,"releaseDate":"20190920","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20005,"dxRomVersion":20005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11058,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20005,"notes":{"total":153,"tap":95,"hold":20,"slide":6,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11058,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":20005,"notes":{"total":316,"tap":244,"hold":32,"slide":13,"touch":11,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11058,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"小鳥遊さん","romVersion":20005,"notes":{"total":704,"tap":513,"hold":68,"slide":37,"touch":56,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11058,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":20005,"notes":{"total":812,"tap":458,"hold":112,"slide":76,"touch":155,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":798,"long":false},{"id":1059,"players":3367,"title":"骸骨楽団とリリア","utTitle":null,"artist":"トーマ","albums":["骸骨楽団とリリア","\uD83D\uDC49\uD83C\uDFFB\uD83D\uDE15\uD83D\uDC48\uD83C\uDFFB","骸骨","莉莉亚","骸骨乐团","骸骨乐团与莉莉亚","腿子","骸骨楽団とリリア","\uD83D\uDC49\uD83C\uDFFB\uD83D\uDE15\uD83D\uDC48\uD83C\uDFFB","骸骨","莉莉亚","骸骨乐团","骸骨乐团与莉莉亚","腿子","骸骨楽団とリリア","\uD83D\uDC49\uD83C\uDFFB\uD83D\uDE15\uD83D\uDC48\uD83C\uDFFB","骸骨","莉莉亚","骸骨乐团","骸骨乐团与莉莉亚","腿子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":260,"releaseDate":"20190920","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20005,"dxRomVersion":20005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11059,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20005,"notes":{"total":152,"tap":122,"hold":16,"slide":2,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11059,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20005,"notes":{"total":294,"tap":227,"hold":22,"slide":18,"touch":15,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11059,"level_id":2,"level":"11","level_value":11.3,"note_designer":"サファ太","romVersion":20005,"notes":{"total":587,"tap":446,"hold":81,"slide":22,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11059,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":20005,"notes":{"total":724,"tap":508,"hold":74,"slide":65,"touch":47,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2024,"long":false},{"id":1060,"players":2081,"title":"星屑ユートピア","utTitle":null,"artist":"otetsu","albums":["星屑ユートピア","星屑乌托邦","星屑","星屑ユートピア","星屑乌托邦","星屑","星屑ユートピア","星屑乌托邦","星屑"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":240,"releaseDate":"20190920","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20005,"dxRomVersion":20005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11060,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20005,"notes":{"total":170,"tap":144,"hold":16,"slide":1,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11060,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20005,"notes":{"total":331,"tap":292,"hold":11,"slide":6,"touch":18,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11060,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":20005,"notes":{"total":661,"tap":444,"hold":79,"slide":46,"touch":82,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11060,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"玉子豆腐","romVersion":20005,"notes":{"total":790,"tap":563,"hold":59,"slide":69,"touch":95,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":213,"long":false},{"id":1061,"players":2225,"title":"アマツキツネ","utTitle":null,"artist":"まらしぃ","albums":["アマツキツネ","天狗","兰立忠","\uD83D\uDC4D\uD83D\uDE01\uD83D\uDC4D","刻俄柏","天狐","アマツキツネ","天狗","兰立忠","\uD83D\uDC4D\uD83D\uDE01\uD83D\uDC4D","刻俄柏","天狐","アマツキツネ","天狗","兰立忠","\uD83D\uDC4D\uD83D\uDE01\uD83D\uDC4D","刻俄柏","天狐"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20190920","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20005,"dxRomVersion":20005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11061,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20005,"notes":{"total":125,"tap":86,"hold":12,"slide":8,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11061,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20005,"notes":{"total":289,"tap":220,"hold":17,"slide":10,"touch":30,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11061,"level_id":2,"level":"9","level_value":9.2,"note_designer":"Jack","romVersion":20005,"notes":{"total":489,"tap":384,"hold":30,"slide":39,"touch":26,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11061,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":20005,"notes":{"total":661,"tap":456,"hold":45,"slide":86,"touch":66,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":446,"long":false},{"id":1064,"players":3342,"title":"Little \"Sister\" Bitch","utTitle":null,"artist":"t+pazolite","albums":["little \"sister\" bitch","小妹妹臭婊子","bitch","lsb","婊子","小婊子","小婊妹","小sb","碧池","little \"sister\" bitch","小妹妹臭婊子","bitch","lsb","婊子","小婊子","小婊妹","小sb","碧池","little \"sister\" bitch","小妹妹臭婊子","bitch","lsb","婊子","小婊子","小婊妹","小sb","碧池"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":185,"releaseDate":"20191101","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20007,"dxRomVersion":20007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11064,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20007,"notes":{"total":196,"tap":157,"hold":13,"slide":4,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11064,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20007,"notes":{"total":358,"tap":267,"hold":14,"slide":7,"touch":50,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11064,"level_id":2,"level":"11","level_value":11.1,"note_designer":"華火職人","romVersion":20007,"notes":{"total":573,"tap":342,"hold":83,"slide":39,"touch":84,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11064,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"チャン@DP皆伝","romVersion":20007,"notes":{"total":866,"tap":644,"hold":25,"slide":98,"touch":66,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2031,"long":false},{"id":1065,"players":4021,"title":"Yakumo >>JOINT STRUGGLE (2019 Update)","utTitle":null,"artist":"くっちー (DARKSIDE APPROACH)","albums":["yakumo >>joint struggle (2019 update)","2019","八云一家","八云紫","压裤摸","八云","yakumo","yakumo >>joint struggle (2019 update)","2019","八云一家","八云紫","压裤摸","八云","yakumo","yakumo >>joint struggle (2019 update)","2019","八云一家","八云紫","压裤摸","八云","yakumo"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":187,"releaseDate":"20191101","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20007,"dxRomVersion":20007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11065,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20007,"notes":{"total":164,"tap":123,"hold":15,"slide":6,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11065,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20007,"notes":{"total":355,"tap":279,"hold":18,"slide":9,"touch":29,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11065,"level_id":2,"level":"11","level_value":11.1,"note_designer":"Jack","romVersion":20007,"notes":{"total":514,"tap":404,"hold":37,"slide":47,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11065,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":20007,"notes":{"total":1029,"tap":779,"hold":53,"slide":33,"touch":114,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2084,"long":false},{"id":1066,"players":1334,"title":"げきオコスティックファイナリアリティぷんぷんマスタースパーク","utTitle":null,"artist":"ARM (IOSYS)","albums":["げきオコスティックファイナリアリティぷんぷんマスタースパーク","东方曲名过长","东方名字很长","げきオコスティックファイナリアリティぷんぷんマスタースパーク","东方曲名过长","东方名字很长","げきオコスティックファイナリアリティぷんぷんマスタースパーク","东方曲名过长","东方名字很长"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20191101","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20007,"dxRomVersion":20007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11066,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20007,"notes":{"total":146,"tap":119,"hold":10,"slide":2,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11066,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20007,"notes":{"total":314,"tap":240,"hold":32,"slide":12,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11066,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":20007,"notes":{"total":388,"tap":238,"hold":74,"slide":40,"touch":16,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11066,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"某S氏","romVersion":20007,"notes":{"total":669,"tap":498,"hold":55,"slide":80,"touch":9,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1067,"players":1388,"title":"CocktaiL","utTitle":null,"artist":"XYZ","albums":["cocktail","鸡尾酒","cocktail","鸡尾酒","cocktail","鸡尾酒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20191129","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11067,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20100,"notes":{"total":123,"tap":97,"hold":11,"slide":3,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11067,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":20100,"notes":{"total":248,"tap":188,"hold":20,"slide":9,"touch":11,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11067,"level_id":2,"level":"9","level_value":9.0,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":322,"tap":183,"hold":56,"slide":33,"touch":40,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11067,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":20100,"notes":{"total":673,"tap":523,"hold":44,"slide":77,"touch":15,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1069,"players":10058,"title":"太陽系デスコ","utTitle":{"111069":"[協]太陽系デスコ"},"artist":"ナユタン星人","albums":["太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也","太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也","太陽系デスコ","太阳系disco","\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC47\uD83C\uDFFB\uD83D\uDE10\uD83D\uDC46\uD83C\uDFFB","太阳系","太田顺也"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":25000,"dx":{"0":{"id":11069,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":184,"tap":151,"hold":18,"slide":2,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11069,"level_id":1,"level":"6","level_value":6.7,"note_designer":"-","romVersion":20100,"notes":{"total":330,"tap":243,"hold":44,"slide":4,"touch":19,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11069,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":20100,"notes":{"total":500,"tap":373,"hold":39,"slide":48,"touch":24,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11069,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":713,"tap":466,"hold":28,"slide":108,"touch":98,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111069":{"id":111069,"level_id":0,"level":"11+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":386,"tap":243,"hold":15,"slide":52,"touch":20,"break_":56},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":844,"long":false},{"id":1070,"players":1564,"title":"だからパンを焼いたんだ","utTitle":null,"artist":"あわのあゆむ","albums":["だからパンを焼いたんだ","烤面包","\uD83C\uDF5E","初音烤面包","烧面包","面包","铜锣烧","白葱烤面包","烧","だからパンを焼いたんだ","烤面包","\uD83C\uDF5E","初音烤面包","烧面包","面包","铜锣烧","白葱烤面包","烧","だからパンを焼いたんだ","烤面包","\uD83C\uDF5E","初音烤面包","烧面包","面包","铜锣烧","白葱烤面包","烧"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20191129","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11070,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":136,"tap":85,"hold":19,"slide":2,"touch":25,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11070,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":20100,"notes":{"total":310,"tap":228,"hold":32,"slide":14,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11070,"level_id":2,"level":"9","level_value":9.3,"note_designer":"畳返し","romVersion":20100,"notes":{"total":429,"tap":283,"hold":67,"slide":40,"touch":31,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11070,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":801,"tap":608,"hold":17,"slide":97,"touch":66,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1073,"players":2928,"title":"アカリがやってきたぞっ","utTitle":null,"artist":"GYARI","albums":["アカリがやってきたぞっ","来了哦","akari","来了哟","阿卡莉","绁星灯","akari来了哦","来了","阿卡丽","アカリがやってきたぞっ","来了哦","akari","来了哟","阿卡莉","绁星灯","akari来了哦","来了","阿卡丽","アカリがやってきたぞっ","来了哦","akari","来了哟","阿卡莉","绁星灯","akari来了哦","来了","阿卡丽"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":136,"releaseDate":"20190726","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20002,"dxRomVersion":20002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11073,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20002,"notes":{"total":175,"tap":145,"hold":10,"slide":3,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11073,"level_id":1,"level":"6","level_value":6.7,"note_designer":"-","romVersion":20002,"notes":{"total":315,"tap":252,"hold":22,"slide":14,"touch":15,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11073,"level_id":2,"level":"10","level_value":10.3,"note_designer":"華火職人","romVersion":20002,"notes":{"total":560,"tap":347,"hold":80,"slide":59,"touch":51,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11073,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Moon Strix","romVersion":20002,"notes":{"total":632,"tap":353,"hold":52,"slide":119,"touch":97,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":841,"long":false},{"id":1075,"players":3718,"title":"プナイプナイせんそう","utTitle":null,"artist":"立秋 feat.ちょこ","albums":["プナイプナイせんそう","噗奶","布乃布乃万岁","扑领姨","噗奶噗奶","punai","pnpn","punaipunai","プナイプナイせんそう","噗奶","布乃布乃万岁","扑领姨","噗奶噗奶","punai","pnpn","punaipunai","プナイプナイせんそう","噗奶","布乃布乃万岁","扑领姨","噗奶噗奶","punai","pnpn","punaipunai"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":271,"releaseDate":"20200110","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11075,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":20100,"notes":{"total":223,"tap":146,"hold":31,"slide":2,"touch":28,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11075,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20100,"notes":{"total":344,"tap":230,"hold":18,"slide":14,"touch":61,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11075,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":584,"tap":457,"hold":20,"slide":20,"touch":54,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11075,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":803,"tap":457,"hold":34,"slide":114,"touch":143,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1077,"players":1613,"title":"デビル☆アイドル","utTitle":null,"artist":"アイラ(CV:三森すずこ)シマ(CV:井口裕香)はな(CV:花澤香菜)","albums":["デビル☆アイドル","devil","devil idol","恶魔偶像","飞天小女警","デビル☆アイドル","devil","devil idol","恶魔偶像","飞天小女警","デビル☆アイドル","devil","devil idol","恶魔偶像","飞天小女警"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":180,"releaseDate":"20190906","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11077,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20106,"notes":{"total":92,"tap":69,"hold":5,"slide":6,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11077,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20106,"notes":{"total":253,"tap":209,"hold":10,"slide":5,"touch":7,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11077,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"シチミヘルツ","romVersion":20106,"notes":{"total":315,"tap":215,"hold":52,"slide":10,"touch":23,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11077,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":20106,"notes":{"total":439,"tap":271,"hold":68,"slide":58,"touch":28,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1078,"players":1971,"title":"quiet room","utTitle":null,"artist":"有機酸","albums":["quiet room","男同2","静屋","silentroom","qr","quiet room","男同2","静屋","silentroom","qr","quiet room","男同2","静屋","silentroom","qr"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":93,"releaseDate":"20191129","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11078,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":20100,"notes":{"total":148,"tap":121,"hold":5,"slide":2,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11078,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":20100,"notes":{"total":183,"tap":132,"hold":15,"slide":9,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11078,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":257,"tap":132,"hold":23,"slide":50,"touch":46,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11078,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":521,"tap":324,"hold":30,"slide":92,"touch":72,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1080,"players":2504,"title":"Jump!! Jump!! Jump!!","utTitle":null,"artist":"曲:宮崎誠/歌:オンゲキシューターズ","albums":["jump!! jump!! jump!!","跳跳跳","jump","芳文跳","跳三下","元气少女蹦蹦蹦","三蹦子","jump!! jump!! jump!!","跳跳跳","jump","芳文跳","跳三下","元气少女蹦蹦蹦","三蹦子","jump!! jump!! jump!!","跳跳跳","jump","芳文跳","跳三下","元气少女蹦蹦蹦","三蹦子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":183,"releaseDate":"20190726","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20106,"dxRomVersion":20106,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11080,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20106,"notes":{"total":156,"tap":120,"hold":15,"slide":4,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11080,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":20106,"notes":{"total":338,"tap":253,"hold":43,"slide":11,"touch":17,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11080,"level_id":2,"level":"9","level_value":9.5,"note_designer":"サファ太","romVersion":20106,"notes":{"total":480,"tap":328,"hold":64,"slide":20,"touch":62,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11080,"level_id":3,"level":"12","level_value":12.0,"note_designer":"ロシェ@ペンギン","romVersion":20106,"notes":{"total":574,"tap":352,"hold":61,"slide":90,"touch":59,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2561,"long":false},{"id":1081,"players":2767,"title":"サンバランド","utTitle":null,"artist":"SAMBA MASTER 佐藤","albums":["サンバランド","仰卧起坐","桑巴","佐藤","面具男","サンバランド","仰卧起坐","桑巴","佐藤","面具男","サンバランド","仰卧起坐","桑巴","佐藤","面具男"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":132,"releaseDate":"20200110","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":23002,"utRomVersion":0,"dx":{"0":{"id":11081,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":112,"tap":88,"hold":6,"slide":4,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11081,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":20100,"notes":{"total":294,"tap":233,"hold":36,"slide":3,"touch":12,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11081,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":20100,"notes":{"total":502,"tap":378,"hold":51,"slide":42,"touch":12,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11081,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":700,"tap":526,"hold":88,"slide":41,"touch":24,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1081,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23002,"notes":{"total":160,"tap":140,"hold":5,"slide":4,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1081,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23002,"notes":{"total":275,"tap":232,"hold":23,"slide":8,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1081,"level_id":2,"level":"11","level_value":11.0,"note_designer":"隅田川星人","romVersion":23002,"notes":{"total":488,"tap":365,"hold":74,"slide":33,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1081,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":637,"tap":392,"hold":6,"slide":201,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1083,"players":2443,"title":"サヨナラチェーンソー","utTitle":null,"artist":"くらげP","albums":["サヨナラチェーンソー","再见电锯","电锯缘兔","电锯人","电锯","サヨナラチェーンソー","再见电锯","电锯缘兔","电锯人","电锯","サヨナラチェーンソー","再见电锯","电锯缘兔","电锯人","电锯"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":154,"releaseDate":"20191220","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11083,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":152,"tap":112,"hold":12,"slide":7,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11083,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":20100,"notes":{"total":336,"tap":287,"hold":9,"slide":11,"touch":21,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11083,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":534,"tap":357,"hold":85,"slide":43,"touch":35,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11083,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":774,"tap":507,"hold":79,"slide":107,"touch":71,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":736,"long":false},{"id":1084,"players":2085,"title":"イカサマライフゲイム","utTitle":null,"artist":"kemu","albums":["イカサマライフゲイム","预言小丑","人生游戏","lifegame","虚伪人生游戏","骗人的人生游戏","骗人的lifegame","作弊生存游戏","イカサマライフゲイム","预言小丑","人生游戏","lifegame","虚伪人生游戏","骗人的人生游戏","骗人的lifegame","作弊生存游戏","イカサマライフゲイム","预言小丑","人生游戏","lifegame","虚伪人生游戏","骗人的人生游戏","骗人的lifegame","作弊生存游戏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20190719","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11084,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":181,"tap":145,"hold":17,"slide":5,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11084,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20100,"notes":{"total":372,"tap":294,"hold":23,"slide":15,"touch":27,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11084,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"華火職人","romVersion":20100,"notes":{"total":645,"tap":467,"hold":51,"slide":42,"touch":61,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11084,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"すきやき奉行","romVersion":20100,"notes":{"total":854,"tap":593,"hold":51,"slide":114,"touch":65,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":132,"long":false},{"id":1085,"players":10553,"title":"Halcyon","utTitle":null,"artist":"xi","albums":["halcyon","翡翠鸡","sd\uD83D\uDC14","翡鸡杯","脆皮鸡","dx翡翠鸡","浅鸽处刑曲","翡翠鸟","\uD83D\uDC14","halcyon","翡翠鸡","sd\uD83D\uDC14","翡鸡杯","脆皮鸡","dx翡翠鸡","浅鸽处刑曲","翡翠鸟","\uD83D\uDC14","halcyon","翡翠鸡","sd\uD83D\uDC14","翡鸡杯","脆皮鸡","dx翡翠鸡","浅鸽处刑曲","翡翠鸟","\uD83D\uDC14"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"ゲームバラエティ","bpm":191,"releaseDate":"20190719","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":23001,"utRomVersion":0,"dx":{"0":{"id":11085,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":153,"tap":105,"hold":16,"slide":2,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11085,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20100,"notes":{"total":407,"tap":304,"hold":34,"slide":14,"touch":47,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11085,"level_id":2,"level":"11","level_value":11.4,"note_designer":"うさぎランドリー","romVersion":20100,"notes":{"total":634,"tap":419,"hold":54,"slide":63,"touch":61,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11085,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ぴちネコ","romVersion":20100,"notes":{"total":1007,"tap":700,"hold":53,"slide":83,"touch":154,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1085,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":242,"tap":214,"hold":12,"slide":4,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1085,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23001,"notes":{"total":446,"tap":382,"hold":30,"slide":18,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1085,"level_id":2,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":23001,"notes":{"total":720,"tap":559,"hold":73,"slide":65,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1085,"level_id":3,"level":"14","level_value":14.3,"note_designer":"ロシアンブラック","romVersion":23001,"notes":{"total":1080,"tap":849,"hold":66,"slide":116,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":173,"long":false},{"id":1086,"players":6653,"title":"だれかの心臓になれたなら","utTitle":null,"artist":"ユリイ・カノン feat.GUMI","albums":["だれかの心臓になれたなら","如果能成为谁的心脏的话","如果能成为谁的心脏","心脏","だれかの心臓になれたなら","如果能成为谁的心脏的话","如果能成为谁的心脏","心脏","だれかの心臓になれたなら","如果能成为谁的心脏的话","如果能成为谁的心脏","心脏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20190822","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11086,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":161,"tap":141,"hold":7,"slide":2,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11086,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":20100,"notes":{"total":289,"tap":231,"hold":27,"slide":11,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11086,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":20100,"notes":{"total":492,"tap":318,"hold":34,"slide":68,"touch":61,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11086,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"サファ太","romVersion":20100,"notes":{"total":729,"tap":496,"hold":49,"slide":76,"touch":97,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":923,"long":false},{"id":1087,"players":3298,"title":"幾望の月","utTitle":null,"artist":"なきゃむりゃ","albums":["幾望の月","几望月","几望","几望之月","望月","几望的月","幾望の月","几望月","几望","几望之月","望月","几望的月","幾望の月","几望月","几望","几望之月","望月","几望的月"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":276,"releaseDate":"20191220","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11087,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20100,"notes":{"total":169,"tap":130,"hold":26,"slide":5,"touch":5,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11087,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":20100,"notes":{"total":343,"tap":294,"hold":12,"slide":12,"touch":17,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11087,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ぴちネコ","romVersion":20100,"notes":{"total":552,"tap":382,"hold":63,"slide":27,"touch":56,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11087,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":755,"tap":610,"hold":39,"slide":37,"touch":43,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":840,"long":false},{"id":1088,"players":4265,"title":"39みゅーじっく!","utTitle":null,"artist":"みきとP","albums":["39みゅーじっく!","39music","39歌","39","三玖","39音乐","39みゅーじっく!","39music","39歌","39","三玖","39音乐","39みゅーじっく!","39music","39歌","39","三玖","39音乐"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20190822","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":true,"jp":true,"m2l":false,"firstRomVersion":20100,"dxRomVersion":20100,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11088,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":20100,"notes":{"total":118,"tap":77,"hold":8,"slide":4,"touch":22,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11088,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":20100,"notes":{"total":242,"tap":187,"hold":11,"slide":8,"touch":13,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11088,"level_id":2,"level":"9","level_value":9.3,"note_designer":"小鳥遊さん","romVersion":20100,"notes":{"total":433,"tap":301,"hold":40,"slide":27,"touch":44,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11088,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"シチミヘルツ","romVersion":20100,"notes":{"total":574,"tap":367,"hold":24,"slide":68,"touch":101,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1089,"players":6445,"title":"STEEL TRANSONIC","utTitle":null,"artist":"BlackY vs. WAiKURO","albums":["steel transonic","钢铁音速","钢铁回音","超音速钢","粉毛机甲","机甲娘","st","刚铁鸡娘","超音钢","钢铁超音速","\uD83D\uDC14","钢铁机姬","钢铁机娘","机娘","钢铁鸡娘","粉红机娘","红色有角三倍速","钢跨音速","粉毛机娘","铁音速","steel transonic","钢铁音速","钢铁回音","超音速钢","粉毛机甲","机甲娘","st","刚铁鸡娘","超音钢","钢铁超音速","\uD83D\uDC14","钢铁机姬","钢铁机娘","机娘","钢铁鸡娘","粉红机娘","红色有角三倍速","钢跨音速","粉毛机娘","铁音速","steel transonic","钢铁音速","钢铁回音","超音速钢","粉毛机甲","机甲娘","st","刚铁鸡娘","超音钢","钢铁超音速","\uD83D\uDC14","钢铁机姬","钢铁机娘","机娘","钢铁鸡娘","粉红机娘","红色有角三倍速","钢跨音速","粉毛机娘","铁音速"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":236,"releaseDate":"20200320","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11089,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":21001,"notes":{"total":222,"tap":188,"hold":7,"slide":7,"touch":9,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11089,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":21001,"notes":{"total":411,"tap":310,"hold":38,"slide":17,"touch":32,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11089,"level_id":2,"level":"13","level_value":13.0,"note_designer":"シチミヘルツ","romVersion":21001,"notes":{"total":704,"tap":548,"hold":88,"slide":32,"touch":3,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11089,"level_id":3,"level":"14","level_value":14.3,"note_designer":"小鳥遊さん","romVersion":21001,"notes":{"total":1003,"tap":687,"hold":97,"slide":85,"touch":77,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1090,"players":2774,"title":"Flashkick","utTitle":null,"artist":"Yooh","albums":["flashkick","黄色闪光","滑铲","闪电旋风踢","闪电旋风劈"," 闪电旋风劈","flash","闪击","闪踢","flashkick","黄色闪光","滑铲","闪电旋风踢","闪电旋风劈"," 闪电旋风劈","flash","闪击","闪踢","flashkick","黄色闪光","滑铲","闪电旋风踢","闪电旋风劈"," 闪电旋风劈","flash","闪击","闪踢"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20200320","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11090,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":21001,"notes":{"total":179,"tap":136,"hold":8,"slide":7,"touch":24,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11090,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":21001,"notes":{"total":306,"tap":219,"hold":24,"slide":18,"touch":39,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11090,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":21001,"notes":{"total":579,"tap":392,"hold":66,"slide":71,"touch":27,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11090,"level_id":3,"level":"13","level_value":13.2,"note_designer":"華火職人","romVersion":21001,"notes":{"total":798,"tap":504,"hold":62,"slide":88,"touch":99,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1091,"players":2517,"title":"Stardust Memories","utTitle":null,"artist":"Maozon","albums":["stardust memories","星尘记忆","sm","星尘回忆","\uD83C\uDF0D","\uD83C\uDF0F","stardust memories","星尘记忆","sm","星尘回忆","\uD83C\uDF0D","\uD83C\uDF0F","stardust memories","星尘记忆","sm","星尘回忆","\uD83C\uDF0D","\uD83C\uDF0F"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20200626","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11091,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":21001,"notes":{"total":149,"tap":87,"hold":11,"slide":10,"touch":38,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11091,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":21001,"notes":{"total":245,"tap":155,"hold":46,"slide":22,"touch":12,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11091,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"華火職人","romVersion":21001,"notes":{"total":450,"tap":300,"hold":35,"slide":40,"touch":38,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11091,"level_id":3,"level":"13","level_value":13.0,"note_designer":"シチミヘルツ","romVersion":21001,"notes":{"total":692,"tap":437,"hold":86,"slide":74,"touch":72,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1092,"players":3425,"title":"My My My","utTitle":null,"artist":"C-Show","albums":["my my my","我我我","mymymy","mai mai mai","买买买","我的我的我的","麦麦麦","my my my","我我我","mymymy","mai mai mai","买买买","我的我的我的","麦麦麦","my my my","我我我","mymymy","mai mai mai","买买买","我的我的我的","麦麦麦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20200626","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11092,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":21001,"notes":{"total":180,"tap":148,"hold":11,"slide":3,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11092,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":21001,"notes":{"total":297,"tap":227,"hold":40,"slide":8,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11092,"level_id":2,"level":"11","level_value":11.0,"note_designer":"華火職人","romVersion":21001,"notes":{"total":507,"tap":333,"hold":46,"slide":35,"touch":66,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11092,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":21001,"notes":{"total":816,"tap":581,"hold":79,"slide":67,"touch":65,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1093,"players":4090,"title":"UniTas","utTitle":null,"artist":"Masahiro \"Godspeed\" Aoki VS Kai","albums":["unitas","吉他女神","电吉他","吉他神","吉他姐","油腻汰渍","有你他死","unitas","吉他女神","电吉他","吉他神","吉他姐","油腻汰渍","有你他死","unitas","吉他女神","电吉他","吉他神","吉他姐","油腻汰渍","有你他死"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11093,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":20105,"notes":{"total":238,"tap":189,"hold":21,"slide":14,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11093,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":20105,"notes":{"total":431,"tap":329,"hold":29,"slide":22,"touch":36,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11093,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":20105,"notes":{"total":762,"tap":586,"hold":71,"slide":63,"touch":25,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11093,"level_id":3,"level":"14","level_value":14.4,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":1173,"tap":887,"hold":63,"slide":116,"touch":37,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1094,"players":3834,"title":"ここからはじまるプロローグ。","utTitle":null,"artist":"ああああ","albums":["ここからはじまるプロローグ。","从此开始的序章","从现在开始的序曲","小狐狸","福瑞举剑","prologue","小生煎","口口一夕","兽太","福瑞小英雄","猫圣剑","电子福瑞","由此开始的序章","序章","福瑞控","小圣剑","小福瑞","像素福瑞","像素圣剑","圣剑0","prologue starting","福瑞勇者","狐狸剑","松鼠","序言","ここからはじまるプロローグ。","从此开始的序章","从现在开始的序曲","小狐狸","福瑞举剑","prologue","小生煎","口口一夕","兽太","福瑞小英雄","猫圣剑","电子福瑞","由此开始的序章","序章","福瑞控","小圣剑","小福瑞","像素福瑞","像素圣剑","圣剑0","prologue starting","福瑞勇者","狐狸剑","松鼠","序言","ここからはじまるプロローグ。","从此开始的序章","从现在开始的序曲","小狐狸","福瑞举剑","prologue","小生煎","口口一夕","兽太","福瑞小英雄","猫圣剑","电子福瑞","由此开始的序章","序章","福瑞控","小圣剑","小福瑞","像素福瑞","像素圣剑","圣剑0","prologue starting","福瑞勇者","狐狸剑","松鼠","序言","福瑞救老婆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11094,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20105,"notes":{"total":131,"tap":84,"hold":17,"slide":5,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11094,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20105,"notes":{"total":264,"tap":169,"hold":41,"slide":12,"touch":35,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11094,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":20105,"notes":{"total":477,"tap":354,"hold":36,"slide":16,"touch":47,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11094,"level_id":3,"level":"13","level_value":13.4,"note_designer":"華火職人","romVersion":20105,"notes":{"total":642,"tap":448,"hold":56,"slide":46,"touch":62,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1082,"long":false},{"id":1095,"players":5262,"title":"絡めトリック利己ライザー","utTitle":null,"artist":"じーざす(ワンダフル☆オポチュニティ!)feat.Kradness","albums":["絡めトリック利己ライザー","绿头人","络","华代主题曲","利己","dx+主题曲","络利己","絡めトリック利己ライザー","绿头人","络","华代主题曲","利己","dx+主题曲","络利己","絡めトリック利己ライザー","绿头人","络","华代主题曲","利己","dx+主题曲","络利己"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11095,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":20105,"notes":{"total":198,"tap":159,"hold":17,"slide":4,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11095,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":20105,"notes":{"total":353,"tap":258,"hold":33,"slide":6,"touch":40,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11095,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":529,"tap":342,"hold":82,"slide":39,"touch":45,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11095,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"小鳥遊さん","romVersion":20105,"notes":{"total":771,"tap":467,"hold":165,"slide":43,"touch":67,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1096,"players":5261,"title":"モ°ルモ°ル","utTitle":null,"artist":"sasakure.UK","albums":["モ°ルモ°ル","morumoru","毛儿","么么","蹦蹦炸弹","毛儿毛儿","毛肚儿毛肚儿","モ°ルモ°ル","morumoru","毛儿","么么","蹦蹦炸弹","毛儿毛儿","毛肚儿毛肚儿","モ°ルモ°ル","morumoru","毛儿","么么","蹦蹦炸弹","毛儿毛儿","毛肚儿毛肚儿"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":256,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11096,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":20105,"notes":{"total":240,"tap":200,"hold":10,"slide":4,"touch":22,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11096,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":20105,"notes":{"total":390,"tap":295,"hold":30,"slide":22,"touch":31,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11096,"level_id":2,"level":"12","level_value":12.2,"note_designer":"小鳥遊さん","romVersion":20105,"notes":{"total":708,"tap":553,"hold":39,"slide":15,"touch":57,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11096,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":20105,"notes":{"total":915,"tap":622,"hold":50,"slide":107,"touch":106,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2193,"long":false},{"id":1097,"players":3973,"title":"ブレインジャックシンドローム","utTitle":null,"artist":"かいりきベア feat.利香","albums":["ブレインジャックシンドローム","墨镜女歌手","利香","吉他","夜空梅露","话筒姐","头脑风暴","杰克逊综合症","头脑风暴综合症","内内内","brainjack syndrome","拽女唱歌","墨镜女","ブレインジャックシンドローム","墨镜女歌手","利香","吉他","夜空梅露","话筒姐","头脑风暴","杰克逊综合症","头脑风暴综合症","内内内","brainjack syndrome","拽女唱歌","墨镜女","ブレインジャックシンドローム","墨镜女歌手","利香","吉他","夜空梅露","话筒姐","头脑风暴","杰克逊综合症","头脑风暴综合症","内内内","brainjack syndrome","拽女唱歌","墨镜女"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":204,"releaseDate":"20200320","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11097,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21002,"notes":{"total":184,"tap":140,"hold":20,"slide":8,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11097,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21002,"notes":{"total":340,"tap":261,"hold":31,"slide":18,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11097,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"サファ太","romVersion":21002,"notes":{"total":637,"tap":426,"hold":77,"slide":25,"touch":83,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11097,"level_id":3,"level":"13","level_value":13.3,"note_designer":"シチミッピー","romVersion":21002,"notes":{"total":1018,"tap":747,"hold":34,"slide":150,"touch":30,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1098,"players":4438,"title":"共鳴","utTitle":null,"artist":"SADA 2Futureanthem feat. ellie","albums":["共鳴","共鸣","共鳴","共鸣","共鳴","共鸣"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":174,"releaseDate":"20200626","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11098,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21002,"notes":{"total":146,"tap":103,"hold":13,"slide":9,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11098,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21002,"notes":{"total":276,"tap":197,"hold":32,"slide":14,"touch":32,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11098,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":489,"tap":354,"hold":70,"slide":38,"touch":22,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11098,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Safata.Hz","romVersion":21002,"notes":{"total":669,"tap":472,"hold":34,"slide":87,"touch":52,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1099,"players":3660,"title":"Ututu","utTitle":null,"artist":"中山真斗","albums":["ututu","乌班图","胡图图","Ubuntu","ututu","乌班图","胡图图","Ubuntu","ututu","乌班图","胡图图","Ubuntu"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":172,"releaseDate":"20200626","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11099,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21002,"notes":{"total":151,"tap":115,"hold":9,"slide":7,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11099,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21002,"notes":{"total":311,"tap":230,"hold":33,"slide":12,"touch":34,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11099,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":419,"tap":291,"hold":89,"slide":26,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11099,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ぴちネコ","romVersion":21002,"notes":{"total":633,"tap":349,"hold":49,"slide":89,"touch":123,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1100,"players":5722,"title":"シエルブルーマルシェ","utTitle":null,"artist":"OSTER project feat. かなたん","albums":["シエルブルーマルシェ","dx白绯色","星星歌","魔法食谱","蓝天市场","眼镜妹","青空市场","小厨娘","做饭","ciel bleu marché","シエルブルーマルシェ","dx白绯色","星星歌","魔法食谱","蓝天市场","眼镜妹","青空市场","小厨娘","做饭","ciel bleu marché","シエルブルーマルシェ","dx白绯色","星星歌","魔法食谱","蓝天市场","眼镜妹","青空市场","小厨娘","做饭","ciel bleu marché"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20200320","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11100,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21002,"notes":{"total":123,"tap":70,"hold":22,"slide":4,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11100,"level_id":1,"level":"7","level_value":7.4,"note_designer":"","romVersion":21002,"notes":{"total":275,"tap":210,"hold":27,"slide":13,"touch":23,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11100,"level_id":2,"level":"10","level_value":10.4,"note_designer":"某S氏","romVersion":21002,"notes":{"total":394,"tap":251,"hold":67,"slide":31,"touch":38,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11100,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":565,"tap":370,"hold":70,"slide":81,"touch":27,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11100,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":423,"tap":198,"hold":1,"slide":216,"touch":1,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1101,"players":4933,"title":"GRÄNDIR","utTitle":null,"artist":"Rigel Theatre feat. ミーウェル","albums":["grändir","德文","瓜点","gr","grandir","甘地","grändir","德文","瓜点","gr","grandir","甘地","grändir","德文","瓜点","gr","grandir","甘地"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20200807","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11101,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21003,"notes":{"total":157,"tap":109,"hold":10,"slide":8,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11101,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21003,"notes":{"total":376,"tap":259,"hold":38,"slide":18,"touch":45,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11101,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":21003,"notes":{"total":571,"tap":394,"hold":46,"slide":46,"touch":71,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11101,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":21003,"notes":{"total":813,"tap":500,"hold":29,"slide":123,"touch":124,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2307,"long":false},{"id":1102,"players":9451,"title":"封焔の135秒","utTitle":null,"artist":"大国奏音","albums":["封焔の135秒","激烈的战斗场面","封焰的135秒","大战老头","封焰的135","封焰135","老头大战少女","135","橘优羽","封烟","封焰的2分15秒","封焰","135秒","封焔の135秒","激烈的战斗场面","封焰的135秒","大战老头","封焰的135","封焰135","老头大战少女","135","橘优羽","封烟","封焰的2分15秒","封焰","135秒","封焔の135秒","激烈的战斗场面","封焰的135秒","大战老头","封焰的135","封焰135","老头大战少女","135","橘优羽","封烟","封焰的2分15秒","封焰","135秒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20200807","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11102,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21003,"notes":{"total":196,"tap":162,"hold":14,"slide":2,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11102,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":21003,"notes":{"total":427,"tap":306,"hold":21,"slide":25,"touch":39,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11102,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":21003,"notes":{"total":609,"tap":476,"hold":58,"slide":40,"touch":12,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11102,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"7.3GHz vs Phoenix","romVersion":21003,"notes":{"total":1092,"tap":786,"hold":57,"slide":81,"touch":33,"break_":135},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2050,"long":false},{"id":1103,"players":10228,"title":"渦状銀河のシンフォニエッタ","utTitle":null,"artist":"山本真央樹","albums":["渦状銀河のシンフォニエッタ","涡状银河交响曲","涡状马桶","涡状银河","抽水马桶","银河","涡状台风","冲水马桶","马桶","\uD83D\uDEBD","涡状伊岛","涡状银河的小交响曲","漩涡马桶","渦状銀河のシンフォニエッタ","涡状银河交响曲","涡状马桶","涡状银河","抽水马桶","银河","涡状台风","冲水马桶","马桶","\uD83D\uDEBD","涡状伊岛","涡状银河的小交响曲","漩涡马桶","渦状銀河のシンフォニエッタ","涡状银河交响曲","涡状马桶","涡状银河","抽水马桶","银河","涡状台风","冲水马桶","马桶","\uD83D\uDEBD","涡状伊岛","涡状银河的小交响曲","漩涡马桶"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":238,"releaseDate":"20200807","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":24006,"utRomVersion":0,"dx":{"0":{"id":11103,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21003,"notes":{"total":151,"tap":101,"hold":15,"slide":7,"touch":18,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11103,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21003,"notes":{"total":385,"tap":247,"hold":39,"slide":30,"touch":56,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11103,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"華火職人","romVersion":21003,"notes":{"total":558,"tap":385,"hold":78,"slide":46,"touch":9,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11103,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"ぴちネコ","romVersion":21003,"notes":{"total":1214,"tap":801,"hold":87,"slide":66,"touch":238,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1103,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":24006,"notes":{"total":227,"tap":183,"hold":25,"slide":8,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1103,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":24006,"notes":{"total":379,"tap":321,"hold":34,"slide":10,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1103,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Luxizhel","romVersion":24006,"notes":{"total":624,"tap":464,"hold":67,"slide":47,"touch":0,"break_":46},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1103,"level_id":3,"level":"14","level_value":14.3,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":931,"tap":680,"hold":71,"slide":159,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2876,"long":false},{"id":1104,"players":2616,"title":"ヤミツキ","utTitle":null,"artist":"MARETU","albums":["ヤミツキ","痴迷","ヤミツキ","痴迷","ヤミツキ","痴迷"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":208,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11104,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":199,"tap":145,"hold":16,"slide":4,"touch":23,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11104,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":20105,"notes":{"total":277,"tap":152,"hold":78,"slide":9,"touch":34,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11104,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":20105,"notes":{"total":502,"tap":315,"hold":70,"slide":37,"touch":70,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11104,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":20105,"notes":{"total":724,"tap":499,"hold":57,"slide":87,"touch":70,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2170,"long":false},{"id":1105,"players":2967,"title":"ワードワードワード","utTitle":null,"artist":"syudou","albums":["ワードワードワード","hudelou","豪华海底潭","touch海底谭","word word word","二位一体","旋转胡德路","哇多哇多哇多","touch海底潭","dx海底谭","dx海底潭","www","ワードワードワード","hudelou","豪华海底潭","touch海底谭","word word word","二位一体","旋转胡德路","哇多哇多哇多","touch海底潭","dx海底谭","dx海底潭","www","ワードワードワード","hudelou","豪华海底潭","touch海底谭","word word word","二位一体","旋转胡德路","哇多哇多哇多","touch海底潭","dx海底谭","dx海底潭","www"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":137,"releaseDate":"20200619","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11105,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21001,"notes":{"total":195,"tap":156,"hold":20,"slide":1,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11105,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21001,"notes":{"total":258,"tap":162,"hold":28,"slide":14,"touch":50,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11105,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"サファ太","romVersion":21001,"notes":{"total":522,"tap":386,"hold":76,"slide":29,"touch":8,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11105,"level_id":3,"level":"13","level_value":13.4,"note_designer":"小鳥遊さん","romVersion":21001,"notes":{"total":890,"tap":676,"hold":56,"slide":56,"touch":72,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1106,"players":7641,"title":"Valsqotch","utTitle":null,"artist":"owl*tree feat.chi*tree","albums":["valsqotch","征服","do_while","金色奶龙","别急7","kop1","迪拜熊","大金熊","熊大","熊熊","金库玛","银币","金色滴蜡熊","金熊","黄金滴蜡熊","世界华尔兹","金夏阳","黄金熊","valsqotch","征服","do_while","金色奶龙","别急7","kop1","迪拜熊","大金熊","熊大","熊熊","金库玛","银币","金色滴蜡熊","金熊","黄金滴蜡熊","世界华尔兹","金夏阳","黄金熊","给我口","jack仇恨教育2","valsqotch","征服","do_while","金色奶龙","别急7","kop1","迪拜熊","大金熊","熊大","熊熊","金库玛","银币","金色滴蜡熊","金熊","黄金滴蜡熊","世界华尔兹","金夏阳","黄金熊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":125,"releaseDate":"20200214","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11106,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":20105,"notes":{"total":281,"tap":189,"hold":44,"slide":2,"touch":35,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11106,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"","romVersion":20105,"notes":{"total":470,"tap":377,"hold":35,"slide":17,"touch":24,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11106,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":20105,"notes":{"total":853,"tap":649,"hold":55,"slide":62,"touch":50,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11106,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"jacK on Phoenix","romVersion":20105,"notes":{"total":1194,"tap":895,"hold":37,"slide":94,"touch":131,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2165,"long":false},{"id":1107,"players":2104,"title":"最強 the サマータイム!!!!!","utTitle":null,"artist":"曲:村カワ基成/歌:オンゲキシューターズ","albums":["最強 the サマータイム!!!!!","泳装","最强","最強 the サマータイム!!!!!","泳装","最强","最強 the サマータイム!!!!!","泳装","最强"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":178,"releaseDate":"20200220","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11107,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21003,"notes":{"total":206,"tap":161,"hold":23,"slide":5,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11107,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21003,"notes":{"total":369,"tap":272,"hold":35,"slide":15,"touch":39,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11107,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"華火職人","romVersion":21003,"notes":{"total":660,"tap":517,"hold":39,"slide":28,"touch":51,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11107,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":21003,"notes":{"total":766,"tap":516,"hold":27,"slide":125,"touch":49,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2077,"long":false},{"id":1108,"players":1759,"title":"UTAKATA","utTitle":null,"artist":"曲:ゆよゆっぺ/歌:九條 楓(CV:佳村 はるか)","albums":["utakata","亚索","拔刀","泡沫","维吉尔","utakata","亚索","拔刀","泡沫","维吉尔","utakata","亚索","拔刀","泡沫","维吉尔"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":185,"releaseDate":"20200220","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11108,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21003,"notes":{"total":165,"tap":106,"hold":29,"slide":4,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11108,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21003,"notes":{"total":286,"tap":218,"hold":38,"slide":7,"touch":14,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11108,"level_id":2,"level":"9","level_value":9.4,"note_designer":"KTM","romVersion":21003,"notes":{"total":490,"tap":383,"hold":38,"slide":25,"touch":17,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11108,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"シチミヘルツ","romVersion":21003,"notes":{"total":680,"tap":508,"hold":34,"slide":93,"touch":14,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2108,"long":false},{"id":1109,"players":2161,"title":"タテマエと本心の大乱闘","utTitle":null,"artist":"曲:鯨井国家/歌:藍原 椿(CV:橋本 ちなみ)","albums":["タテマエと本心の大乱闘","本心大乱斗","本心","场面话与真心的大乱斗","大乱斗","タテマエと本心の大乱闘","本心大乱斗","本心","场面话与真心的大乱斗","大乱斗","タテマエと本心の大乱闘","本心大乱斗","本心","场面话与真心的大乱斗","大乱斗"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":180,"releaseDate":"20200220","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11109,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21003,"notes":{"total":213,"tap":158,"hold":20,"slide":2,"touch":22,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11109,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21003,"notes":{"total":332,"tap":240,"hold":36,"slide":5,"touch":41,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11109,"level_id":2,"level":"10","level_value":10.1,"note_designer":"はっぴー","romVersion":21003,"notes":{"total":543,"tap":406,"hold":63,"slide":18,"touch":40,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11109,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":21003,"notes":{"total":775,"tap":539,"hold":39,"slide":128,"touch":34,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":896,"long":false},{"id":1110,"players":1584,"title":"はちみつアドベンチャー","utTitle":null,"artist":"Yunomi feat.nicamoq","albums":["はちみつアドベンチャー","蜂蜜冒险","はちみ","大小福瑞","蜂蜜adventure","蓝色侏儒小熊","小孩坐大车","熊妈妈","小孩开大车","哈基米","はちみつアドベンチャー","蜂蜜冒险","はちみ","大小福瑞","蜂蜜adventure","蓝色侏儒小熊","小孩坐大车","熊妈妈","小孩开大车","哈基米","はちみつアドベンチャー","蜂蜜冒险","はちみ","大小福瑞","蜂蜜adventure","蓝色侏儒小熊","小孩坐大车","熊妈妈","小孩开大车","哈基米"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":160,"releaseDate":"20200904","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11110,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21003,"notes":{"total":181,"tap":140,"hold":19,"slide":2,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11110,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21003,"notes":{"total":331,"tap":248,"hold":44,"slide":9,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11110,"level_id":2,"level":"10","level_value":10.0,"note_designer":"華火職人","romVersion":21003,"notes":{"total":513,"tap":322,"hold":45,"slide":50,"touch":45,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11110,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":21003,"notes":{"total":705,"tap":438,"hold":51,"slide":70,"touch":120,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":567,"long":false},{"id":1111,"players":1453,"title":"popcorn","utTitle":null,"artist":"happy machine","albums":["popcorn","高松灯","企鹅警长","帝企哥","出警","企鹅物流","爆米花","popcorn","高松灯","企鹅警长","帝企哥","出警","企鹅物流","爆米花","popcorn","高松灯","企鹅警长","帝企哥","出警","企鹅物流","爆米花"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":130,"releaseDate":"20200904","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11111,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21003,"notes":{"total":130,"tap":96,"hold":13,"slide":6,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11111,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21003,"notes":{"total":240,"tap":156,"hold":35,"slide":7,"touch":40,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11111,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":21003,"notes":{"total":483,"tap":354,"hold":46,"slide":25,"touch":43,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11111,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Techno Kitchen","romVersion":21003,"notes":{"total":652,"tap":425,"hold":81,"slide":54,"touch":68,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":565,"long":false},{"id":1113,"players":4211,"title":"ハム太郎とっとこうた","utTitle":null,"artist":"ハムちゃんず [covered by 光吉猛修]","albums":["ハム太郎とっとこうた","哈姆","老鼠","鸭脖","鼠","哈姆太郎","鼠抓板","鸭脖太郎","仓鼠","鼠爹","鼠鼠","\uD83D\uDC39","墨鼠","小耗子","ハム太郎とっとこうた","哈姆","老鼠","鸭脖","鼠","哈姆太郎","鼠抓板","鸭脖太郎","仓鼠","鼠爹","鼠鼠","\uD83D\uDC39","墨鼠","小耗子","ハム太郎とっとこうた","哈姆","老鼠","鸭脖","鼠","哈姆太郎","鼠抓板","鸭脖太郎","仓鼠","鼠爹","鼠鼠","\uD83D\uDC39","墨鼠","小耗子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11113,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":21001,"notes":{"total":86,"tap":57,"hold":13,"slide":3,"touch":10,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11113,"level_id":1,"level":"5","level_value":5.8,"note_designer":"","romVersion":21001,"notes":{"total":178,"tap":136,"hold":8,"slide":10,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11113,"level_id":2,"level":"8","level_value":8.5,"note_designer":"小鳥遊さん","romVersion":21001,"notes":{"total":238,"tap":105,"hold":37,"slide":31,"touch":61,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11113,"level_id":3,"level":"12","level_value":12.0,"note_designer":"ぴちネコ","romVersion":21001,"notes":{"total":451,"tap":251,"hold":52,"slide":78,"touch":65,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11113,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":597,"tap":336,"hold":57,"slide":54,"touch":137,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1115,"players":8296,"title":"だから僕は音楽を辞めた","utTitle":null,"artist":"ヨルシカ","albums":["だから僕は音楽を辞めた","团长","エイミー","放弃音乐","于是我放弃了音乐","所以我放弃了音乐","奥尔加","仆音乐辞","音辞","だから僕は音楽を辞めた","团长","エイミー","放弃音乐","于是我放弃了音乐","所以我放弃了音乐","奥尔加","仆音乐辞","音辞","だから僕は音楽を辞めた","团长","エイミー","放弃音乐","于是我放弃了音乐","所以我放弃了音乐","奥尔加","仆音乐辞","音辞","音乐辞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":125,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11115,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":21001,"notes":{"total":112,"tap":83,"hold":9,"slide":4,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11115,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":21001,"notes":{"total":216,"tap":150,"hold":15,"slide":28,"touch":17,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11115,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":335,"tap":242,"hold":43,"slide":24,"touch":21,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11115,"level_id":3,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":21001,"notes":{"total":643,"tap":372,"hold":38,"slide":68,"touch":153,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1002,"long":false},{"id":1121,"players":5503,"title":"ビターチョコデコレーション","utTitle":null,"artist":"syudou","albums":["ビターチョコデコレーション","\uD83C\uDF7D️","苦巧克力装饰","苦巧","苦巧克力","米开朗基罗","ビターチョコデコレーション","\uD83C\uDF7D️","苦巧克力装饰","苦巧","苦巧克力","米开朗基罗","ビターチョコデコレーション","\uD83C\uDF7D️","苦巧克力装饰","苦巧","苦巧克力","米开朗基罗"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":174,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11121,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":170,"tap":126,"hold":22,"slide":4,"touch":15,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11121,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":20105,"notes":{"total":360,"tap":290,"hold":23,"slide":21,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11121,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"サファ太","romVersion":20105,"notes":{"total":499,"tap":374,"hold":86,"slide":14,"touch":17,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11121,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":20105,"notes":{"total":829,"tap":619,"hold":79,"slide":92,"touch":23,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1122,"players":5450,"title":"アンドロイドガール","utTitle":null,"artist":"DECO*27","albums":["アンドロイドガール","安卓少女","仿生少女","安卓女","琪亚娜","安卓女孩","アンドロイドガール","安卓少女","仿生少女","安卓女","琪亚娜","安卓女孩","アンドロイドガール","安卓少女","仿生少女","安卓女","琪亚娜","安卓女孩"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":192,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11122,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":163,"tap":130,"hold":14,"slide":7,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11122,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":20105,"notes":{"total":359,"tap":304,"hold":24,"slide":10,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11122,"level_id":2,"level":"10","level_value":10.4,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":570,"tap":459,"hold":48,"slide":5,"touch":36,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11122,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":20105,"notes":{"total":785,"tap":596,"hold":57,"slide":81,"touch":26,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1067,"long":false},{"id":1715,"players":9432,"title":"ライアーダンサー","utTitle":{"111715":"[嘘]ライアーダンサー"},"artist":"マサラダ","albums":null,"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":25007,"dx":{"0":{"id":11715,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25003,"notes":{"total":202,"tap":156,"hold":18,"slide":4,"touch":19,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11715,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25003,"notes":{"total":385,"tap":326,"hold":18,"slide":12,"touch":19,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11715,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":25003,"notes":{"total":589,"tap":436,"hold":67,"slide":28,"touch":4,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11715,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":940,"tap":658,"hold":52,"slide":148,"touch":37,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111715":{"id":111715,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25007,"notes":{"total":362,"tap":157,"hold":0,"slide":158,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2747,"long":false},{"id":1123,"players":2060,"title":"スターリースカイ☆パレード","utTitle":null,"artist":"キノシタ feat. 音街ウナ・鏡音リン","albums":["スターリースカイ☆パレード","星空游行","女同5","starryskyparade","starry sky parade","镜音音街","スターリースカイ☆パレード","星空游行","女同5","starryskyparade","starry sky parade","镜音音街","スターリースカイ☆パレード","星空游行","女同5","starryskyparade","starry sky parade","镜音音街"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":177,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11123,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":194,"tap":158,"hold":18,"slide":5,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11123,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":20105,"notes":{"total":384,"tap":328,"hold":16,"slide":14,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11123,"level_id":2,"level":"10","level_value":10.0,"note_designer":"小鳥遊さん","romVersion":20105,"notes":{"total":581,"tap":415,"hold":50,"slide":33,"touch":57,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11123,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"華火職人","romVersion":20105,"notes":{"total":756,"tap":537,"hold":64,"slide":74,"touch":57,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1124,"players":2963,"title":"スロウダウナー","utTitle":null,"artist":"ろくろ","albums":["スロウダウナー","slow downer","up down","上下","↑↓","慢下来","スロウダウナー","slow downer","up down","上下","↑↓","慢下来","スロウダウナー","slow downer","up down","上下","↑↓","慢下来","slowdowner"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":194,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11124,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":162,"tap":128,"hold":17,"slide":7,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11124,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":20105,"notes":{"total":312,"tap":251,"hold":18,"slide":9,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11124,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":496,"tap":405,"hold":44,"slide":13,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11124,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":20105,"notes":{"total":707,"tap":484,"hold":82,"slide":91,"touch":36,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1125,"players":2297,"title":"クレイジー・ビート","utTitle":null,"artist":"さつき が てんこもり","albums":["クレイジー・ビート","crazybeats","狂热节拍","狂乱节拍","双人蹦迪","crazybeat","crazy beat","致命节奏","疯狂节拍","クレイジー・ビート","crazybeats","狂热节拍","狂乱节拍","双人蹦迪","crazybeat","crazy beat","致命节奏","疯狂节拍","クレイジー・ビート","crazybeats","狂热节拍","狂乱节拍","双人蹦迪","crazybeat","crazy beat","致命节奏","疯狂节拍"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20200306","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11125,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21002,"notes":{"total":152,"tap":128,"hold":9,"slide":2,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11125,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21002,"notes":{"total":265,"tap":192,"hold":23,"slide":4,"touch":38,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11125,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":21002,"notes":{"total":433,"tap":247,"hold":110,"slide":40,"touch":20,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11125,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":21002,"notes":{"total":652,"tap":475,"hold":50,"slide":76,"touch":26,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":943,"long":false},{"id":1126,"players":4094,"title":"バイオレンストリガー","utTitle":null,"artist":"八王子P","albums":["バイオレンストリガー","jerry","危险扳机","暴力扳机","陶大冲","扳机","暴力板机","暴力拆机","杰瑞","megumegu","バイオレンストリガー","jerry","危险扳机","暴力扳机","陶大冲","扳机","暴力板机","暴力拆机","杰瑞","megumegu","バイオレンストリガー","jerry","危险扳机","暴力扳机","陶大冲","扳机","暴力板机","暴力拆机","杰瑞","megumegu"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":196,"releaseDate":"20200306","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11126,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21002,"notes":{"total":193,"tap":142,"hold":28,"slide":5,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11126,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21002,"notes":{"total":316,"tap":262,"hold":24,"slide":13,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11126,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":512,"tap":364,"hold":80,"slide":42,"touch":17,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11126,"level_id":3,"level":"13","level_value":13.2,"note_designer":"サファ太","romVersion":21002,"notes":{"total":832,"tap":614,"hold":38,"slide":103,"touch":33,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":939,"long":false},{"id":1127,"players":1334,"title":"グラーヴェ","utTitle":null,"artist":"niki","albums":["グラーヴェ","hello","grave","嘟嘟嘟","グラーヴェ","hello","grave","嘟嘟嘟","グラーヴェ","hello","grave","嘟嘟嘟"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20200306","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11127,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21002,"notes":{"total":129,"tap":101,"hold":15,"slide":5,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11127,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21002,"notes":{"total":229,"tap":148,"hold":29,"slide":11,"touch":39,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11127,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":452,"tap":338,"hold":40,"slide":38,"touch":24,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11127,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":678,"tap":500,"hold":31,"slide":93,"touch":48,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":556,"long":false},{"id":1128,"players":1604,"title":"KILLER B","utTitle":null,"artist":"梅とら","albums":["killer b","王女","杀人蜂","杀手b","果然敌人","杀b","killer b","王女","杀人蜂","杀手b","果然敌人","杀b","killer b","王女","杀人蜂","杀手b","果然敌人","杀b"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20200306","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21002,"dxRomVersion":21002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11128,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21002,"notes":{"total":128,"tap":97,"hold":8,"slide":2,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11128,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":21002,"notes":{"total":226,"tap":157,"hold":36,"slide":6,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11128,"level_id":2,"level":"10","level_value":10.2,"note_designer":"小鳥遊さん","romVersion":21002,"notes":{"total":463,"tap":299,"hold":55,"slide":40,"touch":44,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11128,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21002,"notes":{"total":651,"tap":482,"hold":29,"slide":69,"touch":68,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":940,"long":false},{"id":1129,"players":2884,"title":"すーぱーぬこになれんかった","utTitle":null,"artist":"まふまふ","albums":["すーぱーぬこになれんかった","投降猫","超级猫","没能成为超级猫猫","无法成为超级猫猫","超猫2","没变成猫猫","蓝蓝路","超级猫咪","猫咪","变不成猫","超级猫猫","すーぱーぬこになれんかった","投降猫","超级猫","没能成为超级猫猫","无法成为超级猫猫","超猫2","没变成猫猫","蓝蓝路","超级猫咪","猫咪","变不成猫","超级猫猫","すーぱーぬこになれんかった","投降猫","超级猫","没能成为超级猫猫","无法成为超级猫猫","超猫2","没变成猫猫","蓝蓝路","超级猫咪","猫咪","变不成猫","超级猫猫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20200710","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11129,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21001,"notes":{"total":213,"tap":173,"hold":21,"slide":4,"touch":9,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11129,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21001,"notes":{"total":375,"tap":292,"hold":30,"slide":19,"touch":14,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11129,"level_id":2,"level":"10","level_value":10.0,"note_designer":"シチミヘルツ","romVersion":21001,"notes":{"total":598,"tap":467,"hold":23,"slide":48,"touch":38,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11129,"level_id":3,"level":"13","level_value":13.2,"note_designer":"サファ太","romVersion":21001,"notes":{"total":895,"tap":646,"hold":41,"slide":99,"touch":48,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1130,"players":1146,"title":"アスヘノBRAVE","utTitle":null,"artist":"M.S.S Project","albums":["アスヘノbrave","brave","アスヘノbrave","brave","アスヘノbrave","brave"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20200710","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11130,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21001,"notes":{"total":155,"tap":104,"hold":26,"slide":7,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11130,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21001,"notes":{"total":288,"tap":204,"hold":27,"slide":17,"touch":24,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11130,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":507,"tap":394,"hold":68,"slide":16,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11130,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":774,"tap":589,"hold":53,"slide":91,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1131,"players":1864,"title":"深海シティアンダーグラウンド","utTitle":null,"artist":"田中B","albums":["深海シティアンダーグラウンド","深海地下都市","深海都市","呜哇啊啊啊","水神7","深海","深海地下城","深海城市","深海undergroundcity","深海シティアンダーグラウンド","深海地下都市","深海都市","呜哇啊啊啊","水神7","深海","深海地下城","深海城市","深海undergroundcity","深海シティアンダーグラウンド","深海地下都市","深海都市","呜哇啊啊啊","水神7","深海","深海地下城","深海城市","深海undergroundcity"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20200710","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11131,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21001,"notes":{"total":187,"tap":157,"hold":3,"slide":5,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11131,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":21001,"notes":{"total":389,"tap":335,"hold":19,"slide":8,"touch":13,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11131,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":481,"tap":361,"hold":48,"slide":54,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11131,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":21001,"notes":{"total":724,"tap":512,"hold":39,"slide":104,"touch":55,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1132,"players":3387,"title":"表裏一体","utTitle":null,"artist":"すりぃ","albums":["表裏一体","表里一体","表里如一","表里","表裏一体","表里一体","表里如一","表里","表裏一体","表里一体","表里如一","表里"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20200710","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11132,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21001,"notes":{"total":188,"tap":154,"hold":11,"slide":2,"touch":18,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11132,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21001,"notes":{"total":323,"tap":259,"hold":30,"slide":16,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11132,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":21001,"notes":{"total":530,"tap":364,"hold":59,"slide":30,"touch":58,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11132,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":896,"tap":686,"hold":55,"slide":75,"touch":71,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1133,"players":2558,"title":"Catch the Wave","utTitle":null,"artist":"livetune","albums":["catch the wave","10","抓波浪","歌姬计划","抓浪","ctw","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC4C\uD83C\uDFFB","抓波","catch the wave","10","抓波浪","歌姬计划","抓浪","ctw","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC4C\uD83C\uDFFB","抓波","catch the wave","10","抓波浪","歌姬计划","抓浪","ctw","\uD83D\uDC46\uD83C\uDFFB\uD83D\uDC4C\uD83C\uDFFB","抓波"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":153,"releaseDate":"20200619","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11133,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21001,"notes":{"total":166,"tap":128,"hold":24,"slide":4,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11133,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21001,"notes":{"total":327,"tap":255,"hold":22,"slide":10,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11133,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"小鳥遊さん","romVersion":21001,"notes":{"total":518,"tap":310,"hold":79,"slide":30,"touch":60,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11133,"level_id":3,"level":"12","level_value":12.4,"note_designer":"華火職人","romVersion":21001,"notes":{"total":756,"tap":521,"hold":94,"slide":78,"touch":44,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":909,"long":false},{"id":1134,"players":2934,"title":"ソリッド","utTitle":null,"artist":"豚乙女","albums":["ソリッド","大穷鬼","大贫民","大穷比","solid","大穷逼","ソリッド","大穷鬼","大贫民","大穷比","solid","大穷逼","ソリッド","大穷鬼","大贫民","大穷比","solid","大穷逼"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":222,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11134,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":20105,"notes":{"total":158,"tap":121,"hold":11,"slide":8,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11134,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":20105,"notes":{"total":292,"tap":250,"hold":11,"slide":11,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11134,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":20105,"notes":{"total":513,"tap":404,"hold":64,"slide":30,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11134,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン","romVersion":20105,"notes":{"total":748,"tap":523,"hold":30,"slide":132,"touch":33,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1135,"players":2696,"title":"全力ハッピーライフ","utTitle":null,"artist":"森羅万象","albums":["全力ハッピーライフ","全力","全力幸福生活","全力哈皮","全力happylife","吉他女神2","铃仙","全力幸福","\uD83D\uDC30\uD83D\uDC4B","全力ハッピーライフ","全力","全力幸福生活","全力哈皮","全力happylife","吉他女神2","铃仙","全力幸福","\uD83D\uDC30\uD83D\uDC4B","全力ハッピーライフ","全力","全力幸福生活","全力哈皮","全力happylife","吉他女神2","铃仙","全力幸福","\uD83D\uDC30\uD83D\uDC4B","兔女郎鱼尾"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20200821","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11135,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21001,"notes":{"total":200,"tap":151,"hold":20,"slide":2,"touch":20,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11135,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21001,"notes":{"total":356,"tap":274,"hold":30,"slide":17,"touch":26,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11135,"level_id":2,"level":"10","level_value":10.2,"note_designer":"隅田川星人","romVersion":21001,"notes":{"total":635,"tap":459,"hold":45,"slide":53,"touch":41,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11135,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":812,"tap":551,"hold":30,"slide":162,"touch":25,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2085,"long":false},{"id":1136,"players":1427,"title":"Oath Act","utTitle":null,"artist":"暁Records","albums":["oath act","涩涩青蛙子","宣誓行为","诹访子","ocean cat","oath act","涩涩青蛙子","宣誓行为","诹访子","ocean cat","oath act","涩涩青蛙子","宣誓行为","诹访子","ocean cat"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20200821","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11136,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21001,"notes":{"total":124,"tap":88,"hold":12,"slide":4,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11136,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":21001,"notes":{"total":287,"tap":250,"hold":6,"slide":20,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11136,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":21001,"notes":{"total":466,"tap":313,"hold":76,"slide":31,"touch":25,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11136,"level_id":3,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":21001,"notes":{"total":641,"tap":386,"hold":56,"slide":91,"touch":72,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1137,"players":2475,"title":"Witches night","utTitle":null,"artist":"Liz Triangle","albums":["witches night","恋恋","东方紫发女","古明地恋","魔女的夜","魔女之夜","witches night","恋恋","东方紫发女","古明地恋","魔女的夜","魔女之夜","witches night","恋恋","东方紫发女","古明地恋","魔女的夜","魔女之夜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":154,"releaseDate":"20200821","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11137,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21001,"notes":{"total":165,"tap":133,"hold":6,"slide":6,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11137,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":21001,"notes":{"total":261,"tap":199,"hold":30,"slide":12,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11137,"level_id":2,"level":"9","level_value":9.0,"note_designer":"サファ太","romVersion":21001,"notes":{"total":444,"tap":298,"hold":63,"slide":38,"touch":22,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11137,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"某S氏","romVersion":21001,"notes":{"total":699,"tap":480,"hold":61,"slide":111,"touch":42,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":381,"long":false},{"id":1138,"players":1428,"title":"Drive Your Fire","utTitle":null,"artist":"A-One","albums":["drive your fire","驾驶你的火","红色电音","开你的火","大姨父","极地大冲击","drive your fire","驾驶你的火","红色电音","开你的火","大姨父","极地大冲击","drive your fire","驾驶你的火","红色电音","开你的火","大姨父","极地大冲击"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":164,"releaseDate":"20200821","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11138,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21001,"notes":{"total":164,"tap":121,"hold":19,"slide":4,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11138,"level_id":1,"level":"6","level_value":6.7,"note_designer":"","romVersion":21001,"notes":{"total":298,"tap":230,"hold":14,"slide":19,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11138,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"某S氏","romVersion":21001,"notes":{"total":520,"tap":374,"hold":71,"slide":29,"touch":36,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11138,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":21001,"notes":{"total":789,"tap":592,"hold":51,"slide":90,"touch":32,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1139,"players":3919,"title":"wheel","utTitle":null,"artist":"Syrufit + HDLV","albums":["wheel","马挖路2","悠哇悠哇","轮子","车轮","猫车","轮","wheel","马挖路2","悠哇悠哇","轮子","车轮","猫车","轮","wheel","马挖路2","悠哇悠哇","轮子","车轮","猫车","轮"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":136,"releaseDate":"20200821","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21001,"dxRomVersion":21001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11139,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":21001,"notes":{"total":130,"tap":96,"hold":9,"slide":4,"touch":18,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11139,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":21001,"notes":{"total":266,"tap":233,"hold":7,"slide":8,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11139,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":21001,"notes":{"total":443,"tap":335,"hold":43,"slide":60,"touch":3,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11139,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":21001,"notes":{"total":534,"tap":337,"hold":12,"slide":142,"touch":28,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1140,"players":2988,"title":"Black Lair","utTitle":null,"artist":"削除 feat. void (Mournfinale)","albums":["black lair","黑巢","bl","公主斗恶龙","black lair","黑巢","bl","公主斗恶龙","black lair","黑巢","bl","公主斗恶龙"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":20105,"dxRomVersion":20105,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11140,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":20105,"notes":{"total":176,"tap":108,"hold":17,"slide":11,"touch":39,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11140,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":20105,"notes":{"total":310,"tap":226,"hold":27,"slide":20,"touch":30,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11140,"level_id":2,"level":"11","level_value":11.5,"note_designer":"シチミヘルツ","romVersion":20105,"notes":{"total":552,"tap":324,"hold":102,"slide":41,"touch":70,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11140,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":20105,"notes":{"total":834,"tap":582,"hold":89,"slide":67,"touch":59,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":681,"long":false},{"id":1141,"players":5011,"title":"energy trixxx","utTitle":null,"artist":"KAH","albums":["energy trixxx","能量叉","能量三角形","美有姬","马娘","美友姬","能量xxx","能量xx","能量三角","能量叉叉","xxx","energy trixxx","能量叉","能量三角形","美有姬","马娘","美友姬","能量xxx","能量xx","能量三角","能量叉叉","xxx","energy trixxx","能量叉","能量三角形","美有姬","马娘","美友姬","能量xxx","能量xx","能量三角","能量叉叉","xxx"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20200207","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11141,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21003,"notes":{"total":201,"tap":141,"hold":26,"slide":8,"touch":13,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11141,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21003,"notes":{"total":290,"tap":172,"hold":43,"slide":14,"touch":52,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11141,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":21003,"notes":{"total":584,"tap":379,"hold":75,"slide":43,"touch":60,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11141,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":21003,"notes":{"total":918,"tap":673,"hold":59,"slide":51,"touch":91,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1142,"players":4784,"title":"NULCTRL","utTitle":null,"artist":"Silentroom","albums":["nulctrl","nul","牛唱跳rap","牛啃草","牛ctrl","一根星星","wota艺","nc","无控","牛啃臭","cxk","牛唱跳rap篮球","唱跳rap篮球","\uD83D\uDC2E\uD83C\uDF3F","红蓝","ntr","无控制","nulctrl","nul","牛唱跳rap","牛啃草","牛ctrl","一根星星","wota艺","nc","无控","牛啃臭","cxk","牛唱跳rap篮球","唱跳rap篮球","\uD83D\uDC2E\uD83C\uDF3F","红蓝","ntr","无控制","nulctrl","nul","牛唱跳rap","牛啃草","牛ctrl","一根星星","wota艺","nc","无控","牛啃臭","cxk","牛唱跳rap篮球","唱跳rap篮球","\uD83D\uDC2E\uD83C\uDF3F","红蓝","ntr","无控制"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":100,"releaseDate":"20200207","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11142,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21003,"notes":{"total":147,"tap":114,"hold":12,"slide":2,"touch":12,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11142,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21003,"notes":{"total":245,"tap":147,"hold":54,"slide":8,"touch":26,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11142,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":21003,"notes":{"total":523,"tap":311,"hold":158,"slide":29,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11142,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"譜面-100号とはっぴー","romVersion":21003,"notes":{"total":897,"tap":564,"hold":72,"slide":1,"touch":248,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1143,"players":6333,"title":"アトロポスと最果の探究者","utTitle":null,"artist":"しーけー","albums":["アトロポスと最果の探究者","大奶伊蕾娜","最果","探究者","大奶子依蕾娜","大柰柰伊蕾娜","阿特洛波斯与尽头的探究者","大奈子伊蕾娜","大柰子伊蕾娜","大奶子伊蕾娜","翠果","最果探究者","アトロポスと最果の探究者","大奶伊蕾娜","最果","探究者","大奶子依蕾娜","大柰柰伊蕾娜","阿特洛波斯与尽头的探究者","大奈子伊蕾娜","大柰子伊蕾娜","大奶子伊蕾娜","翠果","最果探究者","アトロポスと最果の探究者","大奶伊蕾娜","最果","探究者","大奶子依蕾娜","大柰柰伊蕾娜","阿特洛波斯与尽头的探究者","大奈子伊蕾娜","大柰子伊蕾娜","大奶子伊蕾娜","翠果","最果探究者","大雷伊蕾娜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":230,"releaseDate":"20200207","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":21003,"dxRomVersion":21003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11143,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21003,"notes":{"total":216,"tap":180,"hold":15,"slide":5,"touch":11,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11143,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":21003,"notes":{"total":279,"tap":174,"hold":49,"slide":12,"touch":34,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11143,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"華火職人","romVersion":21003,"notes":{"total":575,"tap":370,"hold":69,"slide":42,"touch":51,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11143,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"群青リコリス","romVersion":21003,"notes":{"total":813,"tap":572,"hold":58,"slide":88,"touch":63,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1152,"players":8168,"title":"ぼくたちいつでも しゅわっしゅわ!","utTitle":null,"artist":"ヒゲドライバー feat.らいむっくま(CV:村川梨衣) & れもんっくま(CV:MoeMi)","albums":["ぼくたちいつでも しゅわっしゅわ!","休哇休哇","咻哇咻哇","彩黑","修车","柠檬熊","雨刮器2","修哇修哇","阿驿","修哇","splash主题曲","丸山彩","happyhappy","咻哇","ぼくたちいつでも しゅわっしゅわ!","休哇休哇","咻哇咻哇","彩黑","修车","柠檬熊","雨刮器2","修哇修哇","阿驿","修哇","splash主题曲","丸山彩","happyhappy","咻哇","ぼくたちいつでも しゅわっしゅわ!","休哇休哇","咻哇咻哇","彩黑","修车","柠檬熊","雨刮器2","修哇修哇","阿驿","修哇","splash主题曲","丸山彩","happyhappy","咻哇"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11152,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21004,"notes":{"total":174,"tap":158,"hold":4,"slide":3,"touch":4,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11152,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21004,"notes":{"total":300,"tap":240,"hold":21,"slide":9,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11152,"level_id":2,"level":"11","level_value":11.3,"note_designer":"華火職人","romVersion":21004,"notes":{"total":553,"tap":371,"hold":65,"slide":34,"touch":34,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11152,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ぴちネコ","romVersion":21004,"notes":{"total":766,"tap":510,"hold":52,"slide":67,"touch":123,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11152,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"いぬっくまとボコっくま","romVersion":21004,"notes":{"total":764,"tap":647,"hold":15,"slide":82,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1153,"players":2112,"title":"Boys O’Clock","utTitle":null,"artist":"technoplanet","albums":["boys o’clock","男同时间到","男同时刻","tfboys","男同时间","男孩时间","boys o’clock","男同时间到","男同时刻","tfboys","男同时间","男孩时间","boys o’clock","男同时间到","男同时刻","tfboys","男同时间","男孩时间"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":262,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11153,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21004,"notes":{"total":172,"tap":139,"hold":13,"slide":4,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11153,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21004,"notes":{"total":303,"tap":218,"hold":36,"slide":11,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11153,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":21004,"notes":{"total":512,"tap":317,"hold":78,"slide":29,"touch":55,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11153,"level_id":3,"level":"13","level_value":13.0,"note_designer":"譜面-100号","romVersion":21004,"notes":{"total":811,"tap":580,"hold":22,"slide":16,"touch":168,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1154,"players":4352,"title":"居並ぶ穀物と溜息まじりの運送屋","utTitle":null,"artist":"hanzo","albums":["居並ぶ穀物と溜息まじりの運送屋","老汉推车","牢大骑车","老汉拉车","老爷爷","木雕2","木雕鲶鱼2","老登拉车","居並ぶ穀物と溜息まじりの運送屋","老汉推车","牢大骑车","老汉拉车","老爷爷","木雕2","木雕鲶鱼2","老登拉车","累死林博文","居並ぶ穀物と溜息まじりの運送屋","老汉推车","牢大骑车","老汉拉车","老爷爷","木雕2","木雕鲶鱼2","老登拉车","水手"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11154,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21004,"notes":{"total":165,"tap":120,"hold":18,"slide":4,"touch":18,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11154,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21004,"notes":{"total":394,"tap":299,"hold":36,"slide":10,"touch":41,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11154,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":21004,"notes":{"total":590,"tap":394,"hold":69,"slide":35,"touch":70,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11154,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"隅田川星人","romVersion":21004,"notes":{"total":950,"tap":697,"hold":70,"slide":123,"touch":26,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1155,"players":3664,"title":"ARAIS","utTitle":null,"artist":"千本松 仁","albums":["arais","鸟加鸟加","海玲","阿赖斯","阿瑞斯","鸟人","八幡海铃","arais","鸟加鸟加","海玲","阿赖斯","阿瑞斯","鸟人","八幡海铃","arais","鸟加鸟加","海玲","阿赖斯","阿瑞斯","鸟人","八幡海铃"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11155,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":21004,"notes":{"total":206,"tap":156,"hold":28,"slide":6,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11155,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":21004,"notes":{"total":436,"tap":374,"hold":23,"slide":15,"touch":15,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11155,"level_id":2,"level":"12","level_value":12.0,"note_designer":"小鳥遊さん","romVersion":21004,"notes":{"total":636,"tap":475,"hold":83,"slide":30,"touch":14,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11155,"level_id":3,"level":"14","level_value":14.4,"note_designer":"Sukiyaki vs Happy","romVersion":21004,"notes":{"total":1000,"tap":851,"hold":14,"slide":59,"touch":54,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1157,"players":3060,"title":"Aetheric Energy","utTitle":null,"artist":"aran","albums":["aetheric energy","ae","❤","以太能量","应用工程","aetheric energy","ae","❤","以太能量","应用工程","aetheric energy","ae","❤","以太能量","应用工程","亚当重锤"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20201016","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11157,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21005,"notes":{"total":169,"tap":133,"hold":7,"slide":4,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11157,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21005,"notes":{"total":343,"tap":256,"hold":42,"slide":4,"touch":33,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11157,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":21005,"notes":{"total":505,"tap":371,"hold":35,"slide":41,"touch":43,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11157,"level_id":3,"level":"13","level_value":13.4,"note_designer":"華火職人","romVersion":21005,"notes":{"total":731,"tap":478,"hold":37,"slide":72,"touch":98,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1158,"players":6033,"title":"Komplexe","utTitle":null,"artist":"雄之助 feat. Sennzai","albums":["komplexe","大黑姬","雄氏老方","kom","黑姬","黑姬唱歌","complex","komplexe","大黑姬","雄氏老方","kom","黑姬","黑姬唱歌","complex","komplexe","大黑姬","雄氏老方","kom","黑姬","黑姬唱歌","complex"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20201016","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11158,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21005,"notes":{"total":137,"tap":105,"hold":10,"slide":3,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11158,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21005,"notes":{"total":233,"tap":147,"hold":48,"slide":17,"touch":19,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11158,"level_id":2,"level":"11","level_value":11.0,"note_designer":"華火職人","romVersion":21005,"notes":{"total":448,"tap":317,"hold":46,"slide":48,"touch":8,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11158,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"シチミヘルツ","romVersion":21005,"notes":{"total":812,"tap":596,"hold":95,"slide":63,"touch":39,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2195,"long":false},{"id":1159,"players":4387,"title":"Beautiful Future","utTitle":null,"artist":"PSYQUI","albums":["beautiful future","雷炎","美好未来","大好前程","无一物啊啊","美丽未来","美味","美好的未来","beautiful future","雷炎","美好未来","大好前程","无一物啊啊","美丽未来","美味","美好的未来","beautiful future","雷炎","美好未来","大好前程","无一物啊啊","美丽未来","美味","美好的未来"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":172,"releaseDate":"20201016","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11159,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21005,"notes":{"total":181,"tap":157,"hold":9,"slide":2,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11159,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":21005,"notes":{"total":385,"tap":309,"hold":33,"slide":4,"touch":33,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11159,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":474,"tap":267,"hold":77,"slide":42,"touch":82,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11159,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"隅田川星人","romVersion":21005,"notes":{"total":833,"tap":601,"hold":94,"slide":76,"touch":33,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2564,"long":false},{"id":1160,"players":4860,"title":"Mutation","utTitle":null,"artist":"Laur","albums":["mutation","木他神","仁王","变种","变化","mocation","突变","变异","木忒行","木糖醇","mutation","木他神","仁王","变种","变化","mocation","突变","变异","木忒行","木糖醇","mutation","木他神","仁王","变种","变化","mocation","突变","变异","木忒行","木糖醇"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20201016","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11160,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21005,"notes":{"total":221,"tap":198,"hold":5,"slide":3,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11160,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21005,"notes":{"total":375,"tap":289,"hold":29,"slide":9,"touch":35,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11160,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":21005,"notes":{"total":647,"tap":488,"hold":57,"slide":32,"touch":43,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11160,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小鳥遊さん","romVersion":21005,"notes":{"total":991,"tap":713,"hold":130,"slide":47,"touch":81,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2556,"long":false},{"id":1161,"players":5088,"title":"オリフィス","utTitle":null,"artist":"40mP feat. シャノ","albums":["オリフィス","流量计","流孔","orifice","黄毛美术生","画家","美术生","オリフィス","流量计","流孔","orifice","黄毛美术生","画家","美术生","オリフィス","流量计","流孔","orifice","黄毛美术生","画家","美术生"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20201211","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11161,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21006,"notes":{"total":141,"tap":112,"hold":14,"slide":7,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11161,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21006,"notes":{"total":333,"tap":257,"hold":35,"slide":16,"touch":17,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11161,"level_id":2,"level":"10","level_value":10.4,"note_designer":"華火職人","romVersion":21006,"notes":{"total":531,"tap":368,"hold":66,"slide":31,"touch":34,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11161,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":791,"tap":581,"hold":64,"slide":101,"touch":36,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1162,"players":4478,"title":"ユメヒバナ","utTitle":null,"artist":"RD-Sounds feat.中恵光城","albums":["ユメヒバナ","梦之火花","掉毛小哥哥","梦火花","ユメヒバナ","梦之火花","掉毛小哥哥","梦火花","ユメヒバナ","梦之火花","掉毛小哥哥","梦火花"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":151,"releaseDate":"20201211","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11162,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":189,"tap":160,"hold":4,"slide":2,"touch":10,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11162,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21006,"notes":{"total":267,"tap":194,"hold":24,"slide":9,"touch":29,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11162,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":21006,"notes":{"total":449,"tap":306,"hold":45,"slide":40,"touch":34,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11162,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ぴちネコ","romVersion":21006,"notes":{"total":731,"tap":474,"hold":52,"slide":71,"touch":116,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1163,"players":4303,"title":"REAL VOICE","utTitle":null,"artist":"達見 恵 featured by 佐野 宏晃","albums":["real voice","真声音","realvoice","本音","真音","真唱","real voice","真声音","realvoice","本音","真音","真唱","real voice","真声音","realvoice","本音","真音","真唱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":183,"releaseDate":"20201211","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11163,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21006,"notes":{"total":152,"tap":113,"hold":22,"slide":4,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11163,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21006,"notes":{"total":337,"tap":278,"hold":28,"slide":17,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11163,"level_id":2,"level":"10","level_value":10.2,"note_designer":"某S氏","romVersion":21006,"notes":{"total":543,"tap":402,"hold":80,"slide":38,"touch":17,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11163,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"アマリリス","romVersion":21006,"notes":{"total":810,"tap":557,"hold":43,"slide":95,"touch":103,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1164,"players":4884,"title":"パラボラ","utTitle":null,"artist":"*Luna feat.NORISTRY","albums":["パラボラ","沉淀","网球王子","篮球男孩","蓝毛体育生","白毛体育生","体育生","二次元科比","抛物线","parabola","梅西","球男","パラボラ","沉淀","网球王子","篮球男孩","蓝毛体育生","白毛体育生","体育生","二次元科比","抛物线","parabola","梅西","球男","パラボラ","沉淀","网球王子","篮球男孩","蓝毛体育生","白毛体育生","体育生","二次元科比","抛物线","parabola","梅西","球男"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":192,"releaseDate":"20201211","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11164,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21006,"notes":{"total":194,"tap":157,"hold":17,"slide":2,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11164,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":21006,"notes":{"total":397,"tap":306,"hold":41,"slide":18,"touch":19,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11164,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":621,"tap":474,"hold":84,"slide":40,"touch":13,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11164,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":21006,"notes":{"total":963,"tap":680,"hold":63,"slide":125,"touch":48,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1165,"players":7891,"title":"Regulus","utTitle":null,"artist":"お月さま交響曲","albums":["regulus","大奈子罗兰","真空旗袍","热咕噜","雷古勒斯","大欧派姐姐","白法院鬼叫","狮子座α","大扎修女","大萝莉","八云蓝","白法院","大奶子","女萝莉","如龙4","奶子很大","天界大奶","regulus","大奈子罗兰","真空旗袍","热咕噜","雷古勒斯","大欧派姐姐","白法院鬼叫","狮子座α","大扎修女","大萝莉","八云蓝","白法院","大奶子","女萝莉","如龙4","奶子很大","天界大奶","regulus","大奈子罗兰","真空旗袍","热咕噜","雷古勒斯","大欧派姐姐","白法院鬼叫","狮子座α","大扎修女","大萝莉","八云蓝","白法院","大奶子","女萝莉","如龙4","奶子很大","天界大奶"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":212,"releaseDate":"20210219","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11165,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21007,"notes":{"total":180,"tap":126,"hold":22,"slide":6,"touch":19,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11165,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21007,"notes":{"total":425,"tap":346,"hold":13,"slide":37,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11165,"level_id":2,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":628,"tap":492,"hold":43,"slide":39,"touch":45,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11165,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"7.3GHz","romVersion":21007,"notes":{"total":999,"tap":764,"hold":28,"slide":99,"touch":99,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2467,"long":false},{"id":1166,"players":6613,"title":"ワンダーシャッフェンの法則","utTitle":null,"artist":"アリスシャッハと魔法の楽団","albums":["ワンダーシャッフェンの法則","创造奇迹的法则","百合咲","炼铜法则","小萝莉法则","六翅一桶","小百合咲","小萝莉2","百合咲2","小扎萝莉","奇迹法则","萝莉棋法则","法则","萝莉法则","ワンダーシャッフェンの法則","创造奇迹的法则","百合咲","炼铜法则","小萝莉法则","六翅一桶","小百合咲","小萝莉2","百合咲2","小扎萝莉","奇迹法则","萝莉棋法则","法则","萝莉法则","ワンダーシャッフェンの法則","创造奇迹的法则","百合咲","炼铜法则","小萝莉法则","六翅一桶","小百合咲","小萝莉2","百合咲2","小扎萝莉","奇迹法则","萝莉棋法则","法则","萝莉法则"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20210219","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11166,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":161,"tap":126,"hold":12,"slide":6,"touch":6,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11166,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21007,"notes":{"total":326,"tap":267,"hold":15,"slide":16,"touch":16,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11166,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":21007,"notes":{"total":425,"tap":290,"hold":38,"slide":70,"touch":7,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11166,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":21007,"notes":{"total":765,"tap":501,"hold":53,"slide":131,"touch":64,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2486,"long":false},{"id":1167,"players":5564,"title":"BIRTH","utTitle":null,"artist":"llliiillliiilll","albums":["birth","birth","抽神出生","birth","出生"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":176,"releaseDate":"20210219","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11167,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21007,"notes":{"total":155,"tap":117,"hold":13,"slide":5,"touch":11,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11167,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":21007,"notes":{"total":352,"tap":285,"hold":17,"slide":24,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11167,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21007,"notes":{"total":601,"tap":505,"hold":62,"slide":17,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11167,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Safata.Hz","romVersion":21007,"notes":{"total":888,"tap":697,"hold":40,"slide":94,"touch":19,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1168,"players":2124,"title":"シアトリカル・ケース","utTitle":null,"artist":"ユリイ・カノン feat.ウォルピスカーター&まひる","albums":["シアトリカル・ケース","case","theatrical case","侦探跳火车","theatrical・case","戏剧性案件","言叶3","黑玫瑰3","tc","シアトリカル・ケース","case","theatrical case","侦探跳火车","theatrical・case","戏剧性案件","言叶3","黑玫瑰3","tc","シアトリカル・ケース","case","theatrical case","侦探跳火车","theatrical・case","戏剧性案件","言叶3","黑玫瑰3","tc","砂金"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20201113","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11168,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":224,"tap":182,"hold":11,"slide":4,"touch":16,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11168,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21006,"notes":{"total":413,"tap":339,"hold":25,"slide":4,"touch":37,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11168,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"某S氏","romVersion":21006,"notes":{"total":615,"tap":437,"hold":90,"slide":38,"touch":27,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11168,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":21006,"notes":{"total":961,"tap":727,"hold":74,"slide":36,"touch":73,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1169,"players":1762,"title":"ステップアンドライム","utTitle":null,"artist":"YASUHIRO(康寛)","albums":["ステップアンドライム","男同3","stepandlime","间谍过家家","ステップアンドライム","男同3","stepandlime","间谍过家家","ステップアンドライム","男同3","stepandlime","间谍过家家"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20210428","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11169,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":168,"tap":128,"hold":16,"slide":4,"touch":17,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11169,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22001,"notes":{"total":321,"tap":241,"hold":23,"slide":28,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11169,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":501,"tap":368,"hold":79,"slide":33,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11169,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22001,"notes":{"total":843,"tap":605,"hold":83,"slide":75,"touch":57,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1170,"players":2391,"title":"届かない花束","utTitle":null,"artist":"ELECTROCUTICA","albums":["届かない花束","传达不到的花束","花束","送不到的花束","届不到的花束","届花束","届かない花束","传达不到的花束","花束","送不到的花束","届不到的花束","届花束","届かない花束","传达不到的花束","花束","送不到的花束","届不到的花束","届花束"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20210428","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11170,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":141,"tap":105,"hold":23,"slide":2,"touch":10,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11170,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22001,"notes":{"total":283,"tap":198,"hold":18,"slide":21,"touch":42,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11170,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":22001,"notes":{"total":419,"tap":271,"hold":97,"slide":28,"touch":9,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11170,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":659,"tap":421,"hold":105,"slide":100,"touch":23,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1171,"players":5583,"title":"YURUSHITE","utTitle":null,"artist":"t+pazolite","albums":["yurushite","逢坂茜","灼眼的夏娜","红酒杯","二郎腿","原谅我","犹如屎","黄鱼","犹如史","回娄底","萝莉喝酒","萨塔妮亚","萨塔妮娅","摇晃的红酒杯","红酒","杰斯顿","火神青春版","yuru****e","\uD83C\uDF77","yurushite","逢坂茜","灼眼的夏娜","红酒杯","二郎腿","原谅我","犹如屎","黄鱼","犹如史","回娄底","萝莉喝酒","萨塔妮亚","萨塔妮娅","摇晃的红酒杯","红酒","杰斯顿","火神青春版","yuru****e","\uD83C\uDF77","yurushite","逢坂茜","灼眼的夏娜","红酒杯","二郎腿","原谅我","犹如屎","黄鱼","犹如史","回娄底","萝莉喝酒","萨塔妮亚","萨塔妮娅","摇晃的红酒杯","红酒","杰斯顿","火神青春版","yuru****e","\uD83C\uDF77","娄底人","匹诺康尼"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":270,"releaseDate":"20201225","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11171,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21006,"notes":{"total":198,"tap":155,"hold":18,"slide":6,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11171,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":21006,"notes":{"total":520,"tap":458,"hold":15,"slide":17,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11171,"level_id":2,"level":"12","level_value":12.5,"note_designer":"シチミヘルツ","romVersion":21006,"notes":{"total":773,"tap":574,"hold":51,"slide":90,"touch":32,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11171,"level_id":3,"level":"14","level_value":14.4,"note_designer":"小鳥遊さん","romVersion":21006,"notes":{"total":1054,"tap":801,"hold":86,"slide":94,"touch":38,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":784,"long":false},{"id":1172,"players":1840,"title":"ポケットからぬりつぶせ!","utTitle":null,"artist":"曲:中山真斗/歌:マーチングポケッツ [日向 千夏(CV:岡咲 美保)、柏木 美亜(CV:和氣 あず未)、東雲 つむぎ(CV:和泉 風花)]","albums":["ポケットからぬりつぶせ!","三小只","口袋涂鸦","ポケットからぬりつぶせ!","三小只","口袋涂鸦","小女孩打鼓","ポケットからぬりつぶせ!","三小只","口袋涂鸦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":126,"releaseDate":"20210305","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11172,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21007,"notes":{"total":146,"tap":112,"hold":10,"slide":4,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11172,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21007,"notes":{"total":304,"tap":224,"hold":19,"slide":21,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11172,"level_id":2,"level":"10","level_value":10.2,"note_designer":"小鳥遊さん","romVersion":21007,"notes":{"total":593,"tap":434,"hold":57,"slide":41,"touch":41,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11172,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ぴちネコ","romVersion":21007,"notes":{"total":770,"tap":472,"hold":68,"slide":68,"touch":140,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2235,"long":false},{"id":1173,"players":2322,"title":"トリドリ⇒モリモリ!Lovely fruits☆","utTitle":null,"artist":"曲:やしきん/歌:柏木 美亜(CV:和氣 あず未)","albums":["トリドリ⇒モリモリ!lovely fruits☆","美亚","水果摊子","可爱的水果","水果歌","喵呼","合成大西瓜","可爱水果","水果","トリドリ⇒モリモリ!lovely fruits☆","美亚","水果摊子","可爱的水果","水果歌","喵呼","合成大西瓜","可爱水果","水果","トリドリ⇒モリモリ!lovely fruits☆","美亚","水果摊子","可爱的水果","水果歌","喵呼","合成大西瓜","可爱水果","水果"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":185,"releaseDate":"20210305","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11173,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":204,"tap":152,"hold":19,"slide":7,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11173,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21007,"notes":{"total":373,"tap":262,"hold":35,"slide":14,"touch":52,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11173,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":21007,"notes":{"total":615,"tap":446,"hold":92,"slide":42,"touch":12,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11173,"level_id":3,"level":"13","level_value":13.2,"note_designer":"すきやき奉行","romVersion":21007,"notes":{"total":884,"tap":605,"hold":87,"slide":112,"touch":44,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1174,"players":4436,"title":"Desperado Waltz","utTitle":null,"artist":"ぺのれり","albums":["desperado waltz","华尔兹","第三只手","华二","安塞腰鼓","亡徒华尔兹","噔噔噔","打鼓的小女孩","desperado waltz","华尔兹","第三只手","华二","安塞腰鼓","亡徒华尔兹","噔噔噔","打鼓的小女孩","desperado waltz","华尔兹","第三只手","华二","安塞腰鼓","亡徒华尔兹","噔噔噔","打鼓的小女孩"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":172,"releaseDate":"20210305","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11174,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21007,"notes":{"total":168,"tap":129,"hold":21,"slide":4,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11174,"level_id":1,"level":"8","level_value":8.4,"note_designer":"","romVersion":21007,"notes":{"total":368,"tap":270,"hold":31,"slide":18,"touch":37,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11174,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":21007,"notes":{"total":697,"tap":485,"hold":120,"slide":27,"touch":52,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11174,"level_id":3,"level":"14","level_value":14.2,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":1102,"tap":809,"hold":140,"slide":42,"touch":57,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2296,"long":false},{"id":1175,"players":7635,"title":"宛城、炎上!!","utTitle":null,"artist":"Cranky feat.おもしろ三国志","albums":["宛城、炎上!!","钠离子","宛城","赤赤","宛城炎上","炎上","enjo","enjou","大宇宙","宛城、炎上!!","钠离子","宛城","赤赤","宛城炎上","炎上","enjo","enjou","大宇宙","宛城、炎上!!","钠离子","宛城","赤赤","宛城炎上","炎上","enjo","enjou","大宇宙"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":175,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11175,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21004,"notes":{"total":261,"tap":223,"hold":13,"slide":7,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11175,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":21004,"notes":{"total":437,"tap":347,"hold":30,"slide":18,"touch":31,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11175,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":21004,"notes":{"total":725,"tap":477,"hold":81,"slide":42,"touch":25,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11175,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":21004,"notes":{"total":1267,"tap":762,"hold":130,"slide":51,"touch":272,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":106,"long":false},{"id":1176,"players":8074,"title":"Climax","utTitle":null,"artist":"USAO","albums":["climax","犀利麦克斯","犀利马克思","妖艳魔男","squirt","我有很多手指","阿莱乌斯","\uD83D\uDC0D\uD83D\uDC33","魔男","climax","犀利麦克斯","犀利马克思","妖艳魔男","squirt","我有很多手指","阿莱乌斯","\uD83D\uDC0D\uD83D\uDC33","魔男","摇曳魔男","climax","犀利麦克斯","犀利马克思","妖艳魔男","squirt","我有很多手指","阿莱乌斯","\uD83D\uDC0D\uD83D\uDC33","魔男","高潮"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20201225","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11176,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":227,"tap":196,"hold":15,"slide":2,"touch":4,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11176,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21006,"notes":{"total":478,"tap":415,"hold":9,"slide":22,"touch":17,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11176,"level_id":2,"level":"12","level_value":12.0,"note_designer":"隅田川星人","romVersion":21006,"notes":{"total":807,"tap":588,"hold":88,"slide":60,"touch":49,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11176,"level_id":3,"level":"14","level_value":14.3,"note_designer":"シチミヘルツ","romVersion":21006,"notes":{"total":1139,"tap":797,"hold":85,"slide":144,"touch":43,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":712,"long":false},{"id":1177,"players":5476,"title":"レーイレーイ","utTitle":null,"artist":"かいりきベア feat.松下","albums":["レーイレーイ","星野爱","荷珀","抓鬼","捉鬼","抓鬼星野爱","三色幽灵","幽灵","胡桃","レーイレーイ","星野爱","荷珀","抓鬼","捉鬼","抓鬼星野爱","三色幽灵","幽灵","胡桃","レーイレーイ","星野爱","荷珀","抓鬼","捉鬼","抓鬼星野爱","三色幽灵","幽灵","胡桃"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":188,"releaseDate":"20201127","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11177,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21005,"notes":{"total":182,"tap":135,"hold":24,"slide":2,"touch":18,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11177,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21005,"notes":{"total":381,"tap":302,"hold":28,"slide":21,"touch":18,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11177,"level_id":2,"level":"10","level_value":10.5,"note_designer":"華火職人","romVersion":21005,"notes":{"total":627,"tap":447,"hold":47,"slide":48,"touch":23,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11177,"level_id":3,"level":"13","level_value":13.2,"note_designer":"シチミヘルツ","romVersion":21005,"notes":{"total":878,"tap":594,"hold":97,"slide":114,"touch":52,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11177,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":21005,"notes":{"total":999,"tap":698,"hold":32,"slide":126,"touch":87,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":829,"long":false},{"id":1772,"players":6372,"title":"人マニア","utTitle":{"111772":"[X]人マニア"},"artist":"原口沙輔 feat.重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":25007,"dx":{"0":{"id":11772,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":157,"tap":128,"hold":13,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11772,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25008,"notes":{"total":244,"tap":192,"hold":18,"slide":8,"touch":22,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11772,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"きょむりん","romVersion":25008,"notes":{"total":420,"tap":213,"hold":49,"slide":26,"touch":80,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11772,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25008,"notes":{"total":783,"tap":422,"hold":26,"slide":95,"touch":168,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111772":{"id":111772,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":25007,"notes":{"total":801,"tap":362,"hold":47,"slide":76,"touch":230,"break_":86},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2745,"long":false},{"id":1184,"players":10511,"title":"Virtual to LIVE","utTitle":null,"artist":"にじさんじ","albums":["virtual to live","彩虹社","管人歌","彩虹社歌","管人痴","雨刷器","vtl","虚拟生活","雨刮器","virtual to live","彩虹社","管人歌","彩虹社歌","管人痴","雨刷器","vtl","虚拟生活","雨刮器","欧内的手","virtual to live","彩虹社","管人歌","彩虹社歌","管人痴","雨刷器","vtl","虚拟生活","雨刮器","上下反怒锤"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":156,"releaseDate":"20201225","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11184,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21006,"notes":{"total":129,"tap":106,"hold":7,"slide":2,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11184,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":21006,"notes":{"total":248,"tap":207,"hold":14,"slide":8,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11184,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"ものくろっく","romVersion":21006,"notes":{"total":359,"tap":219,"hold":25,"slide":44,"touch":53,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11184,"level_id":3,"level":"12","level_value":12.2,"note_designer":"譜面-100号","romVersion":21006,"notes":{"total":636,"tap":483,"hold":36,"slide":60,"touch":48,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11184,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":667,"tap":498,"hold":15,"slide":116,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2098,"long":false},{"id":1185,"players":9169,"title":"命に嫌われている","utTitle":null,"artist":"カンザキイオリ","albums":["命に嫌われている","命嫌","被生命所厌恶","被生命厌恶","嫌命短","超羽天狼星","被生命所厌恶着","核客男神","嫌命长","命に嫌われている","命嫌","被生命所厌恶","被生命厌恶","嫌命短","超羽天狼星","被生命所厌恶着","核客男神","嫌命长","命に嫌われている","命嫌","被生命所厌恶","被生命厌恶","嫌命短","超羽天狼星","被生命所厌恶着","核客男神","嫌命长"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11185,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21004,"notes":{"total":149,"tap":128,"hold":6,"slide":5,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11185,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21004,"notes":{"total":312,"tap":273,"hold":20,"slide":8,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11185,"level_id":2,"level":"10","level_value":10.2,"note_designer":"Jack","romVersion":21004,"notes":{"total":584,"tap":414,"hold":80,"slide":47,"touch":34,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11185,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21004,"notes":{"total":889,"tap":696,"hold":24,"slide":135,"touch":13,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":983,"long":false},{"id":1186,"players":2363,"title":"アンクローズ・ヒューマン","utTitle":null,"artist":"作曲:カジャ 作詞:傘村トータ 編曲:ねじ式 調声:シリア","albums":["アンクローズ・ヒューマン","敬爱","玻璃心","unclosehuman","unclosed human","unclose human","里表情人2","アンクローズ・ヒューマン","敬爱","玻璃心","unclosehuman","unclosed human","unclose human","里表情人2","アンクローズ・ヒューマン","敬爱","玻璃心","unclosehuman","unclosed human","unclose human","里表情人2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":178,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11186,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21004,"notes":{"total":179,"tap":144,"hold":9,"slide":5,"touch":16,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11186,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":21004,"notes":{"total":336,"tap":299,"hold":12,"slide":8,"touch":15,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11186,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":21004,"notes":{"total":633,"tap":484,"hold":68,"slide":34,"touch":45,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11186,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Safata.Hz","romVersion":21004,"notes":{"total":897,"tap":635,"hold":52,"slide":151,"touch":25,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1006,"long":false},{"id":1187,"players":7645,"title":"乙女解剖","utTitle":null,"artist":"DECO*27","albums":["乙女解剖","解剖","乙女","紫璃","乙女姐婆","乙女解剖","解剖","乙女","紫璃","乙女姐婆","乙女解剖","解剖","乙女","紫璃","乙女姐婆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":134,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11187,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":21004,"notes":{"total":135,"tap":94,"hold":17,"slide":3,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11187,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21004,"notes":{"total":259,"tap":193,"hold":22,"slide":6,"touch":34,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11187,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"サファ太","romVersion":21004,"notes":{"total":388,"tap":265,"hold":57,"slide":40,"touch":18,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11187,"level_id":3,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":21004,"notes":{"total":653,"tap":436,"hold":69,"slide":69,"touch":53,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":984,"long":false},{"id":1188,"players":4154,"title":"絶え間なく藍色","utTitle":null,"artist":"獅子志司","albums":["絶え間なく藍色","绝蓝","绝间蓝色","无尽的蓝色","绝间蓝","蓝色","无尽之蓝","无尽蓝色","超羽天狼星","绝绝子蓝色","絶え間なく藍色","绝蓝","绝间蓝色","无尽的蓝色","绝间蓝","蓝色","无尽之蓝","无尽蓝色","超羽天狼星","绝绝子蓝色","絶え間なく藍色","绝蓝","绝间蓝色","无尽的蓝色","绝间蓝","蓝色","无尽之蓝","无尽蓝色","超羽天狼星","绝绝子蓝色"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11188,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21005,"notes":{"total":110,"tap":78,"hold":11,"slide":5,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11188,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":21005,"notes":{"total":240,"tap":186,"hold":21,"slide":16,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11188,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":371,"tap":263,"hold":56,"slide":15,"touch":31,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11188,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":21005,"notes":{"total":646,"tap":447,"hold":46,"slide":109,"touch":35,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1189,"players":2416,"title":"ガランド","utTitle":null,"artist":"ピコン","albums":["ガランド","别急3.5","触手","噬菌体","garando","airhead","空气头","罐头章鱼","黑色树枝","易拉罐","ガランド","别急3.5","触手","噬菌体","garando","airhead","空气头","罐头章鱼","黑色树枝","易拉罐","ガランド","别急3.5","触手","噬菌体","garando","airhead","空气头","罐头章鱼","黑色树枝","易拉罐"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":93,"releaseDate":"20201001","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11189,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":21005,"notes":{"total":128,"tap":99,"hold":5,"slide":3,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11189,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21005,"notes":{"total":252,"tap":194,"hold":10,"slide":21,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11189,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"某S氏","romVersion":21005,"notes":{"total":377,"tap":250,"hold":50,"slide":6,"touch":63,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11189,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":625,"tap":439,"hold":9,"slide":80,"touch":92,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1190,"players":2069,"title":"とりあえずアナタがいなくなるまえに","utTitle":null,"artist":"作詞作曲:椎名もた 編曲:KTG 映像:Yuma Saito","albums":["とりあえずアナタがいなくなるまえに","电视机","电视","电视头","\uD83D\uDCFA","小电视","总之在你消逝之前","とりあえずアナタがいなくなるまえに","电视机","电视","电视头","\uD83D\uDCFA","小电视","总之在你消逝之前","とりあえずアナタがいなくなるまえに","电视机","电视","电视头","\uD83D\uDCFA","小电视","总之在你消逝之前"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20201001","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11190,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21005,"notes":{"total":151,"tap":130,"hold":5,"slide":7,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11190,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":21005,"notes":{"total":237,"tap":200,"hold":11,"slide":8,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11190,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"サファ太","romVersion":21005,"notes":{"total":339,"tap":237,"hold":37,"slide":18,"touch":23,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11190,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":546,"tap":386,"hold":32,"slide":84,"touch":36,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1191,"players":4450,"title":"明星ギャラクティカ","utTitle":null,"artist":"ナユタン星人","albums":["明星ギャラクティカ","丢人银河号","明星卡拉狄加","超级方向盘","方向盘","银河号","明星","明星银河号","明星ギャラクティカ","丢人银河号","明星卡拉狄加","超级方向盘","方向盘","银河号","明星","明星银河号","明星ギャラクティカ","丢人银河号","明星卡拉狄加","超级方向盘","方向盘","银河号","明星","明星银河号"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":154,"releaseDate":"20201001","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11191,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21005,"notes":{"total":203,"tap":169,"hold":14,"slide":8,"touch":9,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11191,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21005,"notes":{"total":259,"tap":212,"hold":18,"slide":16,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11191,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":498,"tap":389,"hold":54,"slide":15,"touch":28,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11191,"level_id":3,"level":"12","level_value":12.4,"note_designer":"隅田川星人","romVersion":21005,"notes":{"total":720,"tap":409,"hold":139,"slide":48,"touch":79,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1192,"players":2355,"title":"絶対にチョコミントを食べるアオイチャン","utTitle":null,"artist":"GYARI","albums":["絶対にチョコミントを食べるアオイチャン","必须要吃薄荷巧克力味冰淇淋的琴叶葵酱","chocomint ice","薄荷巧克力冰淇淋","薄荷巧克力","琴叶葵","冰淇淋","冰淇凌","绝对","巧克力冰淇淋","绝对食","絶対にチョコミントを食べるアオイチャン","必须要吃薄荷巧克力味冰淇淋的琴叶葵酱","chocomint ice","薄荷巧克力冰淇淋","薄荷巧克力","琴叶葵","冰淇淋","冰淇凌","绝对","巧克力冰淇淋","绝对食","絶対にチョコミントを食べるアオイチャン","必须要吃薄荷巧克力味冰淇淋的琴叶葵酱","chocomint ice","薄荷巧克力冰淇淋","薄荷巧克力","琴叶葵","冰淇淋","冰淇凌","绝对","巧克力冰淇淋","绝对食"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20201030","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11192,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":21005,"notes":{"total":129,"tap":80,"hold":13,"slide":8,"touch":25,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11192,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":21005,"notes":{"total":234,"tap":172,"hold":9,"slide":29,"touch":12,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11192,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":21005,"notes":{"total":481,"tap":338,"hold":70,"slide":24,"touch":12,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11192,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":712,"tap":428,"hold":64,"slide":70,"touch":106,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":922,"long":false},{"id":1193,"players":1586,"title":"デリヘル呼んだら君が来た","utTitle":null,"artist":"ナナホシ管弦楽団","albums":["デリヘル呼んだら君が来た","粉毛","卡姿兰大眼睛","叫了应召女郎结果来的是你","呼君来","应召女郎","デリヘル呼んだら君が来た","粉毛","卡姿兰大眼睛","叫了应召女郎结果来的是你","呼君来","应召女郎","デリヘル呼んだら君が来た","粉毛","卡姿兰大眼睛","叫了应召女郎结果来的是你","呼君来","应召女郎"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20201030","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11193,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21005,"notes":{"total":158,"tap":115,"hold":19,"slide":1,"touch":16,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11193,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":21005,"notes":{"total":352,"tap":284,"hold":22,"slide":26,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11193,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":21005,"notes":{"total":641,"tap":452,"hold":75,"slide":60,"touch":36,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11193,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":996,"tap":740,"hold":31,"slide":115,"touch":71,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":373,"long":false},{"id":1194,"players":7408,"title":"ベノム","utTitle":null,"artist":"かいりきベア feat.flower","albums":["ベノム","猛毒","达咩","咩","\uD83D\uDE45","venom","ベノム","猛毒","达咩","咩","\uD83D\uDE45","venom","陈炫臻","ベノム","猛毒","达咩","咩","\uD83D\uDE45","venom"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":152,"releaseDate":"20201127","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11194,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21005,"notes":{"total":159,"tap":124,"hold":12,"slide":6,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11194,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21005,"notes":{"total":336,"tap":287,"hold":24,"slide":6,"touch":12,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11194,"level_id":2,"level":"9","level_value":9.0,"note_designer":"某S氏","romVersion":21005,"notes":{"total":561,"tap":386,"hold":80,"slide":34,"touch":53,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11194,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":21005,"notes":{"total":833,"tap":633,"hold":34,"slide":87,"touch":35,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1007,"long":false},{"id":1195,"players":4445,"title":"マネマネサイコトロピック","utTitle":null,"artist":"かいりきベア feat.GUMI","albums":["マネマネサイコトロピック","模仿模仿psychotropic","二重身","女同11","分身","两人玩手机","精神回归","模仿模仿","manemane","模仿模仿的精神回归","manemane的精神回归","マネマネサイコトロピック","模仿模仿psychotropic","二重身","女同11","分身","两人玩手机","精神回归","模仿模仿","manemane","模仿模仿的精神回归","manemane的精神回归","マネマネサイコトロピック","模仿模仿psychotropic","二重身","女同11","分身","两人玩手机","精神回归","模仿模仿","manemane","模仿模仿的精神回归","manemane的精神回归"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":210,"releaseDate":"20201127","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11195,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21005,"notes":{"total":156,"tap":120,"hold":25,"slide":4,"touch":4,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11195,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":21005,"notes":{"total":346,"tap":287,"hold":29,"slide":16,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11195,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":21005,"notes":{"total":574,"tap":460,"hold":35,"slide":27,"touch":38,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11195,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":843,"tap":575,"hold":29,"slide":143,"touch":38,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1197,"players":6371,"title":"劣等上等","utTitle":null,"artist":"Giga / 鏡音リン・レン / Vivid BAD SQUAD「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20210121","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11197,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25005,"notes":{"total":101,"tap":78,"hold":9,"slide":4,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11197,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25005,"notes":{"total":189,"tap":134,"hold":10,"slide":8,"touch":33,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11197,"level_id":2,"level":"10","level_value":10.0,"note_designer":"華火職人","romVersion":25005,"notes":{"total":369,"tap":222,"hold":28,"slide":37,"touch":68,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11197,"level_id":3,"level":"13","level_value":13.2,"note_designer":"サファ太","romVersion":25005,"notes":{"total":548,"tap":368,"hold":21,"slide":88,"touch":35,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1198,"players":5710,"title":"アスノヨゾラ哨戒班","utTitle":null,"artist":"Orangestar feat.IA","albums":["アスノヨゾラ哨戒班","哨戒班2","dx烧鸡班","哨戒班","烧鸡班","dx哨戒班","明日的夜空哨戒班","アスノヨゾラ哨戒班","哨戒班2","dx烧鸡班","哨戒班","烧鸡班","dx哨戒班","明日的夜空哨戒班","アスノヨゾラ哨戒班","哨戒班2","dx烧鸡班","哨戒班","烧鸡班","dx哨戒班","明日的夜空哨戒班"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20210121","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11198,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":142,"tap":108,"hold":8,"slide":6,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11198,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21006,"notes":{"total":307,"tap":250,"hold":17,"slide":8,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11198,"level_id":2,"level":"9","level_value":9.0,"note_designer":"隅田川星人","romVersion":21006,"notes":{"total":496,"tap":386,"hold":17,"slide":24,"touch":67,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11198,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":729,"tap":511,"hold":67,"slide":102,"touch":33,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":210,"long":false},{"id":1199,"players":3125,"title":"悪戯センセーション","utTitle":null,"artist":"森羅万象","albums":["悪戯センセーション","大小姐","二小姐","大妹","恶戏sensation","淘气感觉","恶戏","悪戯センセーション","大小姐","二小姐","大妹","恶戏sensation","淘气感觉","恶戏","悪戯センセーション","大小姐","二小姐","大妹","恶戏sensation","淘气感觉","恶戏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":192,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11199,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21004,"notes":{"total":179,"tap":161,"hold":4,"slide":2,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11199,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21004,"notes":{"total":279,"tap":234,"hold":19,"slide":9,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11199,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":21004,"notes":{"total":409,"tap":273,"hold":72,"slide":24,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11199,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ものくろっく","romVersion":21004,"notes":{"total":634,"tap":443,"hold":40,"slide":95,"touch":30,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":933,"long":false},{"id":1200,"players":2600,"title":"Paranoia","utTitle":null,"artist":"DiGiTAL WiNG feat. 花たん","albums":["paranoia","镶金灵梦","妄想症","金色灵梦","paranoia","镶金灵梦","妄想症","金色灵梦","paranoia","镶金灵梦","妄想症","金色灵梦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":150,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11200,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21004,"notes":{"total":211,"tap":175,"hold":6,"slide":2,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11200,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21004,"notes":{"total":329,"tap":254,"hold":26,"slide":12,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11200,"level_id":2,"level":"9","level_value":9.5,"note_designer":"サファ太","romVersion":21004,"notes":{"total":481,"tap":337,"hold":38,"slide":46,"touch":33,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11200,"level_id":3,"level":"13","level_value":13.0,"note_designer":"某S氏","romVersion":21004,"notes":{"total":768,"tap":554,"hold":42,"slide":88,"touch":54,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":666,"long":false},{"id":1201,"players":1389,"title":"絡繰りドール","utTitle":null,"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["絡繰りドール","络繰","络缲","老奶奶与狐狸精","奶奶狐狸","老太婆和九尾狐妖","絡繰","絡繰りドール","络繰","络缲","老奶奶与狐狸精","奶奶狐狸","老太婆和九尾狐妖","絡繰","絡繰りドール","络繰","络缲","老奶奶与狐狸精","奶奶狐狸","老太婆和九尾狐妖","絡繰"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20210205","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11201,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21007,"notes":{"total":143,"tap":120,"hold":8,"slide":2,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11201,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":21007,"notes":{"total":270,"tap":233,"hold":17,"slide":8,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11201,"level_id":2,"level":"9","level_value":9.0,"note_designer":"小鳥遊さん","romVersion":21007,"notes":{"total":421,"tap":315,"hold":29,"slide":44,"touch":23,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11201,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":21007,"notes":{"total":698,"tap":528,"hold":47,"slide":52,"touch":33,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1202,"players":2843,"title":"物凄いヴァイブスで魔理沙が物凄いラップ","utTitle":null,"artist":"魂音泉","albums":["物凄いヴァイブスで魔理沙が物凄いラップ","妹红吸烟","藤原妹红抽大烟","物凄","魔理沙抽烟","妹红打永夜抄","vibes","消声器","夜店魔理沙","妹红抽烟","物凄魔理沙","物凄いヴァイブスで魔理沙が物凄いラップ","妹红吸烟","藤原妹红抽大烟","物凄","魔理沙抽烟","妹红打永夜抄","vibes","消声器","夜店魔理沙","妹红抽烟","物凄魔理沙","物凄いヴァイブスで魔理沙が物凄いラップ","妹红吸烟","藤原妹红抽大烟","物凄","魔理沙抽烟","妹红打永夜抄","vibes","消声器","夜店魔理沙","妹红抽烟","物凄魔理沙"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":173,"releaseDate":"20210205","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11202,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":157,"tap":128,"hold":9,"slide":4,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11202,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21007,"notes":{"total":259,"tap":204,"hold":21,"slide":8,"touch":21,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11202,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":468,"tap":315,"hold":15,"slide":44,"touch":48,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11202,"level_id":3,"level":"13","level_value":13.4,"note_designer":"7.3Hz+Jack","romVersion":21007,"notes":{"total":777,"tap":499,"hold":60,"slide":102,"touch":71,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":1204,"players":4711,"title":"Sweet Requiem","utTitle":null,"artist":"REDALiCE & aran","albums":["sweet requiem","sr","镇魂曲","甜蜜镇魂曲","甜蜜安魂曲","灵梦转圈","塞钱","灵梦镇魂曲","红蓝灵梦","redandblue","sweet requiem","sr","镇魂曲","甜蜜镇魂曲","甜蜜安魂曲","灵梦转圈","塞钱","灵梦镇魂曲","红蓝灵梦","redandblue","sweet requiem","sr","镇魂曲","甜蜜镇魂曲","甜蜜安魂曲","灵梦转圈","塞钱","灵梦镇魂曲","红蓝灵梦","redandblue"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20210205","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11204,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":135,"tap":98,"hold":12,"slide":3,"touch":18,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11204,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21007,"notes":{"total":318,"tap":261,"hold":9,"slide":15,"touch":23,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11204,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":21007,"notes":{"total":492,"tap":355,"hold":52,"slide":39,"touch":23,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11204,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":908,"tap":744,"hold":30,"slide":42,"touch":52,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":979,"long":false},{"id":1205,"players":2333,"title":"Dive into The Sky ~initialized~","utTitle":null,"artist":"A-One","albums":["dive into the sky ~initialized~","dive","潜入天空","风神少女","dive into the sky ~initialized~","dive","潜入天空","风神少女","dive into the sky ~initialized~","dive","潜入天空","风神少女"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":165,"releaseDate":"20210205","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11205,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":147,"tap":121,"hold":10,"slide":5,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11205,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":21007,"notes":{"total":284,"tap":236,"hold":12,"slide":15,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11205,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":21007,"notes":{"total":529,"tap":401,"hold":63,"slide":30,"touch":13,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11205,"level_id":3,"level":"13","level_value":13.0,"note_designer":"小鳥遊さん","romVersion":21007,"notes":{"total":770,"tap":578,"hold":56,"slide":50,"touch":47,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1206,"players":7159,"title":"BATTLE NO.1","utTitle":null,"artist":"TANO*C Sound Team","albums":["battle no.1","战斗,爽!","一战","聚众斗殴","战地一","战地1","tanoc","好多人","阿莫阿莫","打胶第一名","战斗爽","第一战","缝合怪","干架第一名","第一名","音游难忘今宵","14个男人","打架第一","打架第一名","battle no.1","战斗,爽!","一战","聚众斗殴","战地一","战地1","tanoc","好多人","阿莫阿莫","打胶第一名","战斗爽","第一战","缝合怪","干架第一名","第一名","音游难忘今宵","14个男人","打架第一","打架第一名","battle no.1","战斗,爽!","一战","聚众斗殴","战地一","战地1","tanoc","好多人","阿莫阿莫","打胶第一名","战斗爽","第一战","缝合怪","干架第一名","第一名","音游难忘今宵","14个男人","打架第一","打架第一名"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21000,"dxRomVersion":21000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11206,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":21000,"notes":{"total":287,"tap":243,"hold":18,"slide":5,"touch":18,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11206,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21000,"notes":{"total":426,"tap":343,"hold":38,"slide":16,"touch":14,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11206,"level_id":2,"level":"12","level_value":12.2,"note_designer":"Jack","romVersion":21000,"notes":{"total":746,"tap":497,"hold":71,"slide":51,"touch":74,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11206,"level_id":3,"level":"14","level_value":14.5,"note_designer":"ゲキ*チュウマイ Fumen Team","romVersion":21000,"notes":{"total":1200,"tap":762,"hold":65,"slide":103,"touch":134,"break_":136},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1085,"long":false},{"id":1207,"players":8260,"title":"Ether Strike","utTitle":null,"artist":"Akira Complex","albums":["ether strike","my guiding star","\uD83D\uDCE20","零光","白内障","以太冲击","白色电音以太大冲击","乙醚罢工","零光吹喇叭","es","以太攻击","ether strike","my guiding star","\uD83D\uDCE20","零光","白内障","以太冲击","白色电音以太大冲击","乙醚罢工","零光吹喇叭","es","以太攻击","ether strike","my guiding star","\uD83D\uDCE20","零光","白内障","以太冲击","白色电音以太大冲击","乙醚罢工","零光吹喇叭","es","以太攻击"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":156,"releaseDate":"20210108","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11207,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":154,"tap":120,"hold":12,"slide":4,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11207,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21007,"notes":{"total":359,"tap":292,"hold":21,"slide":20,"touch":12,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11207,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"小鳥遊さん","romVersion":21007,"notes":{"total":558,"tap":357,"hold":121,"slide":38,"touch":26,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11207,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"シチミヘルツ","romVersion":21007,"notes":{"total":852,"tap":600,"hold":79,"slide":105,"touch":16,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1208,"players":10445,"title":"Cyaegha","utTitle":null,"artist":"USAO","albums":["cyaegha","赛伊格亚","赛落图亚","完型填空","dabcabcaabcadbaa","绿魔王","塞伊格亚","咲弥","咲弥削吐司","完形填空","花绿青","古神语","赛洛图亚","cyaegha","赛伊格亚","赛落图亚","完型填空","dabcabcaabcadbaa","绿魔王","塞伊格亚","咲弥","咲弥削吐司","完形填空","花绿青","古神语","赛洛图亚","cyaegha","赛伊格亚","赛落图亚","完型填空","dabcabcaabcadbaa","绿魔王","塞伊格亚","咲弥","咲弥削吐司","完形填空","花绿青","古神语","赛洛图亚"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20210108","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11208,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21007,"notes":{"total":199,"tap":174,"hold":7,"slide":2,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11208,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21007,"notes":{"total":391,"tap":312,"hold":24,"slide":14,"touch":25,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11208,"level_id":2,"level":"11","level_value":11.0,"note_designer":"シチミヘルツ","romVersion":21007,"notes":{"total":588,"tap":407,"hold":49,"slide":86,"touch":22,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11208,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":946,"tap":706,"hold":39,"slide":119,"touch":30,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":997,"long":false},{"id":1209,"players":12825,"title":"Grievous Lady","utTitle":null,"artist":"Team Grimoire vs Laur","albums":["grievous lady","老弱病残女","痛苦的女士","生病的女人","病女","对立","gl","有病的女士","对立拉窗帘","grievous lady","老弱病残女","痛苦的女士","生病的女人","病女","对立","gl","有病的女士","对立拉窗帘","才羽毛毛人","grievous lady","老弱病残女","痛苦的女士","生病的女人","病女","对立","gl","有病的女士","对立拉窗帘"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":210,"releaseDate":"20210108","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11209,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21007,"notes":{"total":225,"tap":170,"hold":7,"slide":2,"touch":40,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11209,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":21007,"notes":{"total":442,"tap":378,"hold":14,"slide":16,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11209,"level_id":2,"level":"12","level_value":12.0,"note_designer":"隅田川星人","romVersion":21007,"notes":{"total":712,"tap":504,"hold":89,"slide":55,"touch":47,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11209,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Anomaly Labyrinth","romVersion":21007,"notes":{"total":988,"tap":726,"hold":92,"slide":85,"touch":44,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":751,"long":false},{"id":1210,"players":6342,"title":"c.s.q.n.","utTitle":null,"artist":"Aoi","albums":["c.s.q.n.","草酸氢纳","草酸氢钠","csqn","csdn","\uD83D\uDE11","\uD83D\uDE10","nahc2o4","c.s.q.n.","草酸氢纳","草酸氢钠","csqn","csdn","\uD83D\uDE11","\uD83D\uDE10","nahc2o4","c.s.q.n.","草酸氢纳","草酸氢钠","csqn","csdn","\uD83D\uDE11","\uD83D\uDE10","nahc2o4"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":174,"releaseDate":"20201113","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11210,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21006,"notes":{"total":179,"tap":134,"hold":26,"slide":8,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11210,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":21006,"notes":{"total":285,"tap":223,"hold":29,"slide":11,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11210,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":21006,"notes":{"total":507,"tap":396,"hold":30,"slide":28,"touch":32,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11210,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"七味星人","romVersion":21006,"notes":{"total":852,"tap":500,"hold":174,"slide":71,"touch":81,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1211,"players":2140,"title":"カラッポ・ノンフィクション","utTitle":null,"artist":"Ino(chronoize) feat. 柳瀬マサキ","albums":["カラッポ・ノンフィクション","创世纪","彩色纪实文学","カラッポ・ノンフィクション","创世纪","彩色纪实文学","カラッポ・ノンフィクション","创世纪","彩色纪实文学"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20201113","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11211,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21006,"notes":{"total":146,"tap":102,"hold":16,"slide":10,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11211,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21006,"notes":{"total":240,"tap":170,"hold":34,"slide":13,"touch":21,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11211,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":402,"tap":236,"hold":109,"slide":27,"touch":19,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11211,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":21006,"notes":{"total":827,"tap":631,"hold":46,"slide":96,"touch":46,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2125,"long":false},{"id":1212,"players":4845,"title":"emomomo","utTitle":null,"artist":"Ras","albums":["emomomo","emo","\uD83E\uDD14️","网易云","恶魔摸摸","一般工作师匠","\uD83E\uDD14","e3mo","emomomo","emo","\uD83E\uDD14️","网易云","恶魔摸摸","一般工作师匠","\uD83E\uDD14","e3mo","圣剑4","emomomo","emo","\uD83E\uDD14️","网易云","恶魔摸摸","一般工作师匠","\uD83E\uDD14","e3mo"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":145,"releaseDate":"20201113","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11212,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":171,"tap":138,"hold":11,"slide":10,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11212,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":21006,"notes":{"total":270,"tap":203,"hold":38,"slide":5,"touch":18,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11212,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"小鳥遊さん","romVersion":21006,"notes":{"total":497,"tap":348,"hold":36,"slide":64,"touch":33,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11212,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":21006,"notes":{"total":870,"tap":631,"hold":34,"slide":61,"touch":133,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1213,"players":7284,"title":"Arty Party","utTitle":null,"artist":"yaseta","albums":["arty party","动物派对","小动物银趴","arty","小动物音趴","小动物银啪","小动物银帕","小动物淫趴","银趴","\uD83D\uDC3B\uD83D\uDC31\uD83D\uDC30\uD83D\uDC36雪豹","纵连派对","usao派对","粉兔","usao银趴","artyparty","动物银趴","我和我的动物朋友们","usao音趴","ap","小动物开银趴","动物园","狐朋狗友","arty party","动物派对","小动物银趴","arty","小动物音趴","小动物银啪","小动物银帕","小动物淫趴","银趴","\uD83D\uDC3B\uD83D\uDC31\uD83D\uDC30\uD83D\uDC36雪豹","纵连派对","usao派对","粉兔","usao银趴","artyparty","动物银趴","我和我的动物朋友们","usao音趴","ap","小动物开银趴","动物园","狐朋狗友","arty party","动物派对","小动物银趴","arty","小动物音趴","小动物银啪","小动物银帕","小动物淫趴","银趴","\uD83D\uDC3B\uD83D\uDC31\uD83D\uDC30\uD83D\uDC36雪豹","纵连派对","usao派对","粉兔","usao银趴","artyparty","动物银趴","我和我的动物朋友们","usao音趴","ap","小动物开银趴","动物园","狐朋狗友"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20201225","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21006,"dxRomVersion":21006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11213,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21006,"notes":{"total":157,"tap":124,"hold":16,"slide":2,"touch":12,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11213,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":21006,"notes":{"total":356,"tap":288,"hold":36,"slide":10,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11213,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"サファ太","romVersion":21006,"notes":{"total":522,"tap":352,"hold":59,"slide":60,"touch":20,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11213,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"しちみりこりす","romVersion":21006,"notes":{"total":814,"tap":654,"hold":34,"slide":57,"touch":30,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1214,"players":2166,"title":"Jörqer","utTitle":null,"artist":"owl*tree feat.yu*tree","albums":["jörqer","别急1.5","pvq","qer","猫头鹰","jorqer","joker","小金熊","周可儿","jörqer","别急1.5","pvq","qer","猫头鹰","jorqer","joker","小金熊","周可儿","jörqer","别急1.5","pvq","qer","猫头鹰","jorqer","joker","小金熊","周可儿","j歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":98,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11214,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21004,"notes":{"total":170,"tap":141,"hold":11,"slide":3,"touch":12,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11214,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":21004,"notes":{"total":313,"tap":231,"hold":38,"slide":8,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11214,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"Jack","romVersion":21004,"notes":{"total":609,"tap":449,"hold":75,"slide":24,"touch":42,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11214,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"シチミヘルツ","romVersion":21004,"notes":{"total":803,"tap":616,"hold":27,"slide":63,"touch":75,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":946,"long":false},{"id":1215,"players":4564,"title":"Sqlupp (Camellia's \"Sqleipd*Hiytex\" Remix)","utTitle":null,"artist":"owl*tree Remixed by Camellia","albums":["sqlupp (camellia's \"sqleipd*hiytex\" remix)","sqlupp","手速疯批","色情撸屁屁","色情撸pp","失去了屁屁","孽蜥","色情露屁屁","帅气露屁屁","涩情撸屁屁","酥妻露屁屁","sqlupp (camellia's \"sqleipd*hiytex\" remix)","sqlupp","手速疯批","色情撸屁屁","色情撸pp","失去了屁屁","孽蜥","色情露屁屁","帅气露屁屁","涩情撸屁屁","酥妻露屁屁","飞哥和小佛","sqlupp (camellia's \"sqleipd*hiytex\" remix)","sqlupp","手速疯批","色情撸屁屁","色情撸pp","失去了屁屁","孽蜥","色情露屁屁","帅气露屁屁","涩情撸屁屁","酥妻露屁屁"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":154,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11215,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21004,"notes":{"total":234,"tap":169,"hold":33,"slide":7,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11215,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":21004,"notes":{"total":429,"tap":334,"hold":35,"slide":28,"touch":22,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11215,"level_id":2,"level":"12","level_value":12.2,"note_designer":"小鳥遊さん","romVersion":21004,"notes":{"total":798,"tap":527,"hold":129,"slide":43,"touch":45,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11215,"level_id":3,"level":"14","level_value":14.5,"note_designer":"華火職人","romVersion":21004,"notes":{"total":1201,"tap":844,"hold":68,"slide":68,"touch":107,"break_":114},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1216,"players":5849,"title":"felys -final remix-","utTitle":null,"artist":"onoken","albums":["felys -final remix-","风流韵事","飞叶子","开花歌","felys","非礼死","风流原神","fely","飞雷神","凤梨酥","菲利斯","felys -final remix-","风流韵事","飞叶子","开花歌","felys","非礼死","风流原神","fely","飞雷神","凤梨酥","菲利斯","felys -final remix-","风流韵事","飞叶子","开花歌","felys","非礼死","风流原神","fely","飞雷神","凤梨酥","菲利斯","菲莉丝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21004,"dxRomVersion":21004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11216,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":21004,"notes":{"total":190,"tap":163,"hold":10,"slide":7,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11216,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":21004,"notes":{"total":345,"tap":257,"hold":45,"slide":12,"touch":24,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11216,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":21004,"notes":{"total":598,"tap":432,"hold":57,"slide":62,"touch":38,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11216,"level_id":3,"level":"14","level_value":14.4,"note_designer":"Jack","romVersion":21004,"notes":{"total":1111,"tap":925,"hold":33,"slide":117,"touch":23,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":944,"long":false},{"id":1218,"players":4696,"title":"自傷無色","utTitle":null,"artist":"ササノマリイ / 初音ミク / 25時、ナイトコードで。「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20210121","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11218,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25005,"notes":{"total":91,"tap":68,"hold":4,"slide":2,"touch":15,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11218,"level_id":1,"level":"5","level_value":5.8,"note_designer":"","romVersion":25005,"notes":{"total":177,"tap":140,"hold":10,"slide":9,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11218,"level_id":2,"level":"9","level_value":9.0,"note_designer":"Jack","romVersion":25005,"notes":{"total":210,"tap":101,"hold":58,"slide":18,"touch":30,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11218,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":25005,"notes":{"total":432,"tap":289,"hold":23,"slide":85,"touch":28,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1219,"players":2310,"title":"Prismatic","utTitle":null,"artist":"CielArc","albums":["prismatic","棱镜","\uD83E\uDD17","prismatic","棱镜","\uD83E\uDD17","prismatic","棱镜","\uD83E\uDD17"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20210205","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11219,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":21007,"notes":{"total":149,"tap":114,"hold":14,"slide":3,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11219,"level_id":1,"level":"7","level_value":7.4,"note_designer":"","romVersion":21007,"notes":{"total":395,"tap":358,"hold":14,"slide":3,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11219,"level_id":2,"level":"9","level_value":9.4,"note_designer":"某S氏","romVersion":21007,"notes":{"total":472,"tap":300,"hold":108,"slide":38,"touch":13,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11219,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":21007,"notes":{"total":750,"tap":552,"hold":42,"slide":114,"touch":29,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1221,"players":5450,"title":"≠彡\"/了→","utTitle":null,"artist":"水野健治","albums":["≠彡\"/了→","绝赞熊","太空熊","机密a","宇宙迪拉熊","熊二","キミツアー","≠","kimitour","秘密计划A","三了","火箭熊","キミツア","绝赞天堂","星际传奇","→","≠彡\"/了→","绝赞熊","太空熊","机密a","宇宙迪拉熊","熊二","キミツアー","≠","kimitour","秘密计划A","三了","火箭熊","キミツア","绝赞天堂","星际传奇","→","≠彡\"/了→","绝赞熊","太空熊","机密a","宇宙迪拉熊","熊二","キミツアー","≠","kimitour","秘密计划A","三了","火箭熊","キミツア","绝赞天堂","星际传奇","→","心肺功能检查","不等于三引号斜杠了左箭头","立了"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":222,"releaseDate":"20201001","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":true,"jp":true,"m2l":false,"firstRomVersion":21005,"dxRomVersion":21005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11221,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21005,"notes":{"total":262,"tap":227,"hold":15,"slide":4,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11221,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":21005,"notes":{"total":515,"tap":403,"hold":60,"slide":16,"touch":18,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11221,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":21005,"notes":{"total":720,"tap":543,"hold":93,"slide":43,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11221,"level_id":3,"level":"14","level_value":14.4,"note_designer":"レよ†ょ/∪ヽ”┠ (十,3、了ナニ","romVersion":21005,"notes":{"total":1111,"tap":779,"hold":44,"slide":71,"touch":117,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2704,"long":false},{"id":1222,"players":9575,"title":"BREaK! BREaK! BREaK!","utTitle":{"111222":"[光]BREaK! BREaK! BREaK!"},"artist":"HiTECH NINJA vs Cranky","albums":["break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰","break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰","break! break! break!","爆!爆!爆!","break","kop2","崩坏三","大b歌","破坏破坏破坏","绿绿绿","βββ","崩三","绝赞绝赞绝赞","3b","哔啵拜","爆爆爆","绝赞³","落落落","崩坏3","崩崩崩","bbb","break!break!break!","绝赞!绝赞!绝赞!","不不不","苹果苹果派","三个绝赞","仨绝赞","三绝赞","爆!","哔波掰哔波掰"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"maimai","bpm":165,"releaseDate":"20240315","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":21007,"dxRomVersion":21007,"sdRomVersion":0,"utRomVersion":24003,"dx":{"0":{"id":11222,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":21007,"notes":{"total":207,"tap":172,"hold":10,"slide":8,"touch":0,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11222,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":21007,"notes":{"total":414,"tap":321,"hold":17,"slide":14,"touch":26,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11222,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":21007,"notes":{"total":732,"tap":513,"hold":65,"slide":42,"touch":55,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11222,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"サファ太 vs -ZONE- SaFaRi","romVersion":21007,"notes":{"total":1106,"tap":797,"hold":76,"slide":121,"touch":62,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111222":{"id":111222,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":1104,"tap":0,"hold":5,"slide":0,"touch":60,"break_":1039},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1223,"players":6606,"title":"Heavenly Blast","utTitle":null,"artist":"xi","albums":["heavenly blast","\uD83D\uDE06","皇冠二","天暴","天堡","雪王","hb","天爆","跟你爆了","皇冠2","fd3","爆","o(≧∇≦)o","蜜雪冰城","heavenly blast","\uD83D\uDE06","皇冠二","天暴","天堡","雪王","hb","天爆","跟你爆了","皇冠2","fd3","爆","o(≧∇≦)o","蜜雪冰城","heavenly blast","\uD83D\uDE06","皇冠二","天暴","天堡","雪王","hb","天爆","跟你爆了","皇冠2","fd3","爆","o(≧∇≦)o","蜜雪冰城","球球"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":234,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11223,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22000,"notes":{"total":214,"tap":174,"hold":19,"slide":6,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11223,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":22000,"notes":{"total":535,"tap":444,"hold":15,"slide":32,"touch":22,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11223,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":22000,"notes":{"total":761,"tap":581,"hold":49,"slide":46,"touch":49,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11223,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"The ALiEN","romVersion":22000,"notes":{"total":1169,"tap":892,"hold":84,"slide":71,"touch":45,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1224,"players":7210,"title":"Paradisoda","utTitle":null,"artist":"魂音泉","albums":["paradisoda","侧漏","苏打","天堂汽水","sp+主题曲","soda","天堂苏打","splashplus主题曲","splash+主题曲","苏打天堂","泳装乙姬","快乐水","paradisoda","侧漏","苏打","天堂汽水","sp+主题曲","soda","天堂苏打","splashplus主题曲","splash+主题曲","苏打天堂","泳装乙姬","快乐水","paradisoda","侧漏","苏打","天堂汽水","sp+主题曲","soda","天堂苏打","splashplus主题曲","splash+主题曲","苏打天堂","泳装乙姬","快乐水"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":135,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11224,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":160,"tap":128,"hold":13,"slide":7,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11224,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22000,"notes":{"total":325,"tap":257,"hold":20,"slide":12,"touch":24,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11224,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":22000,"notes":{"total":431,"tap":290,"hold":33,"slide":41,"touch":31,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11224,"level_id":3,"level":"13","level_value":13.1,"note_designer":"シチミヘルツ","romVersion":22000,"notes":{"total":771,"tap":508,"hold":35,"slide":100,"touch":94,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2487,"long":false},{"id":1225,"players":4922,"title":"VANTABLACK RAVER","utTitle":null,"artist":"DIVELA feat.桐谷こむぎ","albums":["vantablack raver","黑化乙姬","红眼乙姬","哈吉马利诺雷","电鳗乙姬","完美挑战曲乙姬","吴乙凡","放电乙姬","黑乙姬","⚡乙姬⚡","乙姬红温","黑己姬","伞墨","电音乙姬","黑神话:乙姬","狂暴乙姬","乙姬丰胸","上单乙姬","vantablack raver","黑化乙姬","红眼乙姬","哈吉马利诺雷","电鳗乙姬","完美挑战曲乙姬","吴乙凡","放电乙姬","黑乙姬","⚡乙姬⚡","乙姬红温","黑己姬","伞墨","电音乙姬","黑神话:乙姬","狂暴乙姬","乙姬丰胸","上单乙姬","vantablack raver","黑化乙姬","红眼乙姬","哈吉马利诺雷","电鳗乙姬","完美挑战曲乙姬","吴乙凡","放电乙姬","黑乙姬","⚡乙姬⚡","乙姬红温","黑己姬","伞墨","电音乙姬","黑神话:乙姬","狂暴乙姬","乙姬丰胸","上单乙姬"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11225,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22000,"notes":{"total":148,"tap":116,"hold":13,"slide":7,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11225,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22000,"notes":{"total":304,"tap":234,"hold":16,"slide":14,"touch":31,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11225,"level_id":2,"level":"11","level_value":11.1,"note_designer":"Jack","romVersion":22000,"notes":{"total":507,"tap":344,"hold":77,"slide":52,"touch":22,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11225,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":884,"tap":685,"hold":5,"slide":75,"touch":98,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1226,"players":4298,"title":"時計の国のジェミニ","utTitle":null,"artist":"黒魔","albums":["時計の国のジェミニ","时针之国","时针","钟表之国","时计","时针国","时计之国","时钟","时钟之国","时之国","时计国","时钟国","時計の国のジェミニ","时针之国","时针","钟表之国","时计","时针国","时计之国","时钟","时钟之国","时之国","时计国","时钟国","時計の国のジェミニ","时针之国","时针","钟表之国","时计","时针国","时计之国","时钟","时钟之国","时之国","时计国","时钟国"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11226,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22000,"notes":{"total":170,"tap":135,"hold":17,"slide":4,"touch":13,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11226,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22000,"notes":{"total":302,"tap":225,"hold":23,"slide":27,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11226,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":497,"tap":354,"hold":64,"slide":21,"touch":46,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11226,"level_id":3,"level":"13","level_value":13.0,"note_designer":"華火職人","romVersion":22000,"notes":{"total":690,"tap":441,"hold":30,"slide":48,"touch":115,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1227,"players":6000,"title":"Xenovcipher","utTitle":null,"artist":"Juggernaut.","albums":["xenovcipher","冰火人","离神","远古巫灵","星召起飞","异种密码","泽拉斯","棺材板","终极猎手","xenovcipher","冰火人","离神","远古巫灵","星召起飞","异种密码","泽拉斯","棺材板","终极猎手","飞升机器人","让我来朵蜜你吧","志强","至强","intel至强","xeon","xenovcipher","冰火人","离神","远古巫灵","星召起飞","异种密码","泽拉斯","棺材板","终极猎手"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":210,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22000,"notes":{"total":196,"tap":156,"hold":11,"slide":8,"touch":10,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11227,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22000,"notes":{"total":401,"tap":318,"hold":27,"slide":19,"touch":29,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11227,"level_id":2,"level":"12","level_value":12.5,"note_designer":"小鳥遊さん","romVersion":22000,"notes":{"total":772,"tap":527,"hold":96,"slide":67,"touch":54,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11227,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":22000,"notes":{"total":982,"tap":665,"hold":77,"slide":113,"touch":74,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1228,"players":6991,"title":"星めぐり、果ての君へ。","utTitle":null,"artist":"TAKU1175 ft.駄々子","albums":["星めぐり、果ての君へ。","星果","星果君","星斗流转、赴你为终","星间巡游致尽头的你","\uD83E\uDD7A","星めぐり、果ての君へ。","星果","星果君","星斗流转、赴你为终","星间巡游致尽头的你","\uD83E\uDD7A","星めぐり、果ての君へ。","星果","星果君","星斗流转、赴你为终","星间巡游致尽头的你","\uD83E\uDD7A"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20210528","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11228,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22001,"notes":{"total":179,"tap":138,"hold":24,"slide":11,"touch":5,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11228,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22001,"notes":{"total":345,"tap":249,"hold":25,"slide":35,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11228,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"隅田川星人","romVersion":22001,"notes":{"total":520,"tap":373,"hold":54,"slide":55,"touch":23,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11228,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"隅田川華火大会","romVersion":22001,"notes":{"total":720,"tap":506,"hold":52,"slide":80,"touch":53,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11228,"level_id":4,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":22001,"notes":{"total":842,"tap":640,"hold":32,"slide":94,"touch":58,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2192,"long":false},{"id":1229,"players":4796,"title":"スローアライズ","utTitle":null,"artist":"Endorfin.","albums":["スローアライズ","慢排列","鲸鱼情侣","男同牵手","slowarise","スローアライズ","慢排列","鲸鱼情侣","男同牵手","slowarise","スローアライズ","慢排列","鲸鱼情侣","男同牵手","slowarise","鲸鱼"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20210528","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11229,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22001,"notes":{"total":136,"tap":95,"hold":20,"slide":4,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11229,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22001,"notes":{"total":255,"tap":173,"hold":20,"slide":22,"touch":31,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11229,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"シチミヘルツ","romVersion":22001,"notes":{"total":428,"tap":310,"hold":41,"slide":39,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11229,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"群青リコリス","romVersion":22001,"notes":{"total":556,"tap":396,"hold":38,"slide":71,"touch":43,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1230,"players":9570,"title":"チエルカ/エソテリカ","utTitle":null,"artist":"ツミキ × 宮下遊","albums":["チエルカ/エソテリカ","探寻秘密","千工儿力","呐呐呐","呐呐呐呐","呐","擦玻璃","捏","铅汞","倒挂金钩","企鹅卢卡","黄鼠狼","探寻/秘密","消防员","宫下游","倒挂白毛","4/5","倒立消防员","渊下宫","若叶睦","摔倒","条形码","工力工力","チエルカ","cerca/esoterica","小绿人","チエルカ/エソテリカ","探寻秘密","千工儿力","呐呐呐","呐呐呐呐","呐","擦玻璃","捏","铅汞","倒挂金钩","企鹅卢卡","黄鼠狼","探寻/秘密","消防员","宫下游","倒挂白毛","4/5","倒立消防员","渊下宫","若叶睦","摔倒","条形码","工力工力","チエルカ","cerca/esoterica","小绿人","チエルカ/エソテリカ","探寻秘密","千工儿力","呐呐呐","呐呐呐呐","呐","擦玻璃","捏","铅汞","倒挂金钩","企鹅卢卡","黄鼠狼","探寻/秘密","消防员","宫下游","倒挂白毛","4/5","倒立消防员","渊下宫","若叶睦","摔倒","条形码","工力工力","チエルカ","cerca/esoterica","小绿人"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20210528","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11230,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22001,"notes":{"total":222,"tap":175,"hold":22,"slide":6,"touch":13,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11230,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":22001,"notes":{"total":445,"tap":356,"hold":22,"slide":12,"touch":38,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11230,"level_id":2,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":741,"tap":561,"hold":94,"slide":37,"touch":16,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11230,"level_id":3,"level":"14","level_value":14.3,"note_designer":"Safata.Hz","romVersion":22001,"notes":{"total":1118,"tap":800,"hold":49,"slide":123,"touch":73,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1231,"players":6346,"title":"生命不詳","utTitle":null,"artist":"蜂屋ななし","albums":["生命不詳","不知死活","死不明白","半死不活","生母不详","生命不详","生命不詳","不知死活","死不明白","半死不活","生母不详","生命不详","生命不詳","不知死活","死不明白","半死不活","生母不详","生命不详"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20210528","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11231,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22001,"notes":{"total":178,"tap":151,"hold":17,"slide":2,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11231,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22001,"notes":{"total":381,"tap":298,"hold":42,"slide":13,"touch":24,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11231,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":22001,"notes":{"total":596,"tap":323,"hold":148,"slide":50,"touch":59,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11231,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":830,"tap":537,"hold":53,"slide":137,"touch":94,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1232,"players":9679,"title":"Never Give Up!","utTitle":null,"artist":"nanobii","albums":["never give up!","nevergiveup","绝不认输","永不言弃","你被骗了","永不放弃","nevergonnagiveyouup","从不给上","ngu","rickroll","永远不给上","不给上","never give up!","nevergiveup","绝不认输","永不言弃","你被骗了","永不放弃","nevergonnagiveyouup","从不给上","ngu","rickroll","永远不给上","不给上","never give up!","nevergiveup","绝不认输","永不言弃","你被骗了","永不放弃","nevergonnagiveyouup","从不给上","ngu","rickroll","永远不给上","不给上"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":171,"releaseDate":"20210723","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11232,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22002,"notes":{"total":155,"tap":131,"hold":7,"slide":8,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11232,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22002,"notes":{"total":327,"tap":245,"hold":25,"slide":23,"touch":27,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11232,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":495,"tap":340,"hold":43,"slide":54,"touch":53,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11232,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"7.3連発華火","romVersion":22002,"notes":{"total":747,"tap":485,"hold":73,"slide":112,"touch":57,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11232,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"鳩ホルダー","romVersion":22002,"notes":{"total":759,"tap":499,"hold":84,"slide":74,"touch":85,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1233,"players":4736,"title":"Starry Colors","utTitle":null,"artist":"BlackY feat. Risa Yuzuki","albums":["starry colors","星彩","魔爪","星色","斯大林格勒","星之彩","starry colors","星彩","魔爪","星色","斯大林格勒","星之彩","starry colors","星彩","魔爪","星色","斯大林格勒","星之彩"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":177,"releaseDate":"20210723","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11233,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22002,"notes":{"total":168,"tap":138,"hold":14,"slide":6,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11233,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22002,"notes":{"total":338,"tap":259,"hold":37,"slide":25,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11233,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":521,"tap":405,"hold":65,"slide":31,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11233,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ロシェ@ペンギン","romVersion":22002,"notes":{"total":930,"tap":674,"hold":60,"slide":99,"touch":78,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1234,"players":6633,"title":"ほしぞらスペクタクル","utTitle":null,"artist":"奏音","albums":["ほしぞらスペクタクル","星空奇观","水母姐","珊瑚宫心海","水母娘","水母","巫贼","水母妹","星球妹","奏音","星际奇观","ほしぞらスペクタクル","星空奇观","水母姐","珊瑚宫心海","水母娘","水母","巫贼","水母妹","星球妹","奏音","星际奇观","ほしぞらスペクタクル","星空奇观","水母姐","珊瑚宫心海","水母娘","水母","巫贼","水母妹","星球妹","奏音","星际奇观"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20250214","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11234,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22002,"notes":{"total":210,"tap":157,"hold":16,"slide":12,"touch":22,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11234,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22002,"notes":{"total":426,"tap":318,"hold":30,"slide":45,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11234,"level_id":2,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":22002,"notes":{"total":762,"tap":583,"hold":59,"slide":50,"touch":60,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11234,"level_id":3,"level":"14","level_value":14.4,"note_designer":"シチミヘルツ","romVersion":22002,"notes":{"total":1179,"tap":823,"hold":60,"slide":69,"touch":202,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1235,"players":13020,"title":"VIIIbit Explorer","utTitle":null,"artist":"Lime","albums":["viiibit explorer","5*8-30/2+3bit","8bit浏览器","八比特管理器","8bit","8比特","8比特浏览器","巴比特","八比特浏览器","八位探索者","八比特","海葵姐","浏览器","大手子","dx八比特","viiibit explorer","5*8-30/2+3bit","8bit浏览器","八比特管理器","8bit","8比特","8比特浏览器","巴比特","八比特浏览器","八位探索者","八比特","海葵姐","浏览器","大手子","dx八比特","viiibit explorer","5*8-30/2+3bit","8bit浏览器","八比特管理器","8bit","8比特","8比特浏览器","巴比特","八比特浏览器","八位探索者","八比特","海葵姐","浏览器","大手子","dx八比特","dx8bit"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20210723","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":23007,"utRomVersion":0,"dx":{"0":{"id":11235,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22002,"notes":{"total":255,"tap":225,"hold":8,"slide":4,"touch":9,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11235,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22002,"notes":{"total":424,"tap":351,"hold":20,"slide":14,"touch":29,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11235,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":22002,"notes":{"total":825,"tap":606,"hold":75,"slide":72,"touch":46,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11235,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"-ZONE- SaFaRi","romVersion":22002,"notes":{"total":999,"tap":738,"hold":28,"slide":75,"touch":70,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1235,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":23007,"notes":{"total":227,"tap":195,"hold":16,"slide":4,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1235,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":23007,"notes":{"total":383,"tap":332,"hold":12,"slide":11,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1235,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"翠楼屋","romVersion":23007,"notes":{"total":656,"tap":472,"hold":67,"slide":72,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1235,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Jack","romVersion":23007,"notes":{"total":1111,"tap":831,"hold":59,"slide":122,"touch":0,"break_":99},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2363,"long":false},{"id":1236,"players":8248,"title":"Last Samurai","utTitle":null,"artist":"Street","albums":["last samurai","绝地武士","11月的雨","拆弹","六月雨","唯我武士","六月的食","星星武士","拼好饭","年末的雨","六月的雨","拉斯特萨姆热爱","最后的武士","dx四月雨","最后武士","十一月的雨","last炫","武士","别急5","黄金船","lastsamurai","last samurai","绝地武士","11月的雨","拆弹","六月雨","唯我武士","六月的食","星星武士","拼好饭","年末的雨","六月的雨","拉斯特萨姆热爱","最后的武士","dx四月雨","最后武士","十一月的雨","last炫","武士","别急5","黄金船","lastsamurai","拆弹专家","last samurai","绝地武士","11月的雨","拆弹","六月雨","唯我武士","六月的食","星星武士","拼好饭","年末的雨","六月的雨","拉斯特萨姆热爱","最后的武士","dx四月雨","最后武士","十一月的雨","last炫","武士","别急5","黄金船","lastsamurai"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":57,"releaseDate":"20210625","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11236,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22003,"notes":{"total":172,"tap":126,"hold":13,"slide":4,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11236,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22003,"notes":{"total":271,"tap":243,"hold":7,"slide":10,"touch":5,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11236,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":247,"tap":154,"hold":36,"slide":44,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11236,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":22003,"notes":{"total":449,"tap":290,"hold":42,"slide":105,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1237,"players":5708,"title":"蒼穹舞楽","utTitle":null,"artist":"Capchii","albums":["蒼穹舞楽","妍酱","苍穹","斗破苍穹","菅穹舞乐","苍穹舞乐","神里绫人","蒼穹舞楽","妍酱","苍穹","斗破苍穹","菅穹舞乐","苍穹舞乐","神里绫人","蒼穹舞楽","妍酱","苍穹","斗破苍穹","菅穹舞乐","苍穹舞乐","神里绫人"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":195,"releaseDate":"20210625","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11237,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22003,"notes":{"total":201,"tap":160,"hold":5,"slide":8,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11237,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22003,"notes":{"total":389,"tap":303,"hold":14,"slide":22,"touch":38,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11237,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":22003,"notes":{"total":688,"tap":498,"hold":68,"slide":43,"touch":57,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11237,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ぴちネコ","romVersion":22003,"notes":{"total":878,"tap":610,"hold":61,"slide":98,"touch":78,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2194,"long":false},{"id":1238,"players":5174,"title":"AMABIE","utTitle":null,"artist":"OSTER project","albums":["amabie","没妈","阿妈别","阿妈比","abie","啊麻痹","阿玛别","啊妈逼","amabie","没妈","阿妈别","阿妈比","abie","啊麻痹","阿玛别","啊妈逼","amabie","没妈","阿妈别","阿妈比","abie","啊麻痹","阿玛别","啊妈逼"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20210625","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11238,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22003,"notes":{"total":221,"tap":202,"hold":4,"slide":5,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11238,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":22003,"notes":{"total":411,"tap":328,"hold":23,"slide":25,"touch":26,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11238,"level_id":2,"level":"12","level_value":12.4,"note_designer":"ぴちネコ","romVersion":22003,"notes":{"total":612,"tap":374,"hold":44,"slide":57,"touch":77,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11238,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":932,"tap":748,"hold":37,"slide":59,"touch":82,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1239,"players":2197,"title":"オーケー? オーライ!","utTitle":null,"artist":"五十嵐 撫子(CV:花井 美春)","albums":["オーケー? オーライ!","ok","3q","ok all right","?!","オーケー? オーライ!","ok","3q","ok all right","?!","オーケー? オーライ!","ok","3q","ok all right","?!"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":150,"releaseDate":"20210409","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11239,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":172,"tap":151,"hold":9,"slide":5,"touch":6,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11239,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22001,"notes":{"total":338,"tap":276,"hold":26,"slide":18,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11239,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":498,"tap":322,"hold":109,"slide":24,"touch":10,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11239,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":752,"tap":540,"hold":26,"slide":139,"touch":36,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":683,"long":false},{"id":1240,"players":1575,"title":"サヨナラフリーウェイ","utTitle":null,"artist":"萩原 七々瀬(CV:東城 日沙子)","albums":["サヨナラフリーウェイ","再见","再见高速公路","抑郁症","我有抑郁症","サヨナラフリーウェイ","再见","再见高速公路","抑郁症","我有抑郁症","サヨナラフリーウェイ","再见","再见高速公路","抑郁症","我有抑郁症"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":170,"releaseDate":"20210409","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11240,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":133,"tap":110,"hold":11,"slide":5,"touch":6,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11240,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22001,"notes":{"total":288,"tap":232,"hold":18,"slide":13,"touch":16,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11240,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":351,"tap":249,"hold":55,"slide":32,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11240,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":22001,"notes":{"total":536,"tap":407,"hold":34,"slide":70,"touch":9,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":729,"long":false},{"id":1241,"players":4249,"title":"単一指向性オーバーブルーム","utTitle":null,"artist":"葛城 華(CV:丸岡 和佳奈)","albums":["単一指向性オーバーブルーム","开花","单一指向性","单向性","单一","单一手癖性","大额头","単一指向性オーバーブルーム","开花","单一指向性","单向性","单一","单一手癖性","大额头","単一指向性オーバーブルーム","开花","单一指向性","单向性","单一","单一手癖性","大额头"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":158,"releaseDate":"20210409","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11241,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":171,"tap":130,"hold":24,"slide":3,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11241,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22001,"notes":{"total":358,"tap":295,"hold":17,"slide":13,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11241,"level_id":2,"level":"10","level_value":10.2,"note_designer":"ぴちネコ","romVersion":22001,"notes":{"total":574,"tap":364,"hold":68,"slide":42,"touch":74,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11241,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Redarrow","romVersion":22001,"notes":{"total":924,"tap":635,"hold":95,"slide":91,"touch":44,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11241,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":1080,"tap":801,"hold":45,"slide":118,"touch":93,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":849,"long":false},{"id":1242,"players":1716,"title":"みなえをチェック!","utTitle":null,"artist":"小野 美苗(CV:伊藤 美来)","albums":["みなえをチェック!","美苗","口水歌","指挥棒","注目","みなえをチェック!","美苗","口水歌","指挥棒","注目","みなえをチェック!","美苗","口水歌","指挥棒","注目"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":178,"releaseDate":"20210409","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11242,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":175,"tap":136,"hold":23,"slide":2,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11242,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22001,"notes":{"total":421,"tap":342,"hold":27,"slide":13,"touch":31,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11242,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":515,"tap":368,"hold":62,"slide":38,"touch":15,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11242,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ロシェ@ペンギン","romVersion":22001,"notes":{"total":938,"tap":631,"hold":57,"slide":133,"touch":95,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":859,"long":false},{"id":1243,"players":2829,"title":"ハジマリノピアノ","utTitle":null,"artist":"ゆゆうた","albums":["ハジマリノピアノ","大灵通","yyut","钢琴","哈吉玛丽弄钢琴","最初的钢琴","ハジマリノピアノ","大灵通","yyut","钢琴","哈吉玛丽弄钢琴","最初的钢琴","ハジマリノピアノ","大灵通","yyut","钢琴","哈吉玛丽弄钢琴","最初的钢琴"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20210401","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11243,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22000,"notes":{"total":204,"tap":161,"hold":14,"slide":8,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11243,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22000,"notes":{"total":354,"tap":277,"hold":20,"slide":25,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11243,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ぴちネコ","romVersion":22000,"notes":{"total":597,"tap":360,"hold":64,"slide":60,"touch":73,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11243,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":982,"tap":849,"hold":17,"slide":86,"touch":18,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":828,"long":false},{"id":1246,"players":2554,"title":"BOUNCE & DANCE","utTitle":null,"artist":"IOSYS TRAX","albums":["bounce & dance","弹舞","弹力舞","又蹦又跳","小白兔","小星","弹跳","bounce&dance","bounce dance","bounce & dance","弹舞","弹力舞","又蹦又跳","小白兔","小星","弹跳","bounce&dance","bounce dance","bounce & dance","弹舞","弹力舞","又蹦又跳","小白兔","小星","弹跳","bounce&dance","bounce dance"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":135,"releaseDate":"20210903","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11246,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22003,"notes":{"total":189,"tap":164,"hold":10,"slide":7,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11246,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22003,"notes":{"total":370,"tap":304,"hold":32,"slide":11,"touch":20,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11246,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":22003,"notes":{"total":643,"tap":463,"hold":105,"slide":41,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11246,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"シチミッピー","romVersion":22003,"notes":{"total":999,"tap":711,"hold":114,"slide":76,"touch":71,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2782,"long":false},{"id":1247,"players":1911,"title":"Kiss Me Kiss","utTitle":null,"artist":"曲:大畑拓也/歌:bitter flavor [桜井 春菜(CV:近藤 玲奈)、早乙女 彩華(CV:中島 唯)]","albums":["kiss me kiss","kiss","qwq","kissmeass","亲我亲","kiss me kiss","kiss","qwq","kissmeass","亲我亲","女同100","洛珩","kmk","kiss me kiss","kiss","qwq","kissmeass","亲我亲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20210903","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11247,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22003,"notes":{"total":125,"tap":97,"hold":15,"slide":7,"touch":4,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11247,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22003,"notes":{"total":328,"tap":283,"hold":12,"slide":21,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11247,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":484,"tap":292,"hold":106,"slide":37,"touch":41,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11247,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22003,"notes":{"total":719,"tap":522,"hold":80,"slide":77,"touch":27,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1248,"players":7281,"title":"MEGATON BLAST","utTitle":null,"artist":"BlackY vs. Yooh","albums":["megaton blast","百万吨爆炸","华尔兹2","mb","威震天爆炸","早濑优香","高濑梨绪","mfy","核爆","百万吨爆","优香","体操服优香","megaton blast","百万吨爆炸","华尔兹2","mb","威震天爆炸","早濑优香","高濑梨绪","mfy","核爆","百万吨爆","优香","体操服优香","高濑梨绪考斯普雷体操服优香大皮鼓随机坐④一位群u","megaton blast","百万吨爆炸","华尔兹2","mb","威震天爆炸","早濑优香","高濑梨绪","mfy","核爆","百万吨爆","优香","体操服优香"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":194,"releaseDate":"20210903","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11248,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22003,"notes":{"total":266,"tap":237,"hold":5,"slide":12,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11248,"level_id":1,"level":"9","level_value":9.5,"note_designer":"","romVersion":22003,"notes":{"total":814,"tap":737,"hold":10,"slide":7,"touch":35,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11248,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"シチミヘルツ","romVersion":22003,"notes":{"total":956,"tap":654,"hold":117,"slide":82,"touch":26,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11248,"level_id":3,"level":"14","level_value":14.3,"note_designer":"The ALiEN vs. Phoenix","romVersion":22003,"notes":{"total":1238,"tap":864,"hold":141,"slide":60,"touch":110,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":865,"long":false},{"id":1249,"players":4043,"title":"Splash Dance!!","utTitle":null,"artist":"曲:Q-MHz/歌:オンゲキシューターズ","albums":["splash dance!!","五个音击小女孩","爽舞","水花之舞","泳装2","splash dance","splash dance!!","五个音击小女孩","爽舞","水花之舞","泳装2","splash dance","splash dance!!","五个音击小女孩","爽舞","水花之舞","泳装2","splash dance"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":155,"releaseDate":"20210903","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11249,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22003,"notes":{"total":182,"tap":137,"hold":16,"slide":6,"touch":16,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11249,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22003,"notes":{"total":347,"tap":222,"hold":36,"slide":23,"touch":38,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11249,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":22003,"notes":{"total":612,"tap":420,"hold":41,"slide":49,"touch":48,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11249,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":992,"tap":784,"hold":24,"slide":105,"touch":39,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2227,"long":false},{"id":1253,"players":1796,"title":"おジャ魔女カーニバル!!","utTitle":null,"artist":"covered by 光吉猛修","albums":["おジャ魔女カーニバル!!","小魔女","光吉猛修小魔女","魔女","小魔女嘉年华","光吉猛修","おジャ魔女カーニバル!!","小魔女","光吉猛修小魔女","魔女","小魔女嘉年华","光吉猛修","おジャ魔女カーニバル!!","小魔女","光吉猛修小魔女","魔女","小魔女嘉年华","光吉猛修"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":147,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11253,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":162,"tap":125,"hold":10,"slide":10,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11253,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22000,"notes":{"total":282,"tap":233,"hold":9,"slide":12,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11253,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":451,"tap":274,"hold":59,"slide":9,"touch":26,"break_":83},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11253,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":22000,"notes":{"total":760,"tap":499,"hold":36,"slide":88,"touch":63,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1255,"players":2545,"title":"タケモトピアノCMソング","utTitle":null,"artist":"タケモトピアノCM","albums":["タケモトピアノcmソング","猫和老鼠开头","原谅你了小鬼","广告","钢琴广告","广告歌","0120370009","机厅老板快乐歌","超级变变变","卖钢琴","cm","竹本钢琴","原谅你了,小鬼!","电话号码","タケモトピアノcmソング","猫和老鼠开头","原谅你了小鬼","广告","钢琴广告","广告歌","0120370009","机厅老板快乐歌","超级变变变","卖钢琴","cm","竹本钢琴","原谅你了,小鬼!","电话号码","タケモトピアノcmソング","猫和老鼠开头","原谅你了小鬼","广告","钢琴广告","广告歌","0120370009","机厅老板快乐歌","超级变变变","卖钢琴","cm","竹本钢琴","原谅你了,小鬼!","电话号码"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":174,"releaseDate":"20210401","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11255,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":52,"tap":19,"hold":13,"slide":4,"touch":14,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11255,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22000,"notes":{"total":108,"tap":74,"hold":8,"slide":9,"touch":0,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11255,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":170,"tap":111,"hold":12,"slide":20,"touch":19,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11255,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":310,"tap":179,"hold":5,"slide":45,"touch":44,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1260,"players":3386,"title":"ネガティブ進化論","utTitle":null,"artist":"DECO*27","albums":["ネガティブ進化論","negative","比倒拇指的女孩","达尔文","进化论","\uD83D\uDC4E","消极进化论","弟中之弟进化论","\uD83D\uDC4E\uD83C\uDFFB","弟中之弟","ネガティブ進化論","negative","比倒拇指的女孩","达尔文","进化论","\uD83D\uDC4E","消极进化论","弟中之弟进化论","\uD83D\uDC4E\uD83C\uDFFB","弟中之弟","ネガティブ進化論","negative","比倒拇指的女孩","达尔文","进化论","\uD83D\uDC4E","消极进化论","弟中之弟进化论","\uD83D\uDC4E\uD83C\uDFFB","弟中之弟"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11260,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":139,"tap":107,"hold":9,"slide":4,"touch":9,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11260,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22000,"notes":{"total":242,"tap":184,"hold":22,"slide":11,"touch":16,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11260,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"隅田川星人","romVersion":22000,"notes":{"total":355,"tap":223,"hold":27,"slide":48,"touch":49,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11260,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":22000,"notes":{"total":691,"tap":491,"hold":100,"slide":53,"touch":39,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1261,"players":3039,"title":"雨とペトラ","utTitle":null,"artist":"バルーン","albums":["雨とペトラ","雨伞","☂","雨","雨与佩特拉","雨和佩特拉","伞","佩特拉","雨とペトラ","雨伞","☂","雨","雨与佩特拉","雨和佩特拉","伞","佩特拉","雨とペトラ","雨伞","☂","雨","雨与佩特拉","雨和佩特拉","伞","佩特拉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":195,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11261,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":172,"tap":138,"hold":16,"slide":4,"touch":12,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11261,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22000,"notes":{"total":337,"tap":290,"hold":13,"slide":14,"touch":13,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11261,"level_id":2,"level":"9","level_value":9.0,"note_designer":"隅田川星人","romVersion":22000,"notes":{"total":451,"tap":315,"hold":23,"slide":22,"touch":81,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11261,"level_id":3,"level":"12","level_value":12.4,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":721,"tap":530,"hold":26,"slide":106,"touch":48,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":740,"long":false},{"id":1262,"players":1836,"title":"永遠にゲームで対戦したいキリタン","utTitle":null,"artist":"GYARI","albums":["永遠にゲームで対戦したいキリタン","东北往事","切蒲英打电动","对战游戏","切蒲英","东北切蒲英","肝帝打不赢欧皇","猫耳","永远都想玩对战游戏的切蒲英","对战","永远","主播","永远对战","永远都想对战游戏","永遠にゲームで対戦したいキリタン","东北往事","切蒲英打电动","对战游戏","切蒲英","东北切蒲英","肝帝打不赢欧皇","猫耳","永远都想玩对战游戏的切蒲英","对战","永远","主播","永远对战","永远都想对战游戏","永遠にゲームで対戦したいキリタン","东北往事","切蒲英打电动","对战游戏","切蒲英","东北切蒲英","肝帝打不赢欧皇","猫耳","永远都想玩对战游戏的切蒲英","对战","永远","主播","永远对战","永远都想对战游戏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":126,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11262,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22000,"notes":{"total":124,"tap":99,"hold":13,"slide":3,"touch":8,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11262,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22000,"notes":{"total":239,"tap":171,"hold":24,"slide":17,"touch":22,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11262,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":442,"tap":323,"hold":52,"slide":12,"touch":12,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11262,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"小鳥遊さん","romVersion":22000,"notes":{"total":729,"tap":509,"hold":63,"slide":48,"touch":66,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2080,"long":false},{"id":1263,"players":10393,"title":"KING","utTitle":null,"artist":"Kanaria","albums":["king","汉堡王","\uD83D\uDC51","姐就是女王","无名指抠牙","剔牙","浮游生物","小夫","无名指扣牙","burger king","霸者","王","king","汉堡王","\uD83D\uDC51","姐就是女王","无名指抠牙","剔牙","浮游生物","小夫","无名指扣牙","burger king","霸者","王","才羽毛毛入","我","king","汉堡王","\uD83D\uDC51","姐就是女王","无名指抠牙","剔牙","浮游生物","小夫","无名指扣牙","burger king","霸者","王"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":166,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11263,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":133,"tap":103,"hold":13,"slide":3,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11263,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":22000,"notes":{"total":309,"tap":242,"hold":12,"slide":11,"touch":36,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11263,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":22000,"notes":{"total":522,"tap":382,"hold":48,"slide":34,"touch":30,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11263,"level_id":3,"level":"13","level_value":13.0,"note_designer":"サファ太","romVersion":22000,"notes":{"total":769,"tap":572,"hold":57,"slide":86,"touch":27,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2018,"long":false},{"id":1264,"players":7025,"title":"幽霊東京","utTitle":null,"artist":"Ayase","albums":["幽霊東京","幽灵东京","诱0东京","杨陵东京","幽灵京东","幽灵线东京","汐子","东京","黑子","幽灵北京","幽霊東京","幽灵东京","诱0东京","杨陵东京","幽灵京东","幽灵线东京","汐子","东京","黑子","幽灵北京","幽霊東京","幽灵东京","诱0东京","杨陵东京","幽灵京东","幽灵线东京","汐子","东京","黑子","幽灵北京"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":124,"releaseDate":"20210428","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11264,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":22001,"notes":{"total":88,"tap":66,"hold":11,"slide":3,"touch":7,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11264,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22001,"notes":{"total":281,"tap":227,"hold":25,"slide":14,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11264,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"隅田川星人","romVersion":22001,"notes":{"total":437,"tap":325,"hold":47,"slide":25,"touch":34,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11264,"level_id":3,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":22001,"notes":{"total":672,"tap":452,"hold":68,"slide":60,"touch":78,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2102,"long":false},{"id":1265,"players":4360,"title":"Alice in 冷凍庫","utTitle":null,"artist":"Orangestar","albums":["alice in 冷凍庫","alice in 冷冻库","哦哦哦","爱丽丝","爱丽丝在冰箱","冰箱","冷冻库","冷死爱丽丝","冻死爱丽丝","alice in 冷凍庫","alice in 冷冻库","哦哦哦","爱丽丝","爱丽丝在冰箱","冰箱","冷冻库","冷死爱丽丝","冻死爱丽丝","alice in 冷凍庫","alice in 冷冻库","哦哦哦","爱丽丝","爱丽丝在冰箱","冰箱","冷冻库","冷死爱丽丝","冻死爱丽丝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":176,"releaseDate":"20210709","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11265,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":133,"tap":118,"hold":6,"slide":2,"touch":6,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11265,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22002,"notes":{"total":287,"tap":238,"hold":19,"slide":14,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11265,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":447,"tap":347,"hold":54,"slide":24,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11265,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22002,"notes":{"total":643,"tap":437,"hold":69,"slide":81,"touch":50,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1266,"players":2514,"title":"キラメキ居残り大戦争","utTitle":null,"artist":"森羅万象","albums":["キラメキ居残り大戦争","女同大战争","居残","女同2","女同歌","大战争","居残大战争","キラメキ居残り大戦争","女同大战争","居残","女同2","女同歌","大战争","居残大战争","キラメキ居残り大戦争","女同大战争","居残","女同2","女同歌","大战争","居残大战争"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":212,"releaseDate":"20210709","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11266,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22002,"notes":{"total":173,"tap":136,"hold":17,"slide":2,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11266,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22002,"notes":{"total":366,"tap":270,"hold":42,"slide":24,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11266,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":22002,"notes":{"total":568,"tap":434,"hold":48,"slide":29,"touch":25,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11266,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":798,"tap":536,"hold":38,"slide":135,"touch":41,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1267,"players":1766,"title":"ディカディズム","utTitle":null,"artist":"ぬゆり","albums":["ディカディズム","皇帝小兵","皇帝排队","年代主义","decadism","ディカディズム","皇帝小兵","皇帝排队","年代主义","decadism","ディカディズム","皇帝小兵","皇帝排队","年代主义","decadism"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":124,"releaseDate":"20210805","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11267,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22003,"notes":{"total":139,"tap":115,"hold":9,"slide":6,"touch":8,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11267,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22003,"notes":{"total":286,"tap":230,"hold":18,"slide":11,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11267,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":534,"tap":423,"hold":77,"slide":17,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11267,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":22003,"notes":{"total":844,"tap":663,"hold":81,"slide":53,"touch":20,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1268,"players":3072,"title":"猫猫的宇宙論","utTitle":null,"artist":"ナユタン星人","albums":["猫猫的宇宙論","猫猫宇宙论","宇宙论","学猫叫","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDC31\uD83D\uDD90\uD83C\uDFFB️","猫猫的宇宙论","猫猫的宇宙論","猫猫宇宙论","宇宙论","学猫叫","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDC31\uD83D\uDD90\uD83C\uDFFB️","猫猫的宇宙论","猫猫的宇宙論","猫猫宇宙论","宇宙论","学猫叫","\uD83D\uDD90\uD83C\uDFFB️\uD83D\uDC31\uD83D\uDD90\uD83C\uDFFB️","猫猫的宇宙论"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":134,"releaseDate":"20210805","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11268,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22003,"notes":{"total":183,"tap":152,"hold":9,"slide":4,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11268,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22003,"notes":{"total":318,"tap":270,"hold":18,"slide":9,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11268,"level_id":2,"level":"9","level_value":9.5,"note_designer":"隅田川星人","romVersion":22003,"notes":{"total":493,"tap":288,"hold":62,"slide":42,"touch":87,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11268,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"隅田川星人","romVersion":22003,"notes":{"total":738,"tap":528,"hold":72,"slide":68,"touch":48,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1269,"players":1400,"title":"ラットが死んだnew words","utTitle":null,"artist":"P.I.N.A.","albums":["ラットが死んだnew words","老鼠死掉了","硕鼠死亡","硕鼠死亡newwords","老鼠死掉了newwords","死","芝麻街","鼠鼠似了","白老鼠死掉了","疫医","ラットが死んだnew words","老鼠死掉了","硕鼠死亡","硕鼠死亡newwords","老鼠死掉了newwords","死","芝麻街","鼠鼠似了","白老鼠死掉了","疫医","ラットが死んだnew words","老鼠死掉了","硕鼠死亡","硕鼠死亡newwords","老鼠死掉了newwords","死","芝麻街","鼠鼠似了","白老鼠死掉了","疫医"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":146,"releaseDate":"20210805","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11269,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22003,"notes":{"total":129,"tap":105,"hold":9,"slide":5,"touch":9,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11269,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22003,"notes":{"total":275,"tap":216,"hold":17,"slide":12,"touch":27,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11269,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":22003,"notes":{"total":375,"tap":245,"hold":52,"slide":42,"touch":32,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11269,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":783,"tap":604,"hold":36,"slide":101,"touch":34,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1270,"players":4407,"title":"阿吽のビーツ","utTitle":null,"artist":"羽生まゐご","albums":["阿吽のビーツ","阿吽","阿吽的节奏","阿牛","阿哞的节奏","小灵通青春版","阿牛小卖铺","阿哞","阿吽のビーツ","阿吽","阿吽的节奏","阿牛","阿哞的节奏","小灵通青春版","阿牛小卖铺","阿哞","阿吽のビーツ","阿吽","阿吽的节奏","阿牛","阿哞的节奏","小灵通青春版","阿牛小卖铺","阿哞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":103,"releaseDate":"20210805","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11270,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":22003,"notes":{"total":104,"tap":73,"hold":10,"slide":6,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11270,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":22003,"notes":{"total":236,"tap":173,"hold":20,"slide":15,"touch":20,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11270,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":22003,"notes":{"total":474,"tap":352,"hold":55,"slide":22,"touch":34,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11270,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":683,"tap":557,"hold":11,"slide":76,"touch":31,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1271,"players":7618,"title":"再会","utTitle":null,"artist":"はるまきごはん","albums":["再会","see you again","码头","再会","see you again","码头","再会","see you again","码头"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":137,"releaseDate":"20210820","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11271,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":22003,"notes":{"total":99,"tap":77,"hold":8,"slide":6,"touch":7,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11271,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22003,"notes":{"total":267,"tap":211,"hold":15,"slide":17,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11271,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":418,"tap":315,"hold":30,"slide":27,"touch":42,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11271,"level_id":3,"level":"12","level_value":12.2,"note_designer":"シチミヘルツ","romVersion":22003,"notes":{"total":643,"tap":508,"hold":25,"slide":73,"touch":22,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1272,"players":7115,"title":"約束","utTitle":null,"artist":"はるまきごはん","albums":["約束","约束","压库锁库","约定","码头","約束","约束","压库锁库","约定","码头","約束","约束","压库锁库","约定","码头"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":136,"releaseDate":"20210820","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11272,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":22003,"notes":{"total":112,"tap":95,"hold":9,"slide":2,"touch":5,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11272,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":22003,"notes":{"total":231,"tap":169,"hold":23,"slide":27,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11272,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":292,"tap":168,"hold":60,"slide":33,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11272,"level_id":3,"level":"12","level_value":12.0,"note_designer":"シチミヘルツ","romVersion":22003,"notes":{"total":548,"tap":366,"hold":44,"slide":92,"touch":30,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1273,"players":2749,"title":"トラフィック・ジャム","utTitle":null,"artist":"煮ル果実","albums":["トラフィック・ジャム","traffic jam","堵车","黄埔","交通堵塞","煮儿果实","黄谱","黄歌","交通阻塞","trafficjam","jam","トラフィック・ジャム","traffic jam","堵车","黄埔","交通堵塞","煮儿果实","黄谱","黄歌","交通阻塞","trafficjam","jam","トラフィック・ジャム","traffic jam","堵车","黄埔","交通堵塞","煮儿果实","黄谱","黄歌","交通阻塞","trafficjam","jam"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20210820","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11273,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22003,"notes":{"total":127,"tap":92,"hold":13,"slide":4,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11273,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22003,"notes":{"total":277,"tap":206,"hold":20,"slide":16,"touch":31,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11273,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":22003,"notes":{"total":479,"tap":267,"hold":124,"slide":27,"touch":45,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11273,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":22003,"notes":{"total":896,"tap":496,"hold":174,"slide":104,"touch":92,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2204,"long":false},{"id":1274,"players":4374,"title":"アルティメットセンパイ","utTitle":null,"artist":"ピノキオピー","albums":["アルティメットセンパイ","究极先辈","小黄毛","先辈","究极前辈","アルティメットセンパイ","究极先辈","小黄毛","先辈","究极前辈","アルティメットセンパイ","究极先辈","小黄毛","先辈","究极前辈"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20210820","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22003,"dxRomVersion":22003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11274,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22003,"notes":{"total":134,"tap":109,"hold":11,"slide":2,"touch":11,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11274,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":22003,"notes":{"total":324,"tap":236,"hold":34,"slide":9,"touch":32,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11274,"level_id":2,"level":"9","level_value":9.0,"note_designer":"畳返し","romVersion":22003,"notes":{"total":424,"tap":274,"hold":54,"slide":38,"touch":33,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11274,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":22003,"notes":{"total":743,"tap":523,"hold":45,"slide":95,"touch":46,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1275,"players":2387,"title":"ロストワードクロニカル","utTitle":null,"artist":"東方LostWord feat.いとうかなこ","albums":["ロストワードクロニカル","东方归言录","lostword","归言录","lost word chronicle","东方号哭","lw","ロストワードクロニカル","东方归言录","lostword","归言录","lost word chronicle","东方号哭","lw","ロストワードクロニカル","东方归言录","lostword","归言录","lost word chronicle","东方号哭","lw"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":184,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11275,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22000,"notes":{"total":182,"tap":149,"hold":15,"slide":8,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11275,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22000,"notes":{"total":385,"tap":335,"hold":14,"slide":11,"touch":13,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11275,"level_id":2,"level":"10","level_value":10.0,"note_designer":"隅田川星人","romVersion":22000,"notes":{"total":531,"tap":417,"hold":26,"slide":57,"touch":21,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11275,"level_id":3,"level":"13","level_value":13.4,"note_designer":"某S氏","romVersion":22000,"notes":{"total":921,"tap":660,"hold":46,"slide":121,"touch":37,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2083,"long":false},{"id":1276,"players":2827,"title":"今、誰が為のかがり火へ","utTitle":null,"artist":"幽閉サテライト","albums":["今、誰が為のかがり火へ","现在,为了谁的篝火","今谁为","今","今谁","今谁为火","今、誰が為のかがり火へ","现在,为了谁的篝火","今谁为","今","今谁","今谁为火","今、誰が為のかがり火へ","现在,为了谁的篝火","今谁为","今","今谁","今谁为火"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":156,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11276,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":167,"tap":135,"hold":10,"slide":5,"touch":10,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11276,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22000,"notes":{"total":313,"tap":261,"hold":16,"slide":12,"touch":18,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11276,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"隅田川星人","romVersion":22000,"notes":{"total":404,"tap":293,"hold":24,"slide":41,"touch":42,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11276,"level_id":3,"level":"12","level_value":12.4,"note_designer":"アミノハバキリ","romVersion":22000,"notes":{"total":674,"tap":499,"hold":45,"slide":93,"touch":20,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1277,"players":1735,"title":"Melody!","utTitle":null,"artist":"あ~るの~と(いえろ~ぜぶら)","albums":["melody!","旋律","melody","美乐蒂","东方绚彩歌","马老弟","melody!","旋律","melody","美乐蒂","东方绚彩歌","马老弟","melody!","旋律","melody","美乐蒂","东方绚彩歌","马老弟"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":175,"releaseDate":"20210611","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11277,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":151,"tap":110,"hold":16,"slide":4,"touch":16,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11277,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22002,"notes":{"total":351,"tap":277,"hold":21,"slide":27,"touch":19,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11277,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":22002,"notes":{"total":524,"tap":380,"hold":54,"slide":32,"touch":46,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11277,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー respects for 某S氏","romVersion":22002,"notes":{"total":721,"tap":544,"hold":52,"slide":91,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":505,"long":false},{"id":1278,"players":2138,"title":"下克上々","utTitle":null,"artist":"豚乙女","albums":["下克上々","少女炼狱2","0克1","田忌赛马","正邪","下克上","下克上々","少女炼狱2","0克1","田忌赛马","正邪","下克上","下克上々","少女炼狱2","0克1","田忌赛马","正邪","下克上"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":164,"releaseDate":"20210611","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11278,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":133,"tap":101,"hold":15,"slide":6,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11278,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":22002,"notes":{"total":328,"tap":252,"hold":25,"slide":10,"touch":29,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11278,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":472,"tap":338,"hold":56,"slide":51,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11278,"level_id":3,"level":"13","level_value":13.0,"note_designer":"隅田川星人","romVersion":22002,"notes":{"total":827,"tap":632,"hold":54,"slide":79,"touch":16,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1279,"players":2036,"title":"ハウリング","utTitle":null,"artist":"Liz Triangle","albums":["ハウリング","黄灵梦","黄","yellow","howling","嚎叫","ハウリング","黄灵梦","黄","yellow","howling","嚎叫","ハウリング","黄灵梦","黄","yellow","howling","嚎叫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":184,"releaseDate":"20210611","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11279,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":151,"tap":122,"hold":12,"slide":6,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11279,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22002,"notes":{"total":299,"tap":237,"hold":25,"slide":19,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11279,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":424,"tap":320,"hold":45,"slide":33,"touch":10,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11279,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":22002,"notes":{"total":684,"tap":404,"hold":52,"slide":111,"touch":83,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2249,"long":false},{"id":1280,"players":3276,"title":"トランスダンスアナーキー","utTitle":null,"artist":"暁Records","albums":["トランスダンスアナーキー","trance","尬舞姐妹","女同9","trance dance anarchy","トランスダンスアナーキー","trance","尬舞姐妹","女同9","trance dance anarchy","トランスダンスアナーキー","trance","尬舞姐妹","女同9","trance dance anarchy"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":195,"releaseDate":"20210611","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11280,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22002,"notes":{"total":215,"tap":188,"hold":8,"slide":4,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11280,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22002,"notes":{"total":402,"tap":267,"hold":53,"slide":13,"touch":57,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11280,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":22002,"notes":{"total":653,"tap":490,"hold":37,"slide":28,"touch":48,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11280,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":932,"tap":656,"hold":25,"slide":178,"touch":29,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":743,"long":false},{"id":1281,"players":9866,"title":"Re:End of a Dream","utTitle":null,"artist":"uma vs. モリモリあつし","albums":["re:end of a dream","re:end of dream","梦终","美女背靠背","百合","幻梦","re","梦结束","梦的终点","完梦","终梦","俩女人","女同4","reend","re:end of a dream","re:end of dream","梦终","美女背靠背","百合","幻梦","re","梦结束","梦的终点","完梦","终梦","俩女人","女同4","reend","re:end of a dream","re:end of dream","梦终","美女背靠背","百合","幻梦","re","梦结束","梦的终点","完梦","终梦","俩女人","女同4","reend"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":212,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11281,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22000,"notes":{"total":227,"tap":162,"hold":28,"slide":6,"touch":25,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11281,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22000,"notes":{"total":422,"tap":351,"hold":9,"slide":13,"touch":29,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11281,"level_id":2,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":22000,"notes":{"total":629,"tap":469,"hold":72,"slide":37,"touch":0,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11281,"level_id":3,"level":"14","level_value":14.4,"note_designer":"ぴちネコ","romVersion":22000,"notes":{"total":1095,"tap":707,"hold":164,"slide":60,"touch":114,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2218,"long":false},{"id":1282,"players":7802,"title":"もぺもぺ","utTitle":null,"artist":"LeaF & Optie","albums":["もぺもぺ","恐怖小花","もペもペ","毛坯毛坯","恶心","小花","草","小花花","儿童金曲","早八早八","好船","小蓝花","闪光弹","小白船","毛八","儿童鞋垫","mope","毛八毛八","鞋垫","烟火大会","毛胚毛胚","宝宝金曲","电棍电棍","mopemope","儿歌","もぺもぺ","恐怖小花","もペもペ","毛坯毛坯","恶心","小花","草","小花花","儿童金曲","早八早八","好船","小蓝花","闪光弹","小白船","毛八","儿童鞋垫","mope","毛八毛八","鞋垫","烟火大会","毛胚毛胚","宝宝金曲","电棍电棍","mopemope","儿歌","もぺもぺ","恐怖小花","もペもペ","毛坯毛坯","恶心","小花","草","小花花","儿童金曲","早八早八","好船","小蓝花","闪光弹","小白船","毛八","儿童鞋垫","mope","毛八毛八","鞋垫","烟火大会","毛胚毛胚","宝宝金曲","电棍电棍","mopemope","儿歌","蓝花","四川变脸"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":100,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11282,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22000,"notes":{"total":108,"tap":82,"hold":8,"slide":3,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11282,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22000,"notes":{"total":248,"tap":159,"hold":28,"slide":11,"touch":42,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11282,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":22000,"notes":{"total":350,"tap":214,"hold":34,"slide":44,"touch":24,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11282,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"さふぁた","romVersion":22000,"notes":{"total":676,"tap":305,"hold":221,"slide":40,"touch":44,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2397,"long":false},{"id":1283,"players":7274,"title":"Sound Chimera","utTitle":null,"artist":"Laur","albums":["sound chimera","声音奇美拉","天使马杀鸡","小奇美拉","音奇美拉","奇美拉","奇美拉之声","himera","灵梦撒币plus","sound chimera","声音奇美拉","天使马杀鸡","小奇美拉","音奇美拉","奇美拉","奇美拉之声","himera","灵梦撒币plus","sound chimera","声音奇美拉","天使马杀鸡","小奇美拉","音奇美拉","奇美拉","奇美拉之声","himera","灵梦撒币plus"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22000,"dxRomVersion":22000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11283,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22000,"notes":{"total":183,"tap":157,"hold":10,"slide":4,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11283,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22000,"notes":{"total":415,"tap":355,"hold":21,"slide":15,"touch":12,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11283,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":22000,"notes":{"total":735,"tap":606,"hold":29,"slide":42,"touch":27,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11283,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":22000,"notes":{"total":981,"tap":656,"hold":88,"slide":87,"touch":124,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":911,"long":false},{"id":1284,"players":4576,"title":"CO5M1C R4ILR0AD","utTitle":null,"artist":"kanone","albums":["co5m1c r4ilr0ad","514","⭐️奴","cosmic railroad","银河铁路","星怒铁道","宇宙铁路","水晶火车","银河铁道","星奴","火车头","星铁","宇宙铁道","星穹轨道","宇宙泥头车","railroad","雷切2","银河列车","五氧化碳","星穹铁道","崩坏星穹铁道","5140","铁路","co5","co5m1c r4ilr0ad","514","⭐️奴","cosmic railroad","银河铁路","星怒铁道","宇宙铁路","水晶火车","银河铁道","星奴","火车头","星铁","宇宙铁道","星穹轨道","宇宙泥头车","railroad","雷切2","银河列车","五氧化碳","星穹铁道","崩坏星穹铁道","5140","铁路","co5","co5m1c r4ilr0ad","514","⭐️奴","cosmic railroad","银河铁路","星怒铁道","宇宙铁路","水晶火车","银河铁道","星奴","火车头","星铁","宇宙铁道","星穹轨道","宇宙泥头车","railroad","雷切2","银河列车","五氧化碳","星穹铁道","崩坏星穹铁道","5140","铁路","co5"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20210416","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11284,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22001,"notes":{"total":172,"tap":145,"hold":10,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11284,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22001,"notes":{"total":364,"tap":292,"hold":23,"slide":12,"touch":23,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11284,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"サファ太","romVersion":22001,"notes":{"total":593,"tap":448,"hold":26,"slide":64,"touch":21,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11284,"level_id":3,"level":"14","level_value":14.4,"note_designer":"シチミヘルツ","romVersion":22001,"notes":{"total":990,"tap":787,"hold":58,"slide":75,"touch":35,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":752,"long":false},{"id":1285,"players":3027,"title":"MAKE IT FUNKY NOW","utTitle":null,"artist":"DOT96","albums":["make it funky now","milf","两面包夹芝士","\uD83E\uDD6A","makeitfuckynow","sandwich","两面包夹培根","三明治","mifn","funky","make it funky now","milf","两面包夹芝士","\uD83E\uDD6A","makeitfuckynow","sandwich","两面包夹培根","三明治","mifn","funky","make it funky now","milf","两面包夹芝士","\uD83E\uDD6A","makeitfuckynow","sandwich","两面包夹培根","三明治","mifn","funky"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":146,"releaseDate":"20210416","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11285,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22001,"notes":{"total":151,"tap":126,"hold":10,"slide":4,"touch":9,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11285,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22001,"notes":{"total":284,"tap":199,"hold":25,"slide":12,"touch":40,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11285,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"みそかつ侍","romVersion":22001,"notes":{"total":484,"tap":288,"hold":87,"slide":53,"touch":44,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11285,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":787,"tap":453,"hold":43,"slide":118,"touch":155,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1286,"players":2884,"title":"Rush-More","utTitle":null,"artist":"litmus*","albums":["rush-more","rush","冲多","冲多了","冲多点","冲很多","冲更多","rushmore","多冲点","交友不慎","rush more","削除冲多了","多冲","rush-more","rush","冲多","冲多了","冲多点","冲很多","冲更多","rushmore","多冲点","交友不慎","rush more","削除冲多了","多冲","总统山","rush-more","rush","冲多","冲多了","冲多点","冲很多","冲更多","rushmore","多冲点","交友不慎","rush more","削除冲多了","多冲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20210416","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22001,"dxRomVersion":22001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11286,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22001,"notes":{"total":118,"tap":90,"hold":11,"slide":4,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11286,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22001,"notes":{"total":313,"tap":247,"hold":12,"slide":13,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11286,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":552,"tap":391,"hold":81,"slide":12,"touch":52,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11286,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":22001,"notes":{"total":857,"tap":645,"hold":48,"slide":111,"touch":35,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1287,"players":5264,"title":"Strange Bar","utTitle":null,"artist":"Laur","albums":["strange bar","奇怪的条","陌生酒吧","sb","别急11","酒老二","奇怪罩杯","小金熊","奇怪的酒吧","奇怪的胸罩","酒吧","奇艺酒吧","怪酒吧","怪吧","sb2","死神之棒","奇怪酒吧","strange bar","奇怪的条","陌生酒吧","sb","别急11","酒老二","奇怪罩杯","小金熊","奇怪的酒吧","奇怪的胸罩","酒吧","奇艺酒吧","怪酒吧","怪吧","sb2","死神之棒","奇怪酒吧","strange bar","奇怪的条","陌生酒吧","sb","别急11","酒老二","奇怪罩杯","小金熊","奇怪的酒吧","奇怪的胸罩","酒吧","奇艺酒吧","怪酒吧","怪吧","sb2","死神之棒","奇怪酒吧"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":110,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11287,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22002,"notes":{"total":131,"tap":110,"hold":9,"slide":4,"touch":7,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11287,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":22002,"notes":{"total":379,"tap":276,"hold":25,"slide":19,"touch":49,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11287,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":555,"tap":378,"hold":59,"slide":46,"touch":61,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11287,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"シチミヘルツ","romVersion":22002,"notes":{"total":882,"tap":677,"hold":49,"slide":104,"touch":16,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1288,"players":8263,"title":"Big Daddy","utTitle":null,"artist":"USAO","albums":["big daddy","星野爱高潮","大爸爸","\uD83E\uDD75","汤姆猫","大坝","无敌爸爸","大爹","星野爱","notail","\uD83E\uDD29","大爸","nero","比格大帝","阿嘿颜","大跌","big daddy","星野爱高潮","大爸爸","\uD83E\uDD75","汤姆猫","大坝","无敌爸爸","大爹","星野爱","notail","\uD83E\uDD29","大爸","nero","比格大帝","阿嘿颜","大跌","tonyncl","big daddy","星野爱高潮","大爸爸","\uD83E\uDD75","汤姆猫","大坝","无敌爸爸","大爹","星野爱","notail","\uD83E\uDD29","大爸","nero","比格大帝","阿嘿颜","大跌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11288,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22002,"notes":{"total":169,"tap":138,"hold":15,"slide":4,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11288,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":22002,"notes":{"total":462,"tap":376,"hold":17,"slide":16,"touch":35,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11288,"level_id":2,"level":"12","level_value":12.0,"note_designer":"シチミヘルツ","romVersion":22002,"notes":{"total":721,"tap":464,"hold":103,"slide":88,"touch":47,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11288,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":22002,"notes":{"total":1000,"tap":677,"hold":77,"slide":144,"touch":57,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1289,"players":5883,"title":"ベースラインやってる?笑","utTitle":null,"artist":"かめりあ feat. ななひら","albums":["ベースラインやってる?笑","lol","变态萝莉","bassline","什么什么笑","颜文字","女流氓","妹妹v50","痴女nanahira","学妹恰个v","女痴汉","笑","nanahira","舞时","妹妹恰个v","ベースラインやってる?笑","lol","变态萝莉","bassline","什么什么笑","颜文字","女流氓","妹妹v50","痴女nanahira","学妹恰个v","女痴汉","笑","nanahira","舞时","妹妹恰个v","ベースラインやってる?笑","lol","变态萝莉","bassline","什么什么笑","颜文字","女流氓","妹妹v50","痴女nanahira","学妹恰个v","女痴汉","笑","nanahira","舞时","妹妹恰个v"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":128,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11289,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22002,"notes":{"total":126,"tap":105,"hold":9,"slide":3,"touch":7,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11289,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22002,"notes":{"total":317,"tap":223,"hold":44,"slide":17,"touch":23,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11289,"level_id":2,"level":"11","level_value":11.0,"note_designer":"隅田川星人","romVersion":22002,"notes":{"total":524,"tap":297,"hold":56,"slide":45,"touch":108,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11289,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":692,"tap":447,"hold":39,"slide":90,"touch":63,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1096,"long":false},{"id":1290,"players":3058,"title":"ALiVE","utTitle":null,"artist":"REDALiCE","albums":["alive","余华","嗷呜","活着","活","alive","余华","嗷呜","活着","活","alive","余华","嗷呜","活着","活"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11290,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":124,"tap":106,"hold":7,"slide":3,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11290,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22002,"notes":{"total":307,"tap":256,"hold":11,"slide":14,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11290,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":22002,"notes":{"total":461,"tap":369,"hold":40,"slide":28,"touch":14,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11290,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ぴちネコ","romVersion":22002,"notes":{"total":748,"tap":465,"hold":75,"slide":93,"touch":95,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1291,"players":4135,"title":"ヒミツCULT","utTitle":null,"artist":"t+pazolite","albums":["ヒミツcult","教程曲","秘密信徒","t+p的海底谭","吹月2","cult","我们都很棒","ヒミツcult","教程曲","秘密信徒","t+p的海底谭","吹月2","cult","我们都很棒","ヒミツcult","教程曲","秘密信徒","t+p的海底谭","吹月2","cult","我们都很棒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11291,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":171,"tap":140,"hold":9,"slide":2,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11291,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22002,"notes":{"total":434,"tap":348,"hold":23,"slide":17,"touch":32,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11291,"level_id":2,"level":"11","level_value":11.5,"note_designer":"隅田川星人","romVersion":22002,"notes":{"total":683,"tap":474,"hold":67,"slide":48,"touch":80,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11291,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":22002,"notes":{"total":913,"tap":671,"hold":48,"slide":99,"touch":50,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1292,"players":4202,"title":"MEGATON KICK","utTitle":null,"artist":"DJ Myosuke","albums":["megaton kick","大飞脚","mk","百万吨级踢腿","钢踢","踢腿","kick","兆吨","百万吨踢","大白腿","李宁踹开线","百万吨飞踢","拉普兰德","megaton kick","大飞脚","mk","百万吨级踢腿","钢踢","踢腿","kick","兆吨","百万吨踢","大白腿","李宁踹开线","百万吨飞踢","拉普兰德","megaton kick","大飞脚","mk","百万吨级踢腿","钢踢","踢腿","kick","兆吨","百万吨踢","大白腿","李宁踹开线","百万吨飞踢","拉普兰德"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11292,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22002,"notes":{"total":181,"tap":142,"hold":17,"slide":2,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11292,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":22002,"notes":{"total":426,"tap":329,"hold":16,"slide":23,"touch":48,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11292,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":682,"tap":516,"hold":61,"slide":9,"touch":74,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11292,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ロシアンブラック","romVersion":22002,"notes":{"total":938,"tap":631,"hold":39,"slide":113,"touch":102,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1293,"players":5673,"title":"LOSE CONTROL","utTitle":null,"artist":"Massive New Krew","albums":["lose control","失控","饕餮尤魔","失去控制","塔露拉","lose control","失控","饕餮尤魔","失去控制","塔露拉","lose control","失控","饕餮尤魔","失去控制","塔露拉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20210514","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22002,"dxRomVersion":22002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11293,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22002,"notes":{"total":125,"tap":103,"hold":4,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11293,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22002,"notes":{"total":274,"tap":175,"hold":48,"slide":11,"touch":33,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11293,"level_id":2,"level":"12","level_value":12.4,"note_designer":"ぴちネコ","romVersion":22002,"notes":{"total":494,"tap":300,"hold":43,"slide":32,"touch":65,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11293,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":22002,"notes":{"total":615,"tap":390,"hold":19,"slide":139,"touch":50,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1294,"players":6760,"title":"宿星審判","utTitle":null,"artist":"suzu","albums":["宿星審判","审判","宿星","奏明天空","宿暗示","曹逸凡","星怒审判","雷电法王","竹雨","爱蜜莉雅","大慈树王","纳希坦","纳西妲","原神草神","宿星审判","宿星審判","审判","宿星","奏明天空","宿暗示","曹逸凡","星怒审判","雷电法王","竹雨","爱蜜莉雅","大慈树王","纳希坦","纳西妲","原神草神","宿星审判","宿星審判","审判","宿星","奏明天空","宿暗示","曹逸凡","星怒审判","雷电法王","竹雨","爱蜜莉雅","大慈树王","纳希坦","纳西妲","原神草神","宿星审判","宿"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":189,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11294,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22004,"notes":{"total":174,"tap":120,"hold":20,"slide":5,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11294,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22004,"notes":{"total":391,"tap":304,"hold":11,"slide":26,"touch":36,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11294,"level_id":2,"level":"12","level_value":12.2,"note_designer":"サファ太","romVersion":22004,"notes":{"total":687,"tap":517,"hold":65,"slide":50,"touch":34,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11294,"level_id":3,"level":"14","level_value":14.3,"note_designer":"ぴちネコ","romVersion":22004,"notes":{"total":1074,"tap":738,"hold":103,"slide":77,"touch":110,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":972,"long":false},{"id":1295,"players":6619,"title":"脳天直撃","utTitle":null,"artist":"黒沢ダイスケ VS 穴山大輔","albums":["脳天直撃","脑天直击","脑天直寄","头部受到打击","脑天","脑花","脑瘫直击","生鱼片蘸芥末","脑瘫至极","脳天直撃","脑天直击","脑天直寄","头部受到打击","脑天","脑花","脑瘫直击","生鱼片蘸芥末","脑瘫至极","脳天直撃","脑天直击","脑天直寄","头部受到打击","脑天","脑花","脑瘫直击","生鱼片蘸芥末","脑瘫至极"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":145,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11295,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22004,"notes":{"total":281,"tap":196,"hold":20,"slide":9,"touch":54,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11295,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":22004,"notes":{"total":469,"tap":355,"hold":44,"slide":23,"touch":34,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11295,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":790,"tap":659,"hold":60,"slide":35,"touch":27,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11295,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"小鳥遊さん vs 華火職人","romVersion":22004,"notes":{"total":1296,"tap":1021,"hold":69,"slide":46,"touch":125,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2049,"long":false},{"id":1296,"players":8761,"title":"とびだせ!TO THE COSMIC!!","utTitle":null,"artist":"t+pazolite feat. しゃま(CV:種﨑 敦美) & みるく(CV:伊藤 あすか)","albums":["とびだせ!to the cosmic!!","起飞","太空牛奶猫","とびだせ","女同13","とびだぜ","universe主题曲","新牛奶","飞向宇宙","缝合怪","牛奶3","牛奶2","宇宙牛奶","舞萌2023主题曲","压缩tpz","uni","uni主题曲","去宇宙","とびだせ!to the cosmic!!","起飞","太空牛奶猫","とびだせ","女同13","とびだぜ","universe主题曲","新牛奶","飞向宇宙","缝合怪","牛奶3","牛奶2","宇宙牛奶","舞萌2023主题曲","压缩tpz","uni","uni主题曲","去宇宙","とびだせ!to the cosmic!!","起飞","太空牛奶猫","とびだせ","女同13","とびだぜ","universe主题曲","新牛奶","飞向宇宙","缝合怪","牛奶3","牛奶2","宇宙牛奶","舞萌2023主题曲","压缩tpz","uni","uni主题曲","去宇宙"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11296,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22004,"notes":{"total":196,"tap":159,"hold":10,"slide":2,"touch":22,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11296,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22004,"notes":{"total":457,"tap":397,"hold":15,"slide":23,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11296,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":22004,"notes":{"total":730,"tap":489,"hold":51,"slide":68,"touch":22,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11296,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":947,"tap":705,"hold":29,"slide":161,"touch":7,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2191,"long":false},{"id":1297,"players":5485,"title":"噛み係","utTitle":null,"artist":"さつき が てんこもり feat.96猫","albums":["噛み係","神灵附体","噛係","啮系","咬系","齿系","啮","大教堂","96猫","噛み係","神灵附体","噛係","啮系","咬系","齿系","啮","大教堂","96猫","噛み係","神灵附体","噛係","啮系","咬系","齿系","啮","大教堂","96猫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":148,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11297,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":146,"tap":88,"hold":16,"slide":4,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11297,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22004,"notes":{"total":292,"tap":214,"hold":30,"slide":16,"touch":20,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11297,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":22004,"notes":{"total":516,"tap":258,"hold":132,"slide":51,"touch":25,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11297,"level_id":3,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":22004,"notes":{"total":764,"tap":517,"hold":112,"slide":83,"touch":18,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1298,"players":5543,"title":"トリアージ","utTitle":null,"artist":"niki feat.noire","albums":["トリアージ","碑谷","纪念碑谷","triage","分诊","トリアージ","碑谷","纪念碑谷","triage","分诊","トリアージ","碑谷","纪念碑谷","triage","分诊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11298,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":122,"tap":74,"hold":23,"slide":4,"touch":19,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11298,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22004,"notes":{"total":290,"tap":232,"hold":18,"slide":27,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11298,"level_id":2,"level":"10","level_value":10.0,"note_designer":"華火職人","romVersion":22004,"notes":{"total":459,"tap":303,"hold":71,"slide":39,"touch":24,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11298,"level_id":3,"level":"13","level_value":13.1,"note_designer":"シチミヘルツ","romVersion":22004,"notes":{"total":637,"tap":461,"hold":19,"slide":128,"touch":20,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1299,"players":4264,"title":"NAGAREBOSHI☆ROCKET","utTitle":null,"artist":"梅干茶漬け","albums":["nagareboshi☆rocket","流星火箭","火箭","那旮热博士","火箭猫猫","福瑞火箭","火箭福瑞","火箭猫","梅干茶渍","飞天兽太","小羊","像素猫猫","nagareboshi☆rocket","流星火箭","火箭","那旮热博士","火箭猫猫","福瑞火箭","火箭福瑞","火箭猫","梅干茶渍","飞天兽太","小羊","像素猫猫","nagareboshi☆rocket","流星火箭","火箭","那旮热博士","火箭猫猫","福瑞火箭","火箭福瑞","火箭猫","梅干茶渍","飞天兽太","小羊","像素猫猫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":216,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11299,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22004,"notes":{"total":200,"tap":157,"hold":15,"slide":4,"touch":22,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11299,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22004,"notes":{"total":363,"tap":295,"hold":22,"slide":9,"touch":24,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11299,"level_id":2,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":22004,"notes":{"total":553,"tap":388,"hold":54,"slide":38,"touch":34,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11299,"level_id":3,"level":"14","level_value":14.1,"note_designer":"SHICHIMI☆CAT","romVersion":22004,"notes":{"total":821,"tap":516,"hold":63,"slide":104,"touch":102,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2680,"long":false},{"id":1300,"players":6284,"title":"U&iVERSE -銀河鸞翔-","utTitle":null,"artist":"Kai VS 大国奏音 VS 水野健治","albums":["u&iverse -銀河鸞翔-","银河鸾翔","银河鸞翔","鸾翔","金典有机奶","u&iverse -銀河鸞翔-","3d白猫","银河拉翔","银河翱翔","universe","银河乱翔","银河飞翔","金牛奶","银河","银河卵翔","kop3rd预选曲","银河护卫队","\uD83D\uDE2B","u&iverse -銀河鸞翔-","银河鸾翔","银河鸞翔","鸾翔","金典有机奶","u&iverse -銀河鸞翔-","3d白猫","银河拉翔","银河翱翔","universe","银河乱翔","银河飞翔","金牛奶","银河","银河卵翔","kop3rd预选曲","银河护卫队","\uD83D\uDE2B","u&iverse -銀河鸞翔-","银河鸾翔","银河鸞翔","鸾翔","金典有机奶","u&iverse -銀河鸞翔-","3d白猫","银河拉翔","银河翱翔","universe","银河乱翔","银河飞翔","金牛奶","银河","银河卵翔","kop3rd预选曲","银河护卫队","\uD83D\uDE2B"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":140,"releaseDate":"20211216","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11300,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22005,"notes":{"total":212,"tap":164,"hold":22,"slide":7,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11300,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":22005,"notes":{"total":423,"tap":347,"hold":32,"slide":12,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11300,"level_id":2,"level":"12","level_value":12.1,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":716,"tap":522,"hold":83,"slide":38,"touch":61,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11300,"level_id":3,"level":"14","level_value":14.3,"note_designer":"シチミヘルツ","romVersion":22005,"notes":{"total":1015,"tap":660,"hold":29,"slide":101,"touch":126,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2326,"long":false},{"id":1301,"players":12389,"title":"華の集落、秋のお届け","utTitle":null,"artist":"Umiai","albums":["華の集落、秋のお届け","华之集落","华的集落","华集落","滑稽","华之集落,致以秋意","秋届","华秋","花村","集落","华集","华落","菲谢尔","皇女","華の集落、秋のお届け","华之集落","华的集落","华集落","滑稽","华之集落,致以秋意","秋届","华秋","花村","集落","华集","华落","菲谢尔","皇女","華の集落、秋のお届け","华之集落","华的集落","华集落","滑稽","华之集落,致以秋意","秋届","华秋","花村","集落","华集","华落","菲谢尔","皇女"],"hasDx":true,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20211029","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":25003,"utRomVersion":0,"dx":{"0":{"id":11301,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22005,"notes":{"total":155,"tap":117,"hold":18,"slide":6,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11301,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":22005,"notes":{"total":332,"tap":263,"hold":13,"slide":28,"touch":20,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11301,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":567,"tap":425,"hold":70,"slide":42,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11301,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"あまくちジンジャー","romVersion":22005,"notes":{"total":890,"tap":530,"hold":36,"slide":67,"touch":246,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{"0":{"id":1301,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":204,"tap":162,"hold":20,"slide":11,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1301,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25003,"notes":{"total":314,"tap":244,"hold":40,"slide":21,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1301,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":25003,"notes":{"total":611,"tap":459,"hold":67,"slide":60,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1301,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":25003,"notes":{"total":836,"tap":673,"hold":60,"slide":77,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1302,"players":8436,"title":"BLACK SWAN","utTitle":null,"artist":"ぺのれり","albums":["black swan","黑蒜","路西法","黑天鹅","黑色丝袜","神乐七奈","甘雨","布莱克死亡","香菇","黑丝袜","周黑鸭","black swan","黑蒜","路西法","黑天鹅","黑色丝袜","神乐七奈","甘雨","布莱克死亡","香菇","黑丝袜","周黑鸭","black swan","黑蒜","路西法","黑天鹅","黑色丝袜","神乐七奈","甘雨","布莱克死亡","香菇","黑丝袜","周黑鸭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":201,"releaseDate":"20211029","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11302,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22005,"notes":{"total":227,"tap":196,"hold":9,"slide":4,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11302,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22005,"notes":{"total":354,"tap":264,"hold":33,"slide":16,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11302,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":639,"tap":480,"hold":70,"slide":58,"touch":25,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11302,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"The ALiEN","romVersion":22005,"notes":{"total":966,"tap":711,"hold":57,"slide":84,"touch":57,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1303,"players":6528,"title":"星詠みとデスペラード","utTitle":null,"artist":"しょご/野村渉悟","albums":["星詠みとデスペラード","星之咏唱者与亡命之徒","星咏","星诵","星詠みとデスペラード","星之咏唱者与亡命之徒","星咏","星诵","星詠みとデスペラード","星之咏唱者与亡命之徒","星咏","星诵"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20211029","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11303,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22005,"notes":{"total":189,"tap":154,"hold":9,"slide":8,"touch":17,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11303,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22005,"notes":{"total":254,"tap":184,"hold":16,"slide":32,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11303,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":506,"tap":366,"hold":72,"slide":38,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11303,"level_id":3,"level":"14","level_value":14.0,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":832,"tap":620,"hold":70,"slide":60,"touch":69,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1304,"players":5330,"title":"Round Round Spinning Around","utTitle":null,"artist":"Nhato","albums":["round round spinning around","转转","魔爪吊带袜美少女","大鸟转转转","绕着旋转","rrsa","滨州转转转","跑跑卡丁车","转转转转","转圈圈","round round spinning around","转转","魔爪吊带袜美少女","大鸟转转转","绕着旋转","rrsa","滨州转转转","跑跑卡丁车","转转转转","转圈圈","round round spinning around","转转","魔爪吊带袜美少女","大鸟转转转","绕着旋转","rrsa","滨州转转转","跑跑卡丁车","转转转转","转圈圈"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20211210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11304,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22006,"notes":{"total":155,"tap":131,"hold":9,"slide":6,"touch":5,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11304,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22006,"notes":{"total":405,"tap":346,"hold":14,"slide":20,"touch":11,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11304,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":531,"tap":427,"hold":37,"slide":47,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11304,"level_id":3,"level":"13","level_value":13.3,"note_designer":"すきやき奉行","romVersion":22006,"notes":{"total":821,"tap":588,"hold":78,"slide":101,"touch":46,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1305,"players":5651,"title":"Alcyone","utTitle":null,"artist":"PRASTIK DANCEFLOOR","albums":["alcyone","昴宿六","古希腊掌管反手交互的神","alc","凯尔希","alcyone","昴宿六","古希腊掌管反手交互的神","alc","凯尔希","alcyone","昴宿六","古希腊掌管反手交互的神","alc","凯尔希"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":176,"releaseDate":"20211210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11305,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22006,"notes":{"total":156,"tap":119,"hold":15,"slide":8,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11305,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22006,"notes":{"total":379,"tap":279,"hold":37,"slide":24,"touch":27,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11305,"level_id":2,"level":"12","level_value":12.0,"note_designer":"隅田川星人","romVersion":22006,"notes":{"total":635,"tap":421,"hold":90,"slide":63,"touch":40,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11305,"level_id":3,"level":"14","level_value":14.0,"note_designer":"シチミヘルツ","romVersion":22006,"notes":{"total":885,"tap":644,"hold":78,"slide":94,"touch":53,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2565,"long":false},{"id":1306,"players":8458,"title":"Raven Emperor","utTitle":null,"artist":"Kobaryo","albums":["raven emperor","秦皇岛","大奶子眼镜妹","鸦皇","瑞文米条","raven","瑞文皇帝","渡鸦皇帝","锐雯皇帝","羽毛笔皇帝","raven emperor","秦皇岛","大奶子眼镜妹","鸦皇","瑞文米条","raven","瑞文皇帝","渡鸦皇帝","锐雯皇帝","羽毛笔皇帝","雪行","raven emperor","秦皇岛","大奶子眼镜妹","鸦皇","瑞文米条","raven","瑞文皇帝","渡鸦皇帝","锐雯皇帝","羽毛笔皇帝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20211210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11306,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22006,"notes":{"total":185,"tap":157,"hold":14,"slide":6,"touch":6,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11306,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22006,"notes":{"total":414,"tap":342,"hold":24,"slide":15,"touch":19,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11306,"level_id":2,"level":"12","level_value":12.0,"note_designer":"ロシェ@ペンギン","romVersion":22006,"notes":{"total":615,"tap":395,"hold":65,"slide":69,"touch":48,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11306,"level_id":3,"level":"14","level_value":14.5,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":888,"tap":614,"hold":78,"slide":115,"touch":24,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1307,"players":5252,"title":"Yorugao","utTitle":null,"artist":"An & Ryunosuke Kudo","albums":["yorugao","犹如高","油乳膏","月光花","牙膏","夜颜","紫黑","有乳膏","牛肉干","yorugao","犹如高","油乳膏","月光花","牙膏","夜颜","紫黑","有乳膏","牛肉干","yorugao","犹如高","油乳膏","月光花","牙膏","夜颜","紫黑","有乳膏","牛肉干","有如皋"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20211210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11307,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22006,"notes":{"total":168,"tap":125,"hold":19,"slide":7,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11307,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22006,"notes":{"total":369,"tap":309,"hold":18,"slide":23,"touch":13,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11307,"level_id":2,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":22006,"notes":{"total":608,"tap":428,"hold":91,"slide":52,"touch":21,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11307,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"Jack & Licorice Gunjyo","romVersion":22006,"notes":{"total":954,"tap":712,"hold":76,"slide":102,"touch":59,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2488,"long":false},{"id":1308,"players":8560,"title":"ヨミビトシラズ","utTitle":null,"artist":"Limonène (サノカモメ+月島春果)","albums":["ヨミビトシラズ","冬雪莲","東雪蓮","东雪莲打伞","蓝屏","东雪莲","哇嘎得路哟","咏人不知","罕见","佚名","作者不详","東雪莲","我不知道","ヨミビトシラズ","冬雪莲","東雪蓮","东雪莲打伞","蓝屏","东雪莲","哇嘎得路哟","咏人不知","罕见","佚名","作者不详","東雪莲","我不知道","ヨミビトシラズ","冬雪莲","東雪蓮","东雪莲打伞","蓝屏","东雪莲","哇嘎得路哟","咏人不知","罕见","佚名","作者不详","東雪莲","我不知道"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20220210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11308,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22007,"notes":{"total":210,"tap":176,"hold":5,"slide":11,"touch":17,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11308,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22007,"notes":{"total":325,"tap":249,"hold":15,"slide":26,"touch":32,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11308,"level_id":2,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":652,"tap":533,"hold":37,"slide":42,"touch":35,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11308,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":22007,"notes":{"total":921,"tap":751,"hold":50,"slide":80,"touch":36,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1309,"players":6229,"title":"前衛的Landscape","utTitle":null,"artist":"HiTECH NINJA feat. RANASOL","albums":["前衛的landscape","前卫","提纳里","阿努比斯","前卫的landscape","前卫的大都市","landepen","前卫的landepen","landscape","前衛的landscape","前卫","提纳里","阿努比斯","前卫的landscape","前卫的大都市","landepen","前卫的landepen","landscape","前衛的landscape","前卫","提纳里","阿努比斯","前卫的landscape","前卫的大都市","landepen","前卫的landepen","landscape"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":153,"releaseDate":"20220210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11309,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22007,"notes":{"total":149,"tap":123,"hold":8,"slide":4,"touch":11,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11309,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22007,"notes":{"total":300,"tap":254,"hold":17,"slide":14,"touch":9,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11309,"level_id":2,"level":"11","level_value":11.4,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":455,"tap":318,"hold":46,"slide":53,"touch":21,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11309,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":22007,"notes":{"total":755,"tap":566,"hold":33,"slide":107,"touch":38,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1310,"players":8551,"title":"Trick tear","utTitle":null,"artist":"しーけー","albums":["trick tear","诈泪","诡泣","次元裂缝","tt","被骗哭了","欺诈泪","欺骗泪","诡泪","trick tear","诈泪","诡泣","次元裂缝","tt","被骗哭了","欺诈泪","欺骗泪","诡泪"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":222,"releaseDate":"20220210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11310,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22007,"notes":{"total":211,"tap":166,"hold":13,"slide":3,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11310,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":22007,"notes":{"total":422,"tap":324,"hold":28,"slide":15,"touch":31,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11310,"level_id":2,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":609,"tap":361,"hold":94,"slide":58,"touch":45,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11310,"level_id":3,"level":"14","level_value":14.4,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":840,"tap":518,"hold":75,"slide":116,"touch":90,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1311,"players":11528,"title":"躯樹の墓守","utTitle":null,"artist":"隣の庭は青い(庭師+Aoi)","albums":["躯樹の墓守","躯树の墓守","墓守","噔噔","\uD83C\uDF33","树","守墓人","小红帽","躯树的墓守","红色羽毛球","躯樹の墓守","躯树の墓守","墓守","噔噔","\uD83C\uDF33","树","守墓人","小红帽","躯树的墓守","红色羽毛球","躯樹の墓守","躯树の墓守","墓守","噔噔","\uD83C\uDF33","树","守墓人","小红帽","躯树的墓守","红色羽毛球","洛茜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":211,"releaseDate":"20220210","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11311,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22007,"notes":{"total":252,"tap":214,"hold":16,"slide":6,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11311,"level_id":1,"level":"9+","level_value":9.8,"note_designer":"","romVersion":22007,"notes":{"total":471,"tap":404,"hold":24,"slide":26,"touch":10,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11311,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":721,"tap":523,"hold":71,"slide":58,"touch":59,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11311,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"超七味星人","romVersion":22007,"notes":{"total":1038,"tap":761,"hold":80,"slide":116,"touch":24,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2763,"long":false},{"id":1312,"players":3704,"title":"ぱくぱく☆がーる","utTitle":null,"artist":"曲:齋藤大/歌:珠洲島 有栖(CV:長縄 まりあ)","albums":["ぱくぱく☆がーる","江江炫饭","报菜名","江江","江江下锅","江江报菜名","江江今天吃什么","pac pac girl","ぱくぱく☆がーる","江江炫饭","报菜名","江江","江江下锅","江江报菜名","江江今天吃什么","pac pac girl","江江可爱","群主老婆","ぱくぱく☆がーる","江江炫饭","报菜名","江江","江江下锅","江江报菜名","江江今天吃什么","pac pac girl","大胃袋江子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":121,"releaseDate":"20220114","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11312,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22006,"notes":{"total":216,"tap":134,"hold":17,"slide":4,"touch":30,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11312,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22006,"notes":{"total":331,"tap":229,"hold":25,"slide":16,"touch":50,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11312,"level_id":2,"level":"10","level_value":10.2,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":624,"tap":370,"hold":81,"slide":53,"touch":70,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11312,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Redarrow","romVersion":22006,"notes":{"total":998,"tap":613,"hold":80,"slide":66,"touch":164,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2365,"long":false},{"id":1313,"players":2810,"title":"No Limit RED Force","utTitle":null,"artist":"曲:本多友紀(Arte Refact)/歌:オンゲキシューターズ","albums":["no limit red force","无限红","无限红力","无尽的赤红之力","红色电音极地大冲击","no limit red force","无限红","无限红力","无尽的赤红之力","红色电音极地大冲击","no limit red force","无限红","无限红力","无尽的赤红之力","红色电音极地大冲击"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":146,"releaseDate":"20220114","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11313,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22006,"notes":{"total":138,"tap":112,"hold":9,"slide":3,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11313,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22006,"notes":{"total":302,"tap":238,"hold":15,"slide":29,"touch":9,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11313,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":482,"tap":332,"hold":40,"slide":43,"touch":26,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11313,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"小鳥遊さん","romVersion":22006,"notes":{"total":690,"tap":475,"hold":46,"slide":81,"touch":40,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2371,"long":false},{"id":1314,"players":6025,"title":"LiftOff","utTitle":null,"artist":"MAYA AKAI","albums":["liftoff","关电梯","起飞","dx四月雨","火箭","电梯下降","刑具","抬棺","发射","长角女孩","妙脆角","东云纺","liftoff","关电梯","起飞","dx四月雨","火箭","电梯下降","刑具","抬棺","发射","长角女孩","妙脆角","东云纺","liftoff","关电梯","起飞","dx四月雨","火箭","电梯下降","刑具","抬棺","发射","长角女孩","妙脆角","东云纺","赫拉0.5"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":137,"releaseDate":"20220114","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11314,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22006,"notes":{"total":146,"tap":91,"hold":29,"slide":9,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11314,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22006,"notes":{"total":388,"tap":342,"hold":11,"slide":16,"touch":9,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11314,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"隅田川星人","romVersion":22006,"notes":{"total":619,"tap":376,"hold":67,"slide":52,"touch":113,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11314,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"シチミヘルツ","romVersion":22006,"notes":{"total":767,"tap":605,"hold":48,"slide":78,"touch":23,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2417,"long":false},{"id":1315,"players":6347,"title":"Falsum Atlantis.","utTitle":null,"artist":"kanone","albums":["falsum atlantis.","艾伦走路人","亚特兰提斯","在海下面在海下面","虚伪的亚特兰蒂斯","亚特兰蒂斯","皇城刹那","刹那下海","水神8","fa","刹那","falsum atlantis.","艾伦走路人","亚特兰提斯","在海下面在海下面","虚伪的亚特兰蒂斯","亚特兰蒂斯","皇城刹那","刹那下海","水神8","fa","刹那","falsum atlantis.","艾伦走路人","亚特兰提斯","在海下面在海下面","虚伪的亚特兰蒂斯","亚特兰蒂斯","皇城刹那","刹那下海","水神8","fa","刹那"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":160,"releaseDate":"20220114","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11315,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22006,"notes":{"total":191,"tap":157,"hold":16,"slide":6,"touch":9,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11315,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22006,"notes":{"total":379,"tap":282,"hold":28,"slide":29,"touch":22,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11315,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":22006,"notes":{"total":672,"tap":530,"hold":50,"slide":54,"touch":34,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11315,"level_id":3,"level":"14","level_value":14.5,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":977,"tap":685,"hold":116,"slide":53,"touch":94,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2271,"long":false},{"id":1316,"players":2961,"title":"We Are Us","utTitle":null,"artist":"舞ヶ原シンセ研究会","albums":["we are us","我们是美国","wau","我们是我们","we are us","我们是美国","wau","我们是我们","we are us","我们是美国","wau","我们是我们"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":145,"releaseDate":"20220311","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11316,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22007,"notes":{"total":138,"tap":101,"hold":10,"slide":3,"touch":22,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11316,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":22007,"notes":{"total":247,"tap":169,"hold":28,"slide":14,"touch":33,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11316,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":413,"tap":293,"hold":73,"slide":22,"touch":14,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11316,"level_id":3,"level":"13","level_value":13.5,"note_designer":"シチミヘルツ","romVersion":22007,"notes":{"total":833,"tap":649,"hold":15,"slide":80,"touch":61,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":968,"long":false},{"id":1317,"players":2350,"title":"Limits","utTitle":null,"artist":"舞ヶ原シンセ研究会","albums":["limits","限制","极限","limits","限制","极限","limits","限制","极限"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20220311","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11317,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22007,"notes":{"total":184,"tap":135,"hold":22,"slide":6,"touch":20,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11317,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22007,"notes":{"total":314,"tap":243,"hold":15,"slide":26,"touch":24,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11317,"level_id":2,"level":"10","level_value":10.5,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":476,"tap":321,"hold":53,"slide":59,"touch":29,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11317,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ロシアンブラック","romVersion":22007,"notes":{"total":786,"tap":455,"hold":108,"slide":144,"touch":59,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2094,"long":false},{"id":1318,"players":7809,"title":"スピカの天秤","utTitle":null,"artist":"Acotto","albums":["スピカの天秤","黑化希望泪","希望泪2","交流电电棍","绝望泪","心灵终结","天秤","这个需要你自己衡量","天平","スピカの天秤","黑化希望泪","希望泪2","交流电电棍","绝望泪","心灵终结","天秤","这个需要你自己衡量","天平","スピカの天秤","黑化希望泪","希望泪2","交流电电棍","绝望泪","心灵终结","天秤","这个需要你自己衡量","天平"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":252,"releaseDate":"20220311","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11318,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22007,"notes":{"total":208,"tap":149,"hold":35,"slide":8,"touch":14,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11318,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":22007,"notes":{"total":378,"tap":291,"hold":29,"slide":34,"touch":17,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11318,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":747,"tap":574,"hold":50,"slide":23,"touch":89,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11318,"level_id":3,"level":"14","level_value":14.4,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":1011,"tap":768,"hold":62,"slide":87,"touch":61,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":702,"long":false},{"id":1319,"players":8680,"title":"ハードコア・シンドローム","utTitle":null,"artist":"t+pazolite (HARDCORE TANO*C) feat.TANO*C ALL STARS","albums":["ハードコア・シンドローム","hardcore syndrome","打胶","creeping","打交","打交第一名","硬核综合症","哈皮和tpz开音趴","hardcore","硬核","打架第二名","哈皮打交","哈德口","硬核综合征","罚站","友人对战","tanoc全明星","ハードコア・シンドローム","hardcore syndrome","打胶","creeping","打交","打交第一名","硬核综合症","哈皮和tpz开音趴","hardcore","硬核","打架第二名","哈皮打交","哈德口","硬核综合征","罚站","友人对战","tanoc全明星","ハードコア・シンドローム","hardcore syndrome","打胶","creeping","打交","打交第一名","硬核综合症","哈皮和tpz开音趴","hardcore","硬核","打架第二名","哈皮打交","哈德口","硬核综合征","罚站","友人对战","tanoc全明星","梅西哥拆机"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":180,"releaseDate":"20220311","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11319,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22007,"notes":{"total":232,"tap":169,"hold":22,"slide":4,"touch":22,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11319,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":22007,"notes":{"total":375,"tap":296,"hold":25,"slide":14,"touch":31,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11319,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":22007,"notes":{"total":729,"tap":455,"hold":122,"slide":60,"touch":51,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11319,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":1096,"tap":735,"hold":52,"slide":86,"touch":184,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":970,"long":false},{"id":1325,"players":8406,"title":"テレキャスタービーボーイ","utTitle":{"111325":"[奏]テレキャスタービーボーイ"},"artist":"すりぃ","albums":["テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子","テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子","テレキャスタービーボーイ","电吉他说唱男孩","telecaster b-boy","♡","电吉他b男","比心","我爱你","tbb","电视广播员蜜蜂男孩","合体","bboy","telecaster b boy","pop子"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":182,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":24500,"dx":{"0":{"id":11325,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":101,"tap":87,"hold":6,"slide":2,"touch":4,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11325,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22004,"notes":{"total":286,"tap":237,"hold":18,"slide":4,"touch":12,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11325,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"みそかつ侍","romVersion":22004,"notes":{"total":404,"tap":280,"hold":50,"slide":41,"touch":14,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11325,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":22004,"notes":{"total":562,"tap":402,"hold":49,"slide":77,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11325,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22004,"notes":{"total":646,"tap":486,"hold":52,"slide":64,"touch":31,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111325":{"id":111325,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2149,"long":false},{"id":1327,"players":2217,"title":"僕は空気が嫁ない","utTitle":null,"artist":"cosMo@暴走P","albums":["僕は空気が嫁ない","我不会察言观色","我要嫁给空气","空气嫁","空气","我不嫁给空气","僕は空気が嫁ない","我不会察言观色","我要嫁给空气","空气嫁","空气","我不嫁给空气","僕は空気が嫁ない","我不会察言观色","我要嫁给空气","空气嫁","空气","我不嫁给空气","嫁给空气"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":192,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11327,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":89,"tap":70,"hold":3,"slide":2,"touch":12,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11327,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22004,"notes":{"total":291,"tap":238,"hold":20,"slide":15,"touch":15,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11327,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":22004,"notes":{"total":433,"tap":307,"hold":53,"slide":23,"touch":19,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11327,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":719,"tap":516,"hold":33,"slide":140,"touch":29,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1328,"players":6746,"title":"デッドマンズバラッド","utTitle":null,"artist":"cosMo@暴走P","albums":["デッドマンズバラッド","恋尸癖","僵尸","死人的歌谣","散华礼弥","僵尸妹","亡者情歌","死人的叙事诗","deadman's ballad","bpm300","僵尸初音","僵尸娘","呜哇呜哇","デッドマンズバラッド","恋尸癖","僵尸","死人的歌谣","散华礼弥","僵尸妹","亡者情歌","死人的叙事诗","deadman's ballad","bpm300","僵尸初音","僵尸娘","呜哇呜哇","デッドマンズバラッド","恋尸癖","僵尸","死人的歌谣","散华礼弥","僵尸妹","亡者情歌","死人的叙事诗","deadman's ballad","bpm300","僵尸初音","僵尸娘","呜哇呜哇"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":300,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11328,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22004,"notes":{"total":212,"tap":186,"hold":15,"slide":3,"touch":4,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11328,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22004,"notes":{"total":467,"tap":363,"hold":36,"slide":26,"touch":22,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11328,"level_id":2,"level":"12","level_value":12.5,"note_designer":"シチミヘルツ","romVersion":22004,"notes":{"total":818,"tap":635,"hold":38,"slide":51,"touch":51,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11328,"level_id":3,"level":"14","level_value":14.2,"note_designer":"サファ太","romVersion":22004,"notes":{"total":1208,"tap":718,"hold":230,"slide":97,"touch":97,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1330,"players":8354,"title":"竹","utTitle":null,"artist":"立秋 feat.ちょこ","albums":["竹","take","\uD83C\uDF8D","↑↓","ta↓ke↑","竹","take","\uD83C\uDF8D","↑↓","ta↓ke↑","竹","take","\uD83C\uDF8D","↑↓","ta↓ke↑"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11330,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22004,"notes":{"total":171,"tap":124,"hold":25,"slide":4,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11330,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":22004,"notes":{"total":429,"tap":346,"hold":27,"slide":8,"touch":20,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11330,"level_id":2,"level":"12","level_value":12.0,"note_designer":"隅田川星人","romVersion":22004,"notes":{"total":599,"tap":395,"hold":52,"slide":64,"touch":61,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11330,"level_id":3,"level":"14","level_value":14.2,"note_designer":"ぴちネコ","romVersion":22004,"notes":{"total":971,"tap":592,"hold":168,"slide":77,"touch":79,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2185,"long":false},{"id":1331,"players":7155,"title":"スーパーシンメトリー","utTitle":null,"artist":"Sta feat. b","albums":["スーパーシンメトリー","超对称性","supersymmetry","对称性","Supersymmetry","超对称","スーパーシンメトリー","超对称性","supersymmetry","对称性","Supersymmetry","超对称","スーパーシンメトリー","超对称性","supersymmetry","对称性","Supersymmetry","超对称"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":210,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11331,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22004,"notes":{"total":267,"tap":246,"hold":10,"slide":1,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11331,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":22004,"notes":{"total":446,"tap":351,"hold":33,"slide":14,"touch":38,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11331,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":673,"tap":434,"hold":85,"slide":59,"touch":78,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11331,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"ロシェ@ペンギン","romVersion":22004,"notes":{"total":1026,"tap":753,"hold":46,"slide":131,"touch":76,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1333,"players":13101,"title":"Southern Cross","utTitle":null,"artist":"403","albums":["southern cross","南方十字","特大","南十字星","全是交互","麦当劳1+1","南十字","南十字深深封印","噩梦之城","打交神曲","403","♂十字","守护南十字星","舞萌特大","\uD83C\uDF1F","1+1","一加一","southern cross","南方十字","特大","南十字星","全是交互","麦当劳1+1","南十字","南十字深深封印","噩梦之城","打交神曲","403","♂十字","守护南十字星","舞萌特大","\uD83C\uDF1F","1+1","一加一","southern cross","南方十字","特大","南十字星","全是交互","麦当劳1+1","南十字","南十字深深封印","噩梦之城","打交神曲","403","♂十字","守护南十字星","舞萌特大","\uD83C\uDF1F","1+1","一加一"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":171,"releaseDate":"20210922","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11333,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22004,"notes":{"total":177,"tap":130,"hold":10,"slide":6,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11333,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22004,"notes":{"total":361,"tap":290,"hold":18,"slide":20,"touch":23,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11333,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":22004,"notes":{"total":587,"tap":353,"hold":46,"slide":78,"touch":26,"break_":84},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11333,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":22004,"notes":{"total":935,"tap":702,"hold":49,"slide":92,"touch":55,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11333,"level_id":4,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":22004,"notes":{"total":1194,"tap":1103,"hold":20,"slide":24,"touch":15,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2780,"long":false},{"id":1334,"players":4414,"title":"Upshift","utTitle":null,"artist":"s-don as Iriss-Frantzz","albums":["upshift","在屎上","chapter 2"," chapter 2","上蹲","upshit","大写锁定","upshift","在屎上","chapter 2"," chapter 2","上蹲","upshit","大写锁定","upshift","在屎上","chapter 2"," chapter 2","上蹲","upshit","大写锁定"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20211001","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11334,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":141,"tap":110,"hold":7,"slide":4,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11334,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22005,"notes":{"total":344,"tap":286,"hold":6,"slide":18,"touch":24,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11334,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":586,"tap":419,"hold":68,"slide":65,"touch":21,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11334,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Safata.Hz","romVersion":22005,"notes":{"total":864,"tap":656,"hold":39,"slide":110,"touch":15,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1335,"players":5978,"title":"MOBILYS","utTitle":null,"artist":"Dachs","albums":["mobilys","困锁的灯","橘子怪兽二","摸比利","灯笼","灯泡","灯球","\uD83D\uDCA1","光球","灯灯灯灯","电灯泡","mobilys","困锁的灯","橘子怪兽二","摸比利","灯笼","灯泡","灯球","\uD83D\uDCA1","光球","灯灯灯灯","电灯泡","mobilys","困锁的灯","橘子怪兽二","摸比利","灯笼","灯泡","灯球","\uD83D\uDCA1","光球","灯灯灯灯","电灯泡"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":144,"releaseDate":"20211001","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11335,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":156,"tap":112,"hold":15,"slide":4,"touch":20,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11335,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22005,"notes":{"total":286,"tap":217,"hold":26,"slide":17,"touch":21,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11335,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":430,"tap":274,"hold":51,"slide":63,"touch":12,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11335,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":710,"tap":434,"hold":49,"slide":88,"touch":122,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1336,"players":1314,"title":"ドラゴンエネルギー","utTitle":null,"artist":"オーイシマサヨシ×加藤純一","albums":["ドラゴンエネルギー","hero","披萨歌","龙能量","dragon energy","薛之谦","冰火人2","ドラゴンエネルギー","hero","披萨歌","龙能量","dragon energy","薛之谦","冰火人2","ドラゴンエネルギー","hero","披萨歌","龙能量","dragon energy","薛之谦","冰火人2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":148,"releaseDate":"20211015","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11336,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":108,"tap":79,"hold":12,"slide":7,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11336,"level_id":1,"level":"6","level_value":6.7,"note_designer":"","romVersion":22005,"notes":{"total":297,"tap":228,"hold":24,"slide":20,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11336,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":22005,"notes":{"total":493,"tap":344,"hold":37,"slide":21,"touch":57,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11336,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":728,"tap":517,"hold":71,"slide":96,"touch":31,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1337,"players":2703,"title":"セカイはまだ始まってすらいない","utTitle":null,"artist":"ピノキオピー / 初音ミク / ワンダーランズ×ショウタイム「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":138,"releaseDate":"20211015","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11337,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25005,"notes":{"total":100,"tap":83,"hold":4,"slide":3,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11337,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25005,"notes":{"total":256,"tap":202,"hold":8,"slide":20,"touch":8,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11337,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"翠楼屋","romVersion":25005,"notes":{"total":378,"tap":268,"hold":21,"slide":26,"touch":11,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11337,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"小鳥遊さん","romVersion":25005,"notes":{"total":536,"tap":344,"hold":48,"slide":76,"touch":48,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1099,"long":false},{"id":1340,"players":3822,"title":"Sweets Time","utTitle":null,"artist":"SYNC.ART'S feat. 3L","albums":["sweets time","强强虫","芙兰数星星","小幸隐","迪士尼乐园","甜时间","甜蜜时光","sweets time","强强虫","芙兰数星星","小幸隐","迪士尼乐园","甜时间","甜蜜时光","sweets time","强强虫","芙兰数星星","小幸隐","迪士尼乐园","甜时间","甜蜜时光"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":150,"releaseDate":"20211112","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11340,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":139,"tap":121,"hold":4,"slide":4,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11340,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22005,"notes":{"total":359,"tap":277,"hold":28,"slide":16,"touch":24,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11340,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":360,"tap":142,"hold":138,"slide":52,"touch":18,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11340,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":658,"tap":430,"hold":0,"slide":218,"touch":3,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1341,"players":2530,"title":"紅星ミゼラブル~廃憶編","utTitle":null,"artist":"東京アクティブNEETs","albums":["紅星ミゼラブル~廃憶編","蕾米莉亚吹滴答","红星","蕾米吹小号","蕾米吹喇叭","蕾米吹zun号","蕾米莉亚吹喇叭","蕾米莉亚吹小号","紅星ミゼラブル~廃憶編","蕾米莉亚吹滴答","红星","蕾米吹小号","蕾米吹喇叭","蕾米吹zun号","蕾米莉亚吹喇叭","蕾米莉亚吹小号","紅星ミゼラブル~廃憶編","蕾米莉亚吹滴答","红星","蕾米吹小号","蕾米吹喇叭","蕾米吹zun号","蕾米莉亚吹喇叭","蕾米莉亚吹小号"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":160,"releaseDate":"20211112","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11341,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22005,"notes":{"total":139,"tap":115,"hold":6,"slide":5,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11341,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22005,"notes":{"total":307,"tap":231,"hold":18,"slide":25,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11341,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":22005,"notes":{"total":522,"tap":366,"hold":77,"slide":39,"touch":19,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11341,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Redarrow","romVersion":22005,"notes":{"total":837,"tap":568,"hold":54,"slide":72,"touch":123,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1342,"players":5211,"title":"幻想に咲いた花","utTitle":null,"artist":"岸田教団&THE明星ロケッツ×草野華余子「東方ダンマクカグラ」","albums":["幻想に咲いた花","幻想花","幻想之花","弹幕神乐","幻想咲花","幻想に咲いた花","幻想花","幻想之花","弹幕神乐","幻想咲花","幻想に咲いた花","幻想花","幻想之花","弹幕神乐","幻想咲花"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":186,"releaseDate":"20211112","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11342,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22005,"notes":{"total":131,"tap":103,"hold":9,"slide":6,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11342,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22005,"notes":{"total":325,"tap":251,"hold":30,"slide":20,"touch":17,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11342,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":482,"tap":360,"hold":50,"slide":33,"touch":21,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11342,"level_id":3,"level":"13","level_value":13.1,"note_designer":"アミノハバキリ","romVersion":22005,"notes":{"total":737,"tap":522,"hold":59,"slide":105,"touch":31,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11342,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"カマボコ君","romVersion":22005,"notes":{"total":819,"tap":568,"hold":27,"slide":159,"touch":44,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1343,"players":10278,"title":"マツヨイナイトバグ","utTitle":null,"artist":"COOL&CREATE feat.ビートまりおとまろん「東方ダンマクカグラ」","albums":["マツヨイナイトバグ","蠢虫","待宵的萤火虫","绿色夜光虫","阿氯","萤火虫","绿色苍蝇","东方绿毛虫","莉格露","绿色女人","绿毛虫","苍蝇妹","绿毛龟","nightbug","绿头发","マツヨイナイトバグ","蠢虫","待宵的萤火虫","绿色夜光虫","阿氯","萤火虫","绿色苍蝇","东方绿毛虫","莉格露","绿色女人","绿毛虫","苍蝇妹","绿毛龟","nightbug","绿头发","マツヨイナイトバグ","蠢虫","待宵的萤火虫","绿色夜光虫","阿氯","萤火虫","绿色苍蝇","东方绿毛虫","莉格露","绿色女人","绿毛虫","苍蝇妹","绿毛龟","nightbug","绿头发"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20211112","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11343,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22005,"notes":{"total":159,"tap":119,"hold":13,"slide":6,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11343,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":22005,"notes":{"total":375,"tap":285,"hold":31,"slide":9,"touch":40,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11343,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":623,"tap":444,"hold":97,"slide":56,"touch":9,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11343,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":982,"tap":732,"hold":23,"slide":115,"touch":23,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11343,"level_id":4,"level":"14","level_value":14.3,"note_designer":"ぴちネコ","romVersion":22005,"notes":{"total":1127,"tap":671,"hold":45,"slide":115,"touch":132,"break_":164},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2592,"long":false},{"id":1344,"players":3642,"title":"ポッピンキャンディ☆フィーバー!","utTitle":null,"artist":"キノシタ","albums":["ポッピンキャンディ☆フィーバー!","poppin' candy fever","流行糖果发烧了","怨!","八千块钱","女同3","流行糖果热","poppin candy fever","ポッピンキャンディ☆フィーバー!","poppin' candy fever","流行糖果发烧了","怨!","八千块钱","女同3","流行糖果热","poppin candy fever","ポッピンキャンディ☆フィーバー!","poppin' candy fever","流行糖果发烧了","怨!","八千块钱","女同3","流行糖果热","poppin candy fever","叭叭叭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20211126","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11344,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":148,"tap":121,"hold":9,"slide":6,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11344,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22005,"notes":{"total":395,"tap":290,"hold":25,"slide":18,"touch":18,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11344,"level_id":2,"level":"10","level_value":10.0,"note_designer":"シチミヘルツ","romVersion":22005,"notes":{"total":599,"tap":450,"hold":45,"slide":40,"touch":35,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11344,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"隅田川星人","romVersion":22005,"notes":{"total":872,"tap":551,"hold":75,"slide":87,"touch":116,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1345,"players":1932,"title":"どぅーまいべすと!","utTitle":null,"artist":"キノシタ","albums":["どぅーまいべすと!","独立宣言","音街宣言","do mai best","do my best","どぅーまいべすと!","独立宣言","音街宣言","do mai best","do my best","どぅーまいべすと!","独立宣言","音街宣言","do mai best","do my best"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20211126","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11345,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22005,"notes":{"total":92,"tap":70,"hold":3,"slide":3,"touch":15,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11345,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22005,"notes":{"total":232,"tap":188,"hold":17,"slide":14,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11345,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22005,"notes":{"total":477,"tap":379,"hold":68,"slide":9,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11345,"level_id":3,"level":"12","level_value":12.4,"note_designer":"翠楼屋","romVersion":22005,"notes":{"total":671,"tap":506,"hold":60,"slide":39,"touch":31,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1346,"players":7927,"title":"春を告げる","utTitle":null,"artist":"yama","albums":["春を告げる","春日宣告","\uD83D\uDECC","春天的宣告","春告","宣告春天","睡了","cogito睡觉","春を告げる","春日宣告","\uD83D\uDECC","春天的宣告","春告","宣告春天","睡了","cogito睡觉","春を告げる","春日宣告","\uD83D\uDECC","春天的宣告","春告","宣告春天","睡了","cogito睡觉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":120,"releaseDate":"20220610","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11346,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":23002,"notes":{"total":98,"tap":70,"hold":14,"slide":3,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11346,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23002,"notes":{"total":244,"tap":192,"hold":9,"slide":13,"touch":24,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11346,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":397,"tap":331,"hold":44,"slide":10,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11346,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":23002,"notes":{"total":675,"tap":531,"hold":69,"slide":33,"touch":34,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1349,"players":9035,"title":"失敗作少女","utTitle":null,"artist":"かいりきベア・MARETU feat.初音ミク","albums":["失敗作少女","失败作少女","我肯定","失败作","失敗作少女","失败作少女","我肯定","失败作","吕元伟","自卑少女吕元伟","失敗作少女","失败作少女","我肯定","失败作","成功当男娘"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":235,"releaseDate":"20211224","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11349,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22006,"notes":{"total":128,"tap":87,"hold":15,"slide":4,"touch":21,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11349,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22006,"notes":{"total":295,"tap":202,"hold":27,"slide":36,"touch":27,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11349,"level_id":2,"level":"10","level_value":10.2,"note_designer":"隅田川星人","romVersion":22006,"notes":{"total":450,"tap":272,"hold":84,"slide":41,"touch":36,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11349,"level_id":3,"level":"13","level_value":13.1,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":795,"tap":525,"hold":80,"slide":79,"touch":81,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2025,"long":false},{"id":1350,"players":1961,"title":"悪魔の踊り方","utTitle":null,"artist":"キタニタツヤ","albums":["悪魔の踊り方","恶魔","恶魔的舞蹈方式","恶魔踊","恶魔跳舞","\uD83D\uDC7F\uD83D\uDC6F","\uD83D\uDC41","\uD83D\uDC41️","悪魔の踊り方","恶魔","恶魔的舞蹈方式","恶魔踊","恶魔跳舞","\uD83D\uDC7F\uD83D\uDC6F","\uD83D\uDC41","\uD83D\uDC41️","悪魔の踊り方","恶魔","恶魔的舞蹈方式","恶魔踊","恶魔跳舞","\uD83D\uDC7F\uD83D\uDC6F","\uD83D\uDC41","\uD83D\uDC41️"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":106,"releaseDate":"20211224","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11350,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22006,"notes":{"total":113,"tap":89,"hold":11,"slide":4,"touch":7,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11350,"level_id":1,"level":"6","level_value":6.7,"note_designer":"","romVersion":22006,"notes":{"total":246,"tap":184,"hold":21,"slide":10,"touch":24,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11350,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"シチミヘルツ","romVersion":22006,"notes":{"total":481,"tap":374,"hold":27,"slide":32,"touch":29,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11350,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":22006,"notes":{"total":676,"tap":489,"hold":64,"slide":85,"touch":27,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2436,"long":false},{"id":1351,"players":1998,"title":"ノイローゼ","utTitle":null,"artist":"蜂屋ななし","albums":["ノイローゼ","神经病","神经质","米津玄师","兔子魔术师","神经症","neurose","神经官能症","ノイローゼ","神经病","神经质","米津玄师","兔子魔术师","神经症","neurose","神经官能症","ノイローゼ","神经病","神经质","米津玄师","兔子魔术师","神经症","neurose","神经官能症"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":200,"releaseDate":"20211224","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11351,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22006,"notes":{"total":136,"tap":94,"hold":14,"slide":6,"touch":21,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11351,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":22006,"notes":{"total":401,"tap":314,"hold":37,"slide":19,"touch":23,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11351,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":22006,"notes":{"total":655,"tap":512,"hold":73,"slide":47,"touch":17,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11351,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":22006,"notes":{"total":890,"tap":600,"hold":73,"slide":152,"touch":56,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1353,"players":11193,"title":"グッバイ宣言","utTitle":null,"artist":"Chinozo","albums":["グッバイ宣言"," 扭手宣言","卡手宣言","扭手宣言","886宣言","再见宣言","one,two","✌️\uD83D\uDC4C","グッバイ宣言"," 扭手宣言","卡手宣言","扭手宣言","886宣言","再见宣言","one,two","✌️\uD83D\uDC4C","グッバイ宣言"," 扭手宣言","卡手宣言","扭手宣言","886宣言","再见宣言","one,two","✌️\uD83D\uDC4C"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11353,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22004,"notes":{"total":123,"tap":98,"hold":12,"slide":4,"touch":5,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11353,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":22004,"notes":{"total":328,"tap":295,"hold":12,"slide":12,"touch":5,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11353,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":22004,"notes":{"total":519,"tap":384,"hold":81,"slide":22,"touch":21,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11353,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":683,"tap":473,"hold":58,"slide":135,"touch":7,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2148,"long":false},{"id":1354,"players":9356,"title":"春嵐","utTitle":null,"artist":"john","albums":["春嵐","春风","蓝色妖姬","哈姆风暴","蓝色妖姬切尔西","哈利路大旋风","春天的风暴","春岚","春嵐","春风","蓝色妖姬","哈姆风暴","蓝色妖姬切尔西","哈利路大旋风","春天的风暴","春岚","春嵐","春风","蓝色妖姬","哈姆风暴","蓝色妖姬切尔西","哈利路大旋风","春天的风暴","春岚"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20220225","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11354,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22007,"notes":{"total":116,"tap":99,"hold":3,"slide":2,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11354,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22007,"notes":{"total":257,"tap":209,"hold":13,"slide":4,"touch":19,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11354,"level_id":2,"level":"10","level_value":10.2,"note_designer":"隅田川星人","romVersion":22007,"notes":{"total":433,"tap":229,"hold":83,"slide":56,"touch":43,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11354,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":668,"tap":522,"hold":48,"slide":81,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1355,"players":13055,"title":"ラグトレイン","utTitle":{"111355":"[協]ラグトレイン"},"artist":"稲葉曇","albums":["ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain","ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain","ラグトレイン","延误列车","打地鼠","延迟列车","烟雾列车","少女终末旅行","列车","15列车","lag train","电车迟到","lagtrain"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":147,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":24000,"dx":{"0":{"id":11355,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22007,"notes":{"total":137,"tap":105,"hold":16,"slide":4,"touch":9,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11355,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":22007,"notes":{"total":307,"tap":249,"hold":22,"slide":14,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11355,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":22007,"notes":{"total":536,"tap":438,"hold":64,"slide":19,"touch":5,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11355,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":772,"tap":551,"hold":84,"slide":96,"touch":30,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111355":{"id":111355,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2101,"long":false},{"id":1358,"players":12855,"title":"インドア系ならトラックメイカー","utTitle":null,"artist":"Yunomi & nicamoq","albums":["インドア系ならトラックメイカー","室内系","nichan","小姐姐","一笔画","室内轨道制造商","indoor系","室内系的track maker","内向都是作曲家","室内系的trackmaker","インドア系ならトラックメイカー","室内系","nichan","小姐姐","一笔画","室内轨道制造商","indoor系","室内系的track maker","内向都是作曲家","室内系的trackmaker","インドア系ならトラックメイカー","室内系","nichan","小姐姐","一笔画","室内轨道制造商","indoor系","室内系的track maker","内向都是作曲家","室内系的trackmaker"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":128,"releaseDate":"20220128","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11358,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22006,"notes":{"total":115,"tap":81,"hold":6,"slide":7,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11358,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":22006,"notes":{"total":284,"tap":189,"hold":17,"slide":5,"touch":53,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11358,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":22006,"notes":{"total":439,"tap":157,"hold":184,"slide":33,"touch":57,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11358,"level_id":3,"level":"13","level_value":13.4,"note_designer":"一ノ瀬 リズ","romVersion":22006,"notes":{"total":703,"tap":507,"hold":47,"slide":78,"touch":68,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":958,"long":false},{"id":1359,"players":3339,"title":"アカツキアライヴァル","utTitle":{"111359":"[奏]アカツキアライヴァル"},"artist":"Last Note.","albums":["アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达","アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达","アカツキアライヴァル","拂晓","初音未来和波奇","鱼葱","女同8","拂晓已至","拂晓抵达"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":24000,"dx":{"0":{"id":11359,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22007,"notes":{"total":126,"tap":106,"hold":4,"slide":3,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11359,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":22007,"notes":{"total":280,"tap":198,"hold":30,"slide":22,"touch":23,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11359,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":522,"tap":429,"hold":28,"slide":53,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11359,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ロシェ@ペンギン","romVersion":22007,"notes":{"total":786,"tap":577,"hold":68,"slide":61,"touch":73,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111359":{"id":111359,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":282,"long":false},{"id":1360,"players":4436,"title":"リモコン","utTitle":null,"artist":"じーざす(ワンダフル☆オポチュニティ!)","albums":["リモコン","双子转转转","switch","遥控器","思维驰学习机","リモコン","双子转转转","switch","遥控器","思维驰学习机","リモコン","双子转转转","switch","遥控器","思维驰学习机"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":165,"releaseDate":"20220225","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11360,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22007,"notes":{"total":138,"tap":105,"hold":16,"slide":3,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11360,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":22007,"notes":{"total":342,"tap":242,"hold":19,"slide":11,"touch":52,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11360,"level_id":2,"level":"9","level_value":9.5,"note_designer":"翠楼屋","romVersion":22007,"notes":{"total":553,"tap":408,"hold":83,"slide":13,"touch":13,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11360,"level_id":3,"level":"13","level_value":13.2,"note_designer":"隅田川星人","romVersion":22007,"notes":{"total":828,"tap":513,"hold":95,"slide":106,"touch":84,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":280,"long":false},{"id":1361,"players":1989,"title":"on the rocks","utTitle":null,"artist":"OSTER project","albums":["on the rocks","otr","冰酒","在石头上","on the rocks","otr","冰酒","在石头上","on the rocks","otr","冰酒","在石头上"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20220225","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22007,"dxRomVersion":22007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11361,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":22007,"notes":{"total":94,"tap":70,"hold":13,"slide":2,"touch":7,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11361,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":22007,"notes":{"total":259,"tap":197,"hold":20,"slide":14,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11361,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":22007,"notes":{"total":420,"tap":330,"hold":49,"slide":21,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11361,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22007,"notes":{"total":672,"tap":549,"hold":17,"slide":76,"touch":27,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1362,"players":2736,"title":"響け!CHIREI MY WAY!","utTitle":null,"artist":"森羅万象","albums":["響け!chirei my way!","响","地灵殿偶像","響け!chirei my way!","响","地灵殿偶像","響け!chirei my way!","响","地灵殿偶像"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":181,"releaseDate":"20220107","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11362,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22006,"notes":{"total":83,"tap":42,"hold":20,"slide":5,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11362,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22006,"notes":{"total":258,"tap":190,"hold":15,"slide":23,"touch":14,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11362,"level_id":2,"level":"9","level_value":9.5,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":416,"tap":306,"hold":46,"slide":17,"touch":12,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11362,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"隅田川星人","romVersion":22006,"notes":{"total":552,"tap":344,"hold":32,"slide":101,"touch":39,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1363,"players":4954,"title":"神々が恋した幻想郷","utTitle":null,"artist":"Unlucky Morpheus","albums":["神々が恋した幻想郷","东方南十字","众神眷恋的十字星","幻想乡","神恋","东十字","众神眷恋的幻想乡","testify","神都得意俺们屯","东十字星","青春版白南十字星","神仙稀罕俺们屯","终神眷恋的南十字","神眷","小南十字","神々が恋した幻想郷","东方南十字","众神眷恋的十字星","幻想乡","神恋","东十字","众神眷恋的幻想乡","testify","神都得意俺们屯","东十字星","青春版白南十字星","神仙稀罕俺们屯","终神眷恋的南十字","神眷","小南十字","神々が恋した幻想郷","东方南十字","众神眷恋的十字星","幻想乡","神恋","东十字","众神眷恋的幻想乡","testify","神都得意俺们屯","东十字星","青春版白南十字星","神仙稀罕俺们屯","终神眷恋的南十字","神眷","小南十字"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":155,"releaseDate":"20250214","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11363,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":22006,"notes":{"total":123,"tap":97,"hold":12,"slide":3,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11363,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22006,"notes":{"total":356,"tap":295,"hold":17,"slide":16,"touch":15,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11363,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"隅田川星人","romVersion":22006,"notes":{"total":493,"tap":340,"hold":69,"slide":47,"touch":18,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11363,"level_id":3,"level":"13","level_value":13.5,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":941,"tap":783,"hold":42,"slide":55,"touch":23,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2087,"long":false},{"id":1364,"players":6038,"title":"Lia=Fail","utTitle":null,"artist":"Team Grimoire","albums":["lia=fail","剑3","生煎3","命运之石","圣剑三","liafail","圣剑3","生煎三","l=f","福瑞3","lia=fail","剑3","生煎3","命运之石","圣剑三","liafail","圣剑3","生煎三","l=f","福瑞3","lia=fail","剑3","生煎3","命运之石","圣剑三","liafail","圣剑3","生煎三","l=f","福瑞3"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":186,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11364,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":22004,"notes":{"total":210,"tap":181,"hold":12,"slide":2,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11364,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":22004,"notes":{"total":458,"tap":389,"hold":19,"slide":16,"touch":25,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11364,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":22004,"notes":{"total":697,"tap":514,"hold":51,"slide":67,"touch":38,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11364,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"-ZONE-Phoenix","romVersion":22004,"notes":{"total":1016,"tap":827,"hold":47,"slide":118,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1365,"players":7693,"title":"アンビバレンス","utTitle":{"111365":"[奏]アンビバレンス"},"artist":"すりぃ×相沢","albums":["アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心","アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心","アンビバレンス","言叶5","ambivalence","我喜欢阿瓦鲁","二律背反","矛盾心理","穿心"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"maimai","bpm":187,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":25000,"dx":{"0":{"id":11365,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22004,"notes":{"total":202,"tap":163,"hold":14,"slide":5,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11365,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22004,"notes":{"total":372,"tap":275,"hold":15,"slide":34,"touch":41,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11365,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"隅田川星人","romVersion":22004,"notes":{"total":603,"tap":439,"hold":77,"slide":41,"touch":26,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11365,"level_id":3,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":884,"tap":564,"hold":50,"slide":203,"touch":51,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111365":{"id":111365,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2269,"long":false},{"id":1369,"players":6379,"title":"廻廻奇譚","utTitle":null,"artist":"Eve TVアニメ「呪術廻戦」第1クールオープニングテーマ","albums":["廻廻奇譚","灰灰鸡蛋","廻廻奇谭","奇谭","回回奇谈","保龄球","\uD83E\uDD1E","咒术回战","\uD83C\uDFB3","咒术回战主题曲","轮回奇谭","回回奇谭","廻廻奇譚","灰灰鸡蛋","廻廻奇谭","奇谭","回回奇谈","保龄球","\uD83E\uDD1E","咒术回战","\uD83C\uDFB3","咒术回战主题曲","轮回奇谭","回回奇谭","廻廻奇譚","灰灰鸡蛋","廻廻奇谭","奇谭","回回奇谈","保龄球","\uD83E\uDD1E","咒术回战","\uD83C\uDFB3","咒术回战主题曲","轮回奇谭","回回奇谭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":185,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22004,"dxRomVersion":22004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11369,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":22004,"notes":{"total":175,"tap":150,"hold":6,"slide":12,"touch":6,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11369,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":22004,"notes":{"total":374,"tap":301,"hold":26,"slide":19,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11369,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":22004,"notes":{"total":588,"tap":466,"hold":75,"slide":41,"touch":4,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11369,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":22004,"notes":{"total":721,"tap":519,"hold":63,"slide":118,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11369,"level_id":4,"level":"13","level_value":13.5,"note_designer":"シチミヘルツ","romVersion":22004,"notes":{"total":839,"tap":631,"hold":21,"slide":122,"touch":45,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1371,"players":3703,"title":"アイドル新鋭隊","utTitle":null,"artist":"Mitchie M / 初音ミク / MORE MORE JUMP!「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":176,"releaseDate":"20211015","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11371,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25005,"notes":{"total":100,"tap":83,"hold":5,"slide":3,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11371,"level_id":1,"level":"7","level_value":7.4,"note_designer":"","romVersion":25005,"notes":{"total":253,"tap":198,"hold":16,"slide":18,"touch":9,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11371,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"隅田川星人","romVersion":25005,"notes":{"total":371,"tap":262,"hold":41,"slide":36,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11371,"level_id":3,"level":"12","level_value":12.1,"note_designer":"シチミヘルツ","romVersion":25005,"notes":{"total":508,"tap":276,"hold":51,"slide":127,"touch":7,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1372,"players":3749,"title":"needLe","utTitle":null,"artist":"DECO*27 / 初音ミク / Leo/need「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20211015","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11372,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25005,"notes":{"total":96,"tap":73,"hold":10,"slide":3,"touch":9,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11372,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25005,"notes":{"total":281,"tap":236,"hold":12,"slide":14,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11372,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":25005,"notes":{"total":425,"tap":318,"hold":42,"slide":22,"touch":29,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11372,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":25005,"notes":{"total":592,"tap":434,"hold":39,"slide":92,"touch":20,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1373,"players":3280,"title":"ヒステリックナイトガール","utTitle":null,"artist":"PSYQUI","albums":["ヒステリックナイトガール","啊啊啊啊!","歇斯底里","竭斯底里","歇斯底里夜女郎","歇斯底里女孩","歇斯底里夜晚女孩","夜晚歇斯底里女孩","歇斯底里的深夜女孩","眼保健操","ヒステリックナイトガール","啊啊啊啊!","歇斯底里","竭斯底里","歇斯底里夜女郎","歇斯底里女孩","歇斯底里夜晚女孩","夜晚歇斯底里女孩","歇斯底里的深夜女孩","眼保健操","ヒステリックナイトガール","啊啊啊啊!","歇斯底里","竭斯底里","歇斯底里夜女郎","歇斯底里女孩","歇斯底里夜晚女孩","夜晚歇斯底里女孩","歇斯底里的深夜女孩","眼保健操"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":126,"releaseDate":"20220128","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22006,"dxRomVersion":22006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11373,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":22006,"notes":{"total":141,"tap":121,"hold":1,"slide":6,"touch":12,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11373,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":22006,"notes":{"total":273,"tap":234,"hold":12,"slide":9,"touch":7,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11373,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"翠楼屋","romVersion":22006,"notes":{"total":463,"tap":301,"hold":52,"slide":87,"touch":5,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11373,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"シチミヘルツ","romVersion":22006,"notes":{"total":695,"tap":504,"hold":35,"slide":127,"touch":7,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1374,"players":8069,"title":"GIGANTØMAKHIA","utTitle":null,"artist":"BlackYooh vs. siromaru","albums":["gigantømakhia","艾尔登法环","刀客塔拿书","kop3","faded","艾伦沃克","艾伦走路者","艾兰沃克","博士","gigantomakhia","费大","elden ring","alanwalker","老头环","艾鲁迪克","褪色者","博士读书","gigantømakhia","艾尔登法环","刀客塔拿书","kop3","faded","艾伦沃克","艾伦走路者","艾兰沃克","博士","gigantomakhia","费大","elden ring","alanwalker","老头环","艾鲁迪克","褪色者","博士读书","gigantømakhia","艾尔登法环","刀客塔拿书","kop3","faded","艾伦沃克","艾伦走路者","艾兰沃克","博士","gigantomakhia","费大","elden ring","alanwalker","老头环","艾鲁迪克","褪色者","博士读书"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20220303","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":true,"jp":true,"m2l":false,"firstRomVersion":22005,"dxRomVersion":22005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11374,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":22005,"notes":{"total":278,"tap":243,"hold":14,"slide":4,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11374,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":22005,"notes":{"total":435,"tap":367,"hold":10,"slide":24,"touch":20,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11374,"level_id":2,"level":"13","level_value":13.0,"note_designer":"隅田川星人","romVersion":22005,"notes":{"total":622,"tap":441,"hold":63,"slide":62,"touch":43,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11374,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"KOP3rd with 翡翠マナ","romVersion":22005,"notes":{"total":1149,"tap":883,"hold":37,"slide":98,"touch":31,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1375,"players":8035,"title":"ミルキースター・シューティングスター","utTitle":null,"artist":"烏屋茶房 feat. 利香","albums":["ミルキースター・シューティングスター","牛奶流星","女同12","milky star","uni+主题曲","银河星","星代主题曲","牛奶4","ミルキースター・シューティングスター","牛奶流星","女同12","milky star","uni+主题曲","银河星","星代主题曲","牛奶4","ミルキースター・シューティングスター","牛奶流星","女同12","milky star","uni+主题曲","银河星","星代主题曲","牛奶4"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":184,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11375,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23000,"notes":{"total":144,"tap":85,"hold":28,"slide":6,"touch":23,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11375,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23000,"notes":{"total":381,"tap":294,"hold":24,"slide":24,"touch":29,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11375,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":632,"tap":472,"hold":56,"slide":34,"touch":20,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11375,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"シチミヘルツ","romVersion":23000,"notes":{"total":771,"tap":479,"hold":41,"slide":145,"touch":68,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1376,"players":6772,"title":"isophote","utTitle":null,"artist":"パソコン音楽クラブ feat.ぷにぷに電機","albums":["isophote","全角英文","isophote","女同10","vrchat","等照度线","恋爱裁判2","琪芽","姛","iso","打字带空格","isophote","全角英文","isophote","女同10","vrchat","等照度线","恋爱裁判2","琪芽","姛","iso","打字带空格","isophote","全角英文","isophote","女同10","vrchat","等照度线","恋爱裁判2","琪芽","姛","iso","打字带空格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11376,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23000,"notes":{"total":158,"tap":126,"hold":19,"slide":4,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11376,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":23000,"notes":{"total":276,"tap":200,"hold":26,"slide":20,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11376,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":447,"tap":280,"hold":80,"slide":72,"touch":14,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11376,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":23000,"notes":{"total":742,"tap":545,"hold":59,"slide":100,"touch":37,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1377,"players":6646,"title":"パラマウント☆ショータイム!!","utTitle":null,"artist":"翡乃イスカ","albums":["パラマウント☆ショータイム!!","paramount showtime","至高的表演时间","魔术兔","瑞秋","魔术兔子","霜星","showtime","paramount","小兔子","兔子魔术师","兔子","パラマウント☆ショータイム!!","paramount showtime","至高的表演时间","魔术兔","瑞秋","魔术兔子","霜星","showtime","paramount","小兔子","兔子魔术师","兔子","パラマウント☆ショータイム!!","paramount showtime","至高的表演时间","魔术兔","瑞秋","魔术兔子","霜星","showtime","paramount","小兔子","兔子魔术师","兔子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":222,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11377,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":207,"tap":170,"hold":18,"slide":2,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11377,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23000,"notes":{"total":406,"tap":324,"hold":26,"slide":16,"touch":22,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11377,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":673,"tap":522,"hold":77,"slide":34,"touch":22,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11377,"level_id":3,"level":"14","level_value":14.0,"note_designer":"隅田川星人","romVersion":23000,"notes":{"total":946,"tap":630,"hold":105,"slide":78,"touch":106,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1378,"players":7298,"title":"Strive against fate","utTitle":null,"artist":"Noah","albums":["strive against fate","saf","红剑","反抗命运","抗争命运","fate","抗命","对抗命运","电风扇","strive against fate","saf","红剑","反抗命运","抗争命运","fate","抗命","对抗命运","电风扇","strive against fate","saf","红剑","反抗命运","抗争命运","fate","抗命","对抗命运","电风扇","对抗尸体"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":209,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11378,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23000,"notes":{"total":253,"tap":214,"hold":8,"slide":4,"touch":18,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11378,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":23000,"notes":{"total":374,"tap":277,"hold":43,"slide":21,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11378,"level_id":2,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":23000,"notes":{"total":758,"tap":592,"hold":53,"slide":45,"touch":53,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11378,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Redarrow","romVersion":23000,"notes":{"total":1071,"tap":805,"hold":62,"slide":107,"touch":57,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1379,"players":8987,"title":"sølips","utTitle":null,"artist":"rintaro soma","albums":["sølips","100块","solips","100块钱","100元","一百块","索","嗦","\uD83D\uDD12","sølips","100块","solips","100块钱","100元","一百块","索","嗦","\uD83D\uDD12","我治好了宇宇症","fafa最爱","sølips","100块","solips","100块钱","100元","一百块","索","嗦","\uD83D\uDD12","solidworks","s∅lips","唯我论"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":199,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11379,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23000,"notes":{"total":228,"tap":171,"hold":17,"slide":10,"touch":25,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11379,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23000,"notes":{"total":381,"tap":310,"hold":31,"slide":23,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11379,"level_id":2,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":23000,"notes":{"total":733,"tap":508,"hold":52,"slide":72,"touch":84,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11379,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"7.3GHz -Før The Legends-","romVersion":23000,"notes":{"total":973,"tap":600,"hold":100,"slide":120,"touch":80,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2477,"long":false},{"id":1380,"players":5928,"title":"パーフェクション","utTitle":null,"artist":"柊マグネタイト","albums":["パーフェクション","perfection","完美","完美物质","パーフェクション","perfection","完美","完美物质","パーフェクション","perfection","完美","完美物质"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20220428","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11380,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23002,"notes":{"total":143,"tap":88,"hold":22,"slide":3,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11380,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23002,"notes":{"total":386,"tap":305,"hold":12,"slide":21,"touch":39,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11380,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":23002,"notes":{"total":628,"tap":480,"hold":84,"slide":35,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11380,"level_id":3,"level":"13","level_value":13.4,"note_designer":"隅田川星人","romVersion":23002,"notes":{"total":836,"tap":560,"hold":58,"slide":118,"touch":69,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1381,"players":4378,"title":"デーモンベット","utTitle":null,"artist":"ちいたな feat.flower","albums":["デーモンベット","deamon bet","恶魔赌局","恶魔赌约","男同","恶魔赌博","daemon bet","男同3","デーモンベット","deamon bet","恶魔赌局","恶魔赌约","男同","恶魔赌博","daemon bet","男同3","デーモンベット","deamon bet","恶魔赌局","恶魔赌约","男同","恶魔赌博","daemon bet","男同3"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":107,"releaseDate":"20220428","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11381,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23002,"notes":{"total":149,"tap":114,"hold":10,"slide":4,"touch":18,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11381,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23002,"notes":{"total":336,"tap":259,"hold":19,"slide":13,"touch":37,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11381,"level_id":2,"level":"10","level_value":10.5,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":518,"tap":399,"hold":35,"slide":20,"touch":14,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11381,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":666,"tap":484,"hold":36,"slide":110,"touch":23,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1382,"players":8277,"title":"HECATONCHEIR","utTitle":null,"artist":"Yuta Imai","albums":["hecatoncheir","百足巨人","MysteryPrism","百手巨人","摆臂巨人","百臂巨人","捅椅子","heca","hecatoncheir","百足巨人","MysteryPrism","百手巨人","摆臂巨人","百臂巨人","捅椅子","heca","hecatoncheir","百足巨人","MysteryPrism","百手巨人","摆臂巨人","百臂巨人","捅椅子","heca"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20220527","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11382,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23002,"notes":{"total":264,"tap":213,"hold":9,"slide":8,"touch":21,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11382,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23002,"notes":{"total":410,"tap":329,"hold":10,"slide":22,"touch":33,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11382,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":23002,"notes":{"total":707,"tap":544,"hold":51,"slide":24,"touch":67,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11382,"level_id":3,"level":"14","level_value":14.1,"note_designer":"隅田川星人","romVersion":23002,"notes":{"total":1027,"tap":623,"hold":77,"slide":133,"touch":94,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2598,"long":false},{"id":1383,"players":6434,"title":"Irresistible","utTitle":null,"artist":"MK","albums":["irresistible","不可阻挡","可莉","魔卡少女樱","irresistible","不可阻挡","可莉","魔卡少女樱","irresistible","不可阻挡","可莉","魔卡少女樱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":157,"releaseDate":"20220527","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11383,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23002,"notes":{"total":139,"tap":112,"hold":10,"slide":7,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11383,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23002,"notes":{"total":308,"tap":244,"hold":28,"slide":13,"touch":20,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11383,"level_id":2,"level":"11","level_value":11.0,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":454,"tap":344,"hold":41,"slide":42,"touch":5,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11383,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":23002,"notes":{"total":782,"tap":593,"hold":25,"slide":81,"touch":56,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1384,"players":5092,"title":"HAGAKIRI","utTitle":null,"artist":"Masayoshi Iimori","albums":["hagakiri","橘花","牛顿环","hgkr","健身环","憋憋","老妹环","光圈科技","八云紫拿着乾坤圈","hagakiri","橘花","牛顿环","hgkr","健身环","憋憋","老妹环","光圈科技","八云紫拿着乾坤圈","hagakiri","橘花","牛顿环","hgkr","健身环","憋憋","老妹环","光圈科技","八云紫拿着乾坤圈"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":172,"releaseDate":"20220527","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11384,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23002,"notes":{"total":211,"tap":175,"hold":6,"slide":4,"touch":15,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11384,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23002,"notes":{"total":341,"tap":264,"hold":18,"slide":17,"touch":32,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11384,"level_id":2,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":547,"tap":398,"hold":52,"slide":15,"touch":42,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11384,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":733,"tap":464,"hold":71,"slide":59,"touch":97,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1385,"players":5814,"title":"N3V3R G3T OV3R","utTitle":null,"artist":"C-Show","albums":["n3v3r g3t ov3r","永不结束","别急19","永远不过","never get over","3炸","四个三","别急18","双枪老太婆","ngo","n3","3333","n3v3r g3t ov3r","永不结束","别急19","永远不过","never get over","3炸","四个三","别急18","双枪老太婆","ngo","n3","3333","n3v3r g3t ov3r","永不结束","别急19","永远不过","never get over","3炸","四个三","别急18","双枪老太婆","ngo","n3","3333"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":128,"releaseDate":"20220527","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11385,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23002,"notes":{"total":146,"tap":116,"hold":18,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11385,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23002,"notes":{"total":297,"tap":199,"hold":36,"slide":13,"touch":25,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11385,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":23002,"notes":{"total":484,"tap":285,"hold":84,"slide":31,"touch":77,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11385,"level_id":3,"level":"14","level_value":14.3,"note_designer":"隅田川星人","romVersion":23002,"notes":{"total":749,"tap":528,"hold":31,"slide":91,"touch":66,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1386,"players":8271,"title":"Swift Swing","utTitle":null,"artist":"Laur","albums":["swift swing","迪拉熊跳舞","他们是经理","滴蜡熊爱跳舞","海澜之家","迪拉熊热舞","滴蜡熊热舞","白铜寺拉小提琴","荡秋千","ss2","五熊扛鼎","swift swing","迪拉熊跳舞","他们是经理","滴蜡熊爱跳舞","海澜之家","迪拉熊热舞","滴蜡熊热舞","白铜寺拉小提琴","荡秋千","ss2","五熊扛鼎","swift swing","迪拉熊跳舞","他们是经理","滴蜡熊爱跳舞","海澜之家","迪拉熊热舞","滴蜡熊热舞","白铜寺拉小提琴","荡秋千","ss2","五熊扛鼎"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20220624","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11386,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":156,"tap":103,"hold":18,"slide":6,"touch":24,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11386,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23003,"notes":{"total":320,"tap":214,"hold":36,"slide":20,"touch":41,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11386,"level_id":2,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":23003,"notes":{"total":575,"tap":304,"hold":99,"slide":50,"touch":112,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11386,"level_id":3,"level":"14","level_value":14.3,"note_designer":"はっぴー星人","romVersion":23003,"notes":{"total":873,"tap":572,"hold":64,"slide":78,"touch":117,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2785,"long":false},{"id":1387,"players":9104,"title":"星空パーティーチューン","utTitle":null,"artist":"OSTER project feat. そらこ","albums":["星空パーティーチューン","童颜巨乳","party tune","星空","星空party tune","奶子很大","兎花宮","新海天","星空叙爱曲","星空パーティーチューン","童颜巨乳","party tune","星空","星空party tune","奶子很大","兎花宮","新海天","星空叙爱曲","星空パーティーチューン","童颜巨乳","party tune","星空","星空party tune","奶子很大","兎花宮","新海天","星空叙爱曲","兔花宫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":230,"releaseDate":"20220624","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11387,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":170,"tap":133,"hold":13,"slide":5,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11387,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23003,"notes":{"total":484,"tap":389,"hold":44,"slide":25,"touch":8,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11387,"level_id":2,"level":"11","level_value":11.5,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":618,"tap":462,"hold":83,"slide":32,"touch":32,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11387,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":23003,"notes":{"total":939,"tap":691,"hold":64,"slide":74,"touch":93,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1388,"players":7733,"title":"チューリングの跡","utTitle":null,"artist":"Frums","albums":["チューリングの跡","屠龙之技","图灵","灭火器","螺号","jazz for your soul","图灵之跡","信用2","迹","白法院吹萨克斯","\uD83C\uDFB7","credits2","图灵之迹","\uD83C\uDFB7\uD83E\uDD5A","图灵轨迹","萨克斯","图灵之寄","dx信用","チューリングの跡","屠龙之技","图灵","灭火器","螺号","jazz for your soul","图灵之跡","信用2","迹","白法院吹萨克斯","\uD83C\uDFB7","credits2","图灵之迹","\uD83C\uDFB7\uD83E\uDD5A","图灵轨迹","萨克斯","图灵之寄","dx信用","チューリングの跡","屠龙之技","图灵","灭火器","螺号","jazz for your soul","图灵之跡","信用2","迹","白法院吹萨克斯","\uD83C\uDFB7","credits2","图灵之迹","\uD83C\uDFB7\uD83E\uDD5A","图灵轨迹","萨克斯","图灵之寄","dx信用"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11388,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":161,"tap":128,"hold":13,"slide":10,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11388,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23003,"notes":{"total":337,"tap":275,"hold":16,"slide":24,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11388,"level_id":2,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":23003,"notes":{"total":539,"tap":419,"hold":87,"slide":8,"touch":22,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11388,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"譜面-100号","romVersion":23003,"notes":{"total":956,"tap":616,"hold":86,"slide":1,"touch":228,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2620,"long":false},{"id":1389,"players":7871,"title":"Sage","utTitle":null,"artist":"かめりあ","albums":["sage","世嘉","撒歌","贤者","sega","sabe","圣人","撒给","萨格","sage","世嘉","撒歌","贤者","sega","sabe","圣人","撒给","萨格","sage","世嘉","撒歌","贤者","sega","sabe","圣人","撒给","萨格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20220624","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11389,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23003,"notes":{"total":237,"tap":209,"hold":17,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11389,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":23003,"notes":{"total":366,"tap":319,"hold":6,"slide":29,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11389,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":641,"tap":462,"hold":64,"slide":53,"touch":21,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11389,"level_id":3,"level":"14","level_value":14.5,"note_designer":"ロシェ@ペンギン","romVersion":23003,"notes":{"total":1012,"tap":714,"hold":71,"slide":37,"touch":174,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2555,"long":false},{"id":1390,"players":7797,"title":"OTOGEMA","utTitle":null,"artist":"ビートまりお","albums":["otogema","狗打碟","音游玩家","otto干嘛","otto","10周年","ottogema","ottogame","电棍","十周年","音游人","otogema","狗打碟","音游玩家","otto干嘛","otto","10周年","ottogema","ottogame","电棍","十周年","音游人","otogema","狗打碟","音游玩家","otto干嘛","otto","10周年","ottogema","ottogame","电棍","十周年","音游人"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20220711","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11390,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23000,"notes":{"total":192,"tap":153,"hold":9,"slide":4,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11390,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23000,"notes":{"total":307,"tap":251,"hold":24,"slide":5,"touch":7,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11390,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":23000,"notes":{"total":538,"tap":402,"hold":33,"slide":56,"touch":37,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11390,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack & はっぴー vs からめる & ぐるん","romVersion":23000,"notes":{"total":877,"tap":672,"hold":15,"slide":112,"touch":30,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1391,"players":7274,"title":"WiPE OUT MEMORIES","utTitle":null,"artist":"t+pazolite","albums":["wipe out memories","wet out trousers","洗衣机","wipeout","缝合怪","wom","消逝的回忆","fade out memories","10周年","抹去记忆","串烧","wipe","超级缝合怪","十周年","maimai机台","wipe out memories","wet out trousers","洗衣机","wipeout","缝合怪","wom","消逝的回忆","fade out memories","10周年","抹去记忆","串烧","wipe","超级缝合怪","十周年","maimai机台","乌蒙吃走马灯","wipe out memories","wet out trousers","洗衣机","wipeout","缝合怪","wom","消逝的回忆","fade out memories","10周年","抹去记忆","串烧","wipe","超级缝合怪","十周年","maimai机台","走马灯","消失的记忆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":210,"releaseDate":"20220711","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11391,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23000,"notes":{"total":267,"tap":228,"hold":9,"slide":6,"touch":13,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11391,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23000,"notes":{"total":458,"tap":376,"hold":18,"slide":14,"touch":30,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11391,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":23000,"notes":{"total":717,"tap":533,"hold":29,"slide":64,"touch":49,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11391,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"maimai Fumen All-Stars","romVersion":23000,"notes":{"total":1105,"tap":741,"hold":102,"slide":98,"touch":76,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1392,"players":6385,"title":"Metamorphosism","utTitle":null,"artist":"削除","albums":["metamorphosism","削除鬼叫","变态主义","消除鬼叫","硅胶","变态","meta","变质","质变","变形","哇袄","metamorphosism","削除鬼叫","变态主义","消除鬼叫","硅胶","变态","meta","变质","质变","变形","哇袄","metamorphosism","削除鬼叫","变态主义","消除鬼叫","硅胶","变态","meta","变质","质变","变形","哇袄"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":144,"releaseDate":"20220805","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11392,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23004,"notes":{"total":252,"tap":211,"hold":16,"slide":9,"touch":9,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11392,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23004,"notes":{"total":324,"tap":232,"hold":38,"slide":21,"touch":29,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11392,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"翠楼屋","romVersion":23004,"notes":{"total":525,"tap":244,"hold":132,"slide":62,"touch":76,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11392,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":954,"tap":680,"hold":60,"slide":127,"touch":71,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1393,"players":7184,"title":"白花の天使","utTitle":null,"artist":"Yu-dachi","albums":["白花の天使","东雪莲2","冬雪の莲莲","白花天使","白花的天使","白花","白花の天使","东雪莲2","冬雪の莲莲","白花天使","白花的天使","白花","白花の天使","东雪莲2","冬雪の莲莲","白花天使","白花的天使","白花"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20220805","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11393,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23004,"notes":{"total":206,"tap":165,"hold":13,"slide":10,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11393,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23004,"notes":{"total":408,"tap":358,"hold":16,"slide":19,"touch":12,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11393,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":700,"tap":530,"hold":89,"slide":52,"touch":18,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11393,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":23004,"notes":{"total":846,"tap":591,"hold":84,"slide":84,"touch":72,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1394,"players":10275,"title":"World's end loneliness","utTitle":null,"artist":"打打だいず","albums":["world's end loneliness","wel","寡","孤独终老","世终","世末孤独","世孤","世翠孤独","林尼","世终孤独","寡王","奥尔菲斯","世終孤独","world's end loneliness","wel","寡","孤独终老","世终","世末孤独","世孤","世翠孤独","林尼","世终孤独","寡王","奥尔菲斯","世終孤独","world's end loneliness","wel","寡","孤独终老","世终","世末孤独","世孤","世翠孤独","林尼","世终孤独","寡王","奥尔菲斯","世終孤独"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20220805","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11394,"level_id":0,"level":"7","level_value":7.0,"note_designer":"","romVersion":23004,"notes":{"total":359,"tap":281,"hold":26,"slide":8,"touch":35,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11394,"level_id":1,"level":"9+","level_value":9.8,"note_designer":"","romVersion":23004,"notes":{"total":472,"tap":398,"hold":16,"slide":25,"touch":21,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11394,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":23004,"notes":{"total":721,"tap":520,"hold":64,"slide":57,"touch":56,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11394,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"翡翠マナ","romVersion":23004,"notes":{"total":1234,"tap":856,"hold":88,"slide":96,"touch":94,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1395,"players":5161,"title":"Jouez Avec Moi?","utTitle":null,"artist":"Retropolitaliens (Ms.+駄々子)","albums":["jouez avec moi?","陪我玩","和我玩","moi","问号","跟我玩","来玩","来一起玩","法文歌2","jam","jouez avec moi?","陪我玩","和我玩","moi","问号","跟我玩","来玩","来一起玩","法文歌2","jam","jouez avec moi?","陪我玩","和我玩","moi","问号","跟我玩","来玩","来一起玩","法文歌2","jam"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":162,"releaseDate":"20220805","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11395,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23004,"notes":{"total":166,"tap":123,"hold":16,"slide":8,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11395,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23004,"notes":{"total":312,"tap":248,"hold":16,"slide":18,"touch":21,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11395,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":566,"tap":420,"hold":39,"slide":67,"touch":31,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11395,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":23004,"notes":{"total":906,"tap":637,"hold":70,"slide":86,"touch":73,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1398,"players":9307,"title":"Good bye, Merry-Go-Round.","utTitle":null,"artist":"Yooh","albums":["good bye, merry-go-round.","龙图","goodbye,mother-not-found","good bye, mothre-not-found","旋转mua","再见,旋转木马","白人掐腰","旋转木马","再见旋转木马","\uD83D\uDC34","\uD83D\uDC0E","旋转古神","木马","江南style","\uD83D\uDD01\uD83C\uDF32\uD83D\uDC34","阿尼娅","good bye, mother-not-found.","\uD83C\uDFA0","再见转圈圈","good bye, mother-not-found","杩","good bye merry go round","日向千夏","good bye, merry-go-round.","龙图","goodbye,mother-not-found","good bye, mothre-not-found","旋转mua","再见,旋转木马","白人掐腰","旋转木马","再见旋转木马","\uD83D\uDC34","\uD83D\uDC0E","旋转古神","木马","江南style","\uD83D\uDD01\uD83C\uDF32\uD83D\uDC34","阿尼娅","good bye, mother-not-found.","\uD83C\uDFA0","再见转圈圈","good bye, mother-not-found","杩","good bye merry go round","日向千夏","good bye, merry-go-round.","龙图","goodbye,mother-not-found","good bye, mothre-not-found","旋转mua","再见,旋转木马","白人掐腰","旋转木马","再见旋转木马","\uD83D\uDC34","\uD83D\uDC0E","旋转古神","木马","江南style","\uD83D\uDD01\uD83C\uDF32\uD83D\uDC34","阿尼娅","good bye, mother-not-found.","\uD83C\uDFA0","再见转圈圈","good bye, mother-not-found","杩","good bye merry go round","日向千夏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":185,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11398,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23001,"notes":{"total":240,"tap":188,"hold":16,"slide":4,"touch":19,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11398,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23001,"notes":{"total":354,"tap":293,"hold":12,"slide":15,"touch":23,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11398,"level_id":2,"level":"12","level_value":12.5,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":622,"tap":480,"hold":71,"slide":32,"touch":11,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11398,"level_id":3,"level":"14","level_value":14.1,"note_designer":"あまくちジンジャー","romVersion":23001,"notes":{"total":870,"tap":574,"hold":96,"slide":120,"touch":62,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1059,"long":false},{"id":1399,"players":3974,"title":"ツクヨミステップ","utTitle":null,"artist":"ユリイ・カノン feat.nameless","albums":["ツクヨミステップ","月读","水枪","斯普拉遁","月读舞步","女人拿水枪","戴帽女人滋水枪","水枪姐","嗒嗒啦嗒啦嗒嗒","ツクヨミステップ","月读","水枪","斯普拉遁","月读舞步","女人拿水枪","戴帽女人滋水枪","水枪姐","嗒嗒啦嗒啦嗒嗒","ツクヨミステップ","月读","水枪","斯普拉遁","月读舞步","女人拿水枪","戴帽女人滋水枪","水枪姐","嗒嗒啦嗒啦嗒嗒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":172,"releaseDate":"20220722","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11399,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":194,"tap":173,"hold":7,"slide":7,"touch":4,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11399,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23003,"notes":{"total":385,"tap":337,"hold":15,"slide":10,"touch":12,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11399,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":23003,"notes":{"total":637,"tap":500,"hold":65,"slide":50,"touch":8,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11399,"level_id":3,"level":"13","level_value":13.5,"note_designer":"じゃこレモン","romVersion":23003,"notes":{"total":920,"tap":711,"hold":70,"slide":66,"touch":49,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":826,"long":false},{"id":1400,"players":10528,"title":"folern","utTitle":null,"artist":"ぬゆり","albums":["folern","北冰洋","迪希雅","水陈","佛冷","给我玩中二节奏","folern","北冰洋","迪希雅","水陈","佛冷","给我玩中二节奏","folern","北冰洋","迪希雅","水陈","佛冷","给我玩中二节奏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20220722","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11400,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23003,"notes":{"total":204,"tap":160,"hold":10,"slide":4,"touch":27,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11400,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23003,"notes":{"total":381,"tap":322,"hold":25,"slide":20,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11400,"level_id":2,"level":"12","level_value":12.2,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":667,"tap":485,"hold":56,"slide":42,"touch":69,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11400,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":979,"tap":789,"hold":77,"slide":55,"touch":28,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":697,"long":false},{"id":1401,"players":5210,"title":"コスモポップファンクラブ","utTitle":null,"artist":"ナユタン星人","albums":["コスモポップファンクラブ","芭芭拉拉粑粑","吧啦吧吧吧","cosmo pop funclub","宇宙流行乐俱乐部","小魔仙","cpfc","巴啦啦小魔仙","巴啦啦","コスモポップファンクラブ","芭芭拉拉粑粑","吧啦吧吧吧","cosmo pop funclub","宇宙流行乐俱乐部","小魔仙","cpfc","巴啦啦小魔仙","巴啦啦","コスモポップファンクラブ","芭芭拉拉粑粑","吧啦吧吧吧","cosmo pop funclub","宇宙流行乐俱乐部","小魔仙","cpfc","巴啦啦小魔仙","巴啦啦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":129,"releaseDate":"20220722","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11401,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23003,"notes":{"total":164,"tap":132,"hold":10,"slide":4,"touch":5,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11401,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23003,"notes":{"total":266,"tap":188,"hold":21,"slide":9,"touch":26,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11401,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"隅田川星人","romVersion":23003,"notes":{"total":607,"tap":358,"hold":86,"slide":37,"touch":111,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11401,"level_id":3,"level":"13","level_value":13.0,"note_designer":"隅田川星人","romVersion":23003,"notes":{"total":903,"tap":621,"hold":54,"slide":66,"touch":132,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2061,"long":false},{"id":1402,"players":5381,"title":"撩乱乙女†無双劇","utTitle":null,"artist":"曲:Haggy Rock & 佐藤厚仁/歌:⊿TRiEDGE [高瀬 梨緒(CV:久保 ユリカ)、結城 莉玖(CV:朝日奈 丸佳)、藍原 椿(CV:橋本 ちなみ)]","albums":["撩乱乙女†無双劇","中间有个十字架","女同14","撩乱乙女无双剧","撩乱乙女","撩乱","缭乱乙女","女同3p","triedge","无双剧","咚咚咚咚","撩乱乙女†無双劇","中间有个十字架","女同14","撩乱乙女无双剧","撩乱乙女","撩乱","缭乱乙女","女同3p","triedge","无双剧","咚咚咚咚","撩乱乙女†無双劇","中间有个十字架","女同14","撩乱乙女无双剧","撩乱乙女","撩乱","缭乱乙女","女同3p","triedge","无双剧","咚咚咚咚"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":165,"releaseDate":"20220902","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11402,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23004,"notes":{"total":196,"tap":159,"hold":3,"slide":4,"touch":23,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11402,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23004,"notes":{"total":309,"tap":252,"hold":13,"slide":14,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11402,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"小鳥遊さん","romVersion":23004,"notes":{"total":695,"tap":495,"hold":58,"slide":54,"touch":8,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11402,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Redarrow","romVersion":23004,"notes":{"total":863,"tap":533,"hold":63,"slide":127,"touch":32,"break_":108},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1404,"players":4856,"title":"See The Light","utTitle":null,"artist":"anubasu-anubasu","albums":["see the light","喜德来","喜之郎","看见光","金坷垃","stl","看光","屎都濑","see the light","喜德来","喜之郎","看见光","金坷垃","stl","看光","屎都濑","see the light","喜德来","喜之郎","看见光","金坷垃","stl","看光","屎都濑"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":150,"releaseDate":"20220902","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11404,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23004,"notes":{"total":151,"tap":132,"hold":4,"slide":4,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11404,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23004,"notes":{"total":256,"tap":196,"hold":24,"slide":10,"touch":24,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11404,"level_id":2,"level":"11","level_value":11.5,"note_designer":"翠楼屋","romVersion":23004,"notes":{"total":510,"tap":389,"hold":40,"slide":12,"touch":14,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11404,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":23004,"notes":{"total":796,"tap":541,"hold":24,"slide":42,"touch":134,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1405,"players":9084,"title":"エータ・ベータ・イータ","utTitle":null,"artist":"ルゼ","albums":["エータ・ベータ・イータ","hera2","eta beta ita","赫拉2","蓝原椿","赫拉二","エータ・ベータ・イータ","hera2","eta beta ita","赫拉2","蓝原椿","赫拉二","エータ・ベータ・イータ","hera2","eta beta ita","赫拉2","蓝原椿","赫拉二","工一夕八一夕人一夕"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":186,"releaseDate":"20220902","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11405,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23004,"notes":{"total":309,"tap":263,"hold":13,"slide":4,"touch":24,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11405,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23004,"notes":{"total":391,"tap":314,"hold":28,"slide":22,"touch":20,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11405,"level_id":2,"level":"12","level_value":12.4,"note_designer":"Jack","romVersion":23004,"notes":{"total":654,"tap":494,"hold":78,"slide":39,"touch":20,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11405,"level_id":3,"level":"14","level_value":14.1,"note_designer":"チャン@DP皆伝","romVersion":23004,"notes":{"total":1054,"tap":857,"hold":29,"slide":29,"touch":66,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2320,"long":false},{"id":1410,"players":15302,"title":"ヴァンパイア","utTitle":null,"artist":"DECO*27","albums":["ヴァンパイア","做核酸","玩牌儿","袁绍","玩牌呀","nichan","miku口罩","vampire","吸血鬼","口罩妹","棒棒鸭","核酸检测","ヴァンパイア","做核酸","玩牌儿","袁绍","玩牌呀","nichan","miku口罩","vampire","吸血鬼","口罩妹","棒棒鸭","核酸检测","ヴァンパイア","做核酸","玩牌儿","袁绍","玩牌呀","nichan","miku口罩","vampire","吸血鬼","口罩妹","棒棒鸭","核酸检测"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":164,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11410,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23000,"notes":{"total":174,"tap":142,"hold":11,"slide":3,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11410,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23000,"notes":{"total":330,"tap":265,"hold":20,"slide":4,"touch":25,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11410,"level_id":2,"level":"10","level_value":10.2,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":582,"tap":463,"hold":35,"slide":16,"touch":40,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11410,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":23000,"notes":{"total":633,"tap":439,"hold":80,"slide":86,"touch":15,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11410,"level_id":4,"level":"13","level_value":13.4,"note_designer":"じゃこレモン","romVersion":23000,"notes":{"total":749,"tap":555,"hold":53,"slide":95,"touch":22,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2151,"long":false},{"id":1411,"players":6206,"title":"エンヴィーベイビー","utTitle":null,"artist":"Kanaria","albums":["エンヴィーベイビー","剔牙","envy baby","林尼","雀魂","拼多多","嫉妒宝贝","打牌","envybaby","envy","エンヴィーベイビー","剔牙","envy baby","林尼","雀魂","拼多多","嫉妒宝贝","打牌","envybaby","envy","エンヴィーベイビー","剔牙","envy baby","林尼","雀魂","拼多多","嫉妒宝贝","打牌","envybaby","envy"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":171,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11411,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23000,"notes":{"total":141,"tap":107,"hold":16,"slide":4,"touch":12,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11411,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23000,"notes":{"total":344,"tap":297,"hold":12,"slide":10,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11411,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"隅田川星人","romVersion":23000,"notes":{"total":568,"tap":363,"hold":81,"slide":31,"touch":53,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11411,"level_id":3,"level":"13","level_value":13.0,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":776,"tap":517,"hold":64,"slide":93,"touch":73,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2180,"long":false},{"id":1412,"players":7739,"title":"初音天地開闢神話","utTitle":null,"artist":"cosMo@暴走P","albums":["初音天地開闢神話","开天辟地","天地开辟","开辟神话","开辟","初音未来毁天灭地","初音未来日天日地","毁天灭地","盘古开天辟地","初音毁天灭地神话","初音未来开天辟地","开辟天地","盘古","消失2","神话","盘古未来","初音天地开辟神话","初音未来开辟神话","初音开天辟地","初音天地開闢神話","开天辟地","天地开辟","开辟神话","开辟","初音未来毁天灭地","初音未来日天日地","毁天灭地","盘古开天辟地","初音毁天灭地神话","初音未来开天辟地","开辟天地","盘古","消失2","神话","盘古未来","初音天地开辟神话","初音未来开辟神话","初音开天辟地","初音天地開闢神話","开天辟地","天地开辟","开辟神话","开辟","初音未来毁天灭地","初音未来日天日地","毁天灭地","盘古开天辟地","初音毁天灭地神话","初音未来开天辟地","开辟天地","盘古","消失2","神话","盘古未来","初音天地开辟神话","初音未来开辟神话","初音开天辟地"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":240,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11412,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":232,"tap":186,"hold":11,"slide":2,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11412,"level_id":1,"level":"8","level_value":8.4,"note_designer":"","romVersion":23000,"notes":{"total":466,"tap":394,"hold":41,"slide":19,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11412,"level_id":2,"level":"11","level_value":11.0,"note_designer":"隅田川星人","romVersion":23000,"notes":{"total":672,"tap":429,"hold":112,"slide":48,"touch":66,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11412,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":23000,"notes":{"total":999,"tap":769,"hold":34,"slide":134,"touch":23,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2182,"long":false},{"id":1413,"players":6901,"title":"Armageddon","utTitle":null,"artist":"LeaF","albums":["armageddon","阿空","太阳信仰","arma","世界末日","东方树叶","⑥","阿玛革冬","阿妈咯噔","灵乌路空","灵知的太阳信仰","armageddon","阿空","太阳信仰","arma","世界末日","东方树叶","⑥","阿玛革冬","阿妈咯噔","灵乌路空","灵知的太阳信仰","armageddon","阿空","太阳信仰","arma","世界末日","东方树叶","⑥","阿玛革冬","阿妈咯噔","灵乌路空","灵知的太阳信仰","核弹"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":210,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11413,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":193,"tap":141,"hold":19,"slide":4,"touch":16,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11413,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23000,"notes":{"total":427,"tap":363,"hold":6,"slide":21,"touch":24,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11413,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":23000,"notes":{"total":805,"tap":578,"hold":109,"slide":49,"touch":59,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11413,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":993,"tap":666,"hold":119,"slide":77,"touch":105,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2288,"long":false},{"id":1415,"players":4542,"title":"Dreadnought","utTitle":null,"artist":"Mastermind(xi+nora2r)","albums":["dreadnought","无畏舰","死亡手电筒","手电筒","大喷菇","无畏号战舰","\uD83D\uDD26","巧脆卷","望远镜","无畏号","无畏战舰","dreadnought","无畏舰","死亡手电筒","手电筒","大喷菇","无畏号战舰","\uD83D\uDD26","巧脆卷","望远镜","无畏号","无畏战舰","dreadnought","无畏舰","死亡手电筒","手电筒","大喷菇","无畏号战舰","\uD83D\uDD26","巧脆卷","望远镜","无畏号","无畏战舰"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":192,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11415,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":183,"tap":151,"hold":9,"slide":3,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11415,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23000,"notes":{"total":396,"tap":325,"hold":14,"slide":15,"touch":30,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11415,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":661,"tap":507,"hold":45,"slide":49,"touch":6,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11415,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"隅田川星人","romVersion":23000,"notes":{"total":932,"tap":640,"hold":118,"slide":74,"touch":66,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":323,"long":false},{"id":1418,"players":7704,"title":"enchanted love","utTitle":null,"artist":"linear ring","albums":["enchanted love","别急17","小青蛙","迷人的爱","附魔的爱","附魔爱","el","小骊龙","醉心之爱","\uD83D\uDC38","15+","迷惑爱","八月的雨","青蛙","四月的夜明","青蛙王子","enchanted love","别急17","小青蛙","迷人的爱","附魔的爱","附魔爱","el","小骊龙","醉心之爱","\uD83D\uDC38","15+","迷惑爱","八月的雨","青蛙","四月的夜明","青蛙王子","enchanted love","别急17","小青蛙","迷人的爱","附魔的爱","附魔爱","el","小骊龙","醉心之爱","\uD83D\uDC38","15+","迷惑爱","八月的雨","青蛙","四月的夜明","青蛙王子","蛙泳"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":95,"releaseDate":"20220408","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11418,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23002,"notes":{"total":115,"tap":89,"hold":7,"slide":5,"touch":13,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11418,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23002,"notes":{"total":221,"tap":157,"hold":16,"slide":12,"touch":32,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11418,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"隅田川星人","romVersion":23002,"notes":{"total":374,"tap":205,"hold":104,"slide":47,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11418,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":576,"tap":357,"hold":31,"slide":88,"touch":96,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1419,"players":4767,"title":"Caterpillar Song","utTitle":null,"artist":"Bitplane feat. 葉月ゆら","albums":["caterpillar song","毛毛虫","别急15","肯德基老爷爷","\uD83D\uDC1B","肯德基","臭虫","女菩萨念经","昆虫学家法布尔","室内系武士","毛毛虫之歌","caterpillar song","毛毛虫","别急15","肯德基老爷爷","\uD83D\uDC1B","肯德基","臭虫","女菩萨念经","昆虫学家法布尔","室内系武士","毛毛虫之歌","诡异歌","caterpillar song","毛毛虫","别急15","肯德基老爷爷","\uD83D\uDC1B","肯德基","臭虫","女菩萨念经","昆虫学家法布尔","室内系武士","毛毛虫之歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":90,"releaseDate":"20220408","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11419,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23002,"notes":{"total":98,"tap":62,"hold":11,"slide":4,"touch":20,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11419,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23002,"notes":{"total":269,"tap":216,"hold":10,"slide":13,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11419,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":336,"tap":240,"hold":87,"slide":2,"touch":5,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11419,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"チェシャ猫とハートのジャック","romVersion":23002,"notes":{"total":481,"tap":309,"hold":31,"slide":94,"touch":46,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1422,"players":6735,"title":" ","utTitle":null,"artist":"x0o0x_","albums":[" ","空白","如月车站","如月","无题","没有名字","月光列车","口口","双押弱虫","没名字","无名歌","如月站台","没名字的歌"," ","空白","如月车站","如月","无题","没有名字","月光列车","口口","双押弱虫","没名字","无名歌","如月站台","没名字的歌"," ","空白","如月车站","如月","无题","没有名字","月光列车","口口","双押弱虫","没名字","无名歌","如月站台","没名字的歌","空格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":130,"releaseDate":"20220415","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11422,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23001,"notes":{"total":133,"tap":100,"hold":8,"slide":8,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11422,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23001,"notes":{"total":230,"tap":174,"hold":24,"slide":10,"touch":15,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11422,"level_id":2,"level":"10","level_value":10.5,"note_designer":"隅田川星人","romVersion":23001,"notes":{"total":357,"tap":185,"hold":44,"slide":59,"touch":59,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11422,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":605,"tap":382,"hold":38,"slide":135,"touch":44,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1423,"players":2946,"title":"BLUE ZONE","utTitle":null,"artist":"Tatsh x NAOKI","albums":["blue zone","蓝粽","蓝得盆","蓝的盆","极品飞车","蓝界","蓝色高级车","蓝的区","蓝车","蓝的车","飞车","蓝区","blue zone","蓝粽","蓝得盆","蓝的盆","极品飞车","蓝界","蓝色高级车","蓝的区","蓝车","蓝的车","飞车","蓝区","blue zone","蓝粽","蓝得盆","蓝的盆","极品飞车","蓝界","蓝色高级车","蓝的区","蓝车","蓝的车","飞车","蓝区"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":168,"releaseDate":"20220428","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11423,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23004,"notes":{"total":172,"tap":146,"hold":13,"slide":3,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11423,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":23004,"notes":{"total":404,"tap":330,"hold":24,"slide":18,"touch":14,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11423,"level_id":2,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":515,"tap":369,"hold":67,"slide":48,"touch":10,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11423,"level_id":3,"level":"14","level_value":14.1,"note_designer":"隅田川星人","romVersion":23004,"notes":{"total":888,"tap":654,"hold":25,"slide":71,"touch":50,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2046,"long":false},{"id":1424,"players":6638,"title":"Estahv","utTitle":null,"artist":"Feryquitous","albums":["estahv","六戒","arcahv精神续作","真寻","谢丝塔","白戒","estahv","六戒","arcahv精神续作","真寻","谢丝塔","白戒","estahv","六戒","arcahv精神续作","真寻","谢丝塔","白戒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":191,"releaseDate":"20220513","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11424,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23001,"notes":{"total":173,"tap":136,"hold":15,"slide":3,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11424,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23001,"notes":{"total":231,"tap":164,"hold":14,"slide":29,"touch":22,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11424,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":442,"tap":290,"hold":55,"slide":38,"touch":53,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11424,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":632,"tap":434,"hold":46,"slide":119,"touch":6,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1425,"players":4727,"title":"First Dance","utTitle":null,"artist":"削除","albums":["first dance","fd","e舞成名","初舞","一曲成名","一!舞!","1!5!","第一舞","15","一舞","一舞成名","first dance","fd","e舞成名","初舞","一曲成名","一!舞!","1!5!","第一舞","15","一舞","一舞成名","first dance","fd","e舞成名","初舞","一曲成名","一!舞!","1!5!","第一舞","15","一舞","一舞成名","井芹仁菜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":174,"releaseDate":"20220513","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11425,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23001,"notes":{"total":233,"tap":193,"hold":14,"slide":13,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11425,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23001,"notes":{"total":371,"tap":302,"hold":22,"slide":17,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11425,"level_id":2,"level":"12","level_value":12.1,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":602,"tap":362,"hold":102,"slide":62,"touch":20,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11425,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"カマボコ君","romVersion":23001,"notes":{"total":934,"tap":637,"hold":76,"slide":122,"touch":71,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1426,"players":6165,"title":"Mjölnir","utTitle":null,"artist":"xi","albums":["mjölnir","打火机","钢琴","冒烟钢琴","雷神之锤","mjolnir","mjo","钢琴冒烟","砸钢琴","炸琴","钢琴抽烟","喵喵锤","mjr","喵喵槌","麻将","管子冒烟","脆脆薯条","管子海","钢琴抽大烟","\uD83C\uDFB9\uD83D\uDCA8","mjölnir","打火机","钢琴","冒烟钢琴","雷神之锤","mjolnir","mjo","钢琴冒烟","砸钢琴","炸琴","钢琴抽烟","喵喵锤","mjr","喵喵槌","麻将","管子冒烟","脆脆薯条","管子海","钢琴抽大烟","\uD83C\uDFB9\uD83D\uDCA8","冰川纱夜","mjölnir","打火机","钢琴","冒烟钢琴","雷神之锤","mjolnir","mjo","钢琴冒烟","砸钢琴","炸琴","钢琴抽烟","喵喵锤","mjr","喵喵槌","麻将","管子冒烟","脆脆薯条","管子海","钢琴抽大烟","\uD83C\uDFB9\uD83D\uDCA8"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":222,"releaseDate":"20220513","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11426,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":263,"tap":231,"hold":9,"slide":6,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11426,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23001,"notes":{"total":524,"tap":399,"hold":51,"slide":16,"touch":44,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11426,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"隅田川星人","romVersion":23001,"notes":{"total":764,"tap":513,"hold":90,"slide":54,"touch":82,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11426,"level_id":3,"level":"14","level_value":14.4,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":1241,"tap":834,"hold":207,"slide":93,"touch":76,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1427,"players":3885,"title":"Define","utTitle":null,"artist":"Zekk","albums":["define","定义","define","定义","define","定义"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20220513","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11427,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23001,"notes":{"total":141,"tap":113,"hold":5,"slide":7,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11427,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23001,"notes":{"total":316,"tap":244,"hold":12,"slide":21,"touch":34,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11427,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"隅田川星人","romVersion":23001,"notes":{"total":508,"tap":316,"hold":88,"slide":47,"touch":47,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11427,"level_id":3,"level":"13","level_value":13.5,"note_designer":"じゃこレモン","romVersion":23001,"notes":{"total":649,"tap":461,"hold":36,"slide":137,"touch":4,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1428,"players":1924,"title":"BANG!","utTitle":null,"artist":"Shoichiro Hirata feat.Sana","albums":["bang!","钢管","棒","邦","bang","bang!","钢管","棒","邦","bang","维什戴尔","bang!","钢管","棒","邦","bang"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":128,"releaseDate":"20220513","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11428,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23001,"notes":{"total":109,"tap":80,"hold":10,"slide":6,"touch":12,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11428,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23001,"notes":{"total":209,"tap":142,"hold":13,"slide":12,"touch":38,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11428,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":23001,"notes":{"total":453,"tap":329,"hold":29,"slide":35,"touch":44,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11428,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Techno Kitchen","romVersion":23001,"notes":{"total":604,"tap":410,"hold":42,"slide":85,"touch":30,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1429,"players":10108,"title":"Love's Theme of BADASS ~バッド・アス 愛のテーマ~","utTitle":{"111429":"[爆]Love's Theme of BADASS ~バッド・アス 愛のテーマ~"},"artist":"Hommarju","albums":["love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass","love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass","章鱼一次胜利","love's theme of badass ~バッド・アス 愛のテーマ~","猫抓板","拔大蒜","僵尸骑摩托","拔大葱","绿巨人骑摩托车","扒大蒜","哥布林骑摩托","badass"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"ゲームバラエティ","bpm":202,"releaseDate":"20241224","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":25009,"dx":{"0":{"id":11429,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":279,"tap":240,"hold":13,"slide":6,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11429,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23001,"notes":{"total":455,"tap":348,"hold":21,"slide":12,"touch":34,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11429,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":744,"tap":499,"hold":27,"slide":125,"touch":38,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11429,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":23001,"notes":{"total":1034,"tap":467,"hold":155,"slide":180,"touch":79,"break_":153},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111429":{"id":111429,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":25009,"notes":{"total":1342,"tap":337,"hold":115,"slide":8,"touch":391,"break_":491},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2540,"long":false},{"id":1432,"players":3918,"title":"Princess♂","utTitle":null,"artist":"TOPHAMHAT-KYO","albums":["princess♂","公猪","古明地恋","男公主","别急16","立本rap","男娘2","公主","\uD83D\uDC78","princess","\uD83D\uDE0B","princess♂","公猪","古明地恋","男公主","别急16","立本rap","男娘2","公主","\uD83D\uDC78","princess","\uD83D\uDE0B","princess♂","公猪","古明地恋","男公主","别急16","立本rap","男娘2","公主","\uD83D\uDC78","princess","\uD83D\uDE0B"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":92,"releaseDate":"20220610","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11432,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23002,"notes":{"total":100,"tap":77,"hold":11,"slide":2,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11432,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23002,"notes":{"total":286,"tap":215,"hold":29,"slide":9,"touch":28,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11432,"level_id":2,"level":"10","level_value":10.5,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":426,"tap":332,"hold":51,"slide":19,"touch":2,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11432,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":23002,"notes":{"total":663,"tap":509,"hold":55,"slide":74,"touch":15,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1433,"players":8578,"title":"ヒトガタ","utTitle":{"111433":"[奏]ヒトガタ"},"artist":"HIMEHINA","albums":["ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕","ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕","ヒトガタ","人型","人形","管人跳舞","东雪莲跳舞","一棵树两个人","himehina","hitogata","匕卜力夕"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":150,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23002,"dxRomVersion":23002,"sdRomVersion":0,"utRomVersion":24511,"dx":{"0":{"id":11433,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23002,"notes":{"total":131,"tap":107,"hold":8,"slide":6,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11433,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23002,"notes":{"total":329,"tap":259,"hold":19,"slide":16,"touch":28,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11433,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":23002,"notes":{"total":550,"tap":380,"hold":80,"slide":39,"touch":35,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11433,"level_id":3,"level":"13","level_value":13.4,"note_designer":"翠楼屋","romVersion":23002,"notes":{"total":799,"tap":530,"hold":82,"slide":134,"touch":19,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111433":{"id":111433,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24511,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1434,"players":1253,"title":"Spring of Dreams","utTitle":null,"artist":"3L (NJK Record)","albums":["spring of dreams","春梦","春之港湾","娜兹玲","莉莉白","小老鼠","spring of dreams","春梦","春之港湾","娜兹玲","莉莉白","小老鼠","spring of dreams","春梦","春之港湾","娜兹玲","莉莉白","小老鼠"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":153,"releaseDate":"20220701","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11434,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23004,"notes":{"total":151,"tap":129,"hold":8,"slide":3,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11434,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23004,"notes":{"total":301,"tap":230,"hold":14,"slide":3,"touch":42,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11434,"level_id":2,"level":"10","level_value":10.5,"note_designer":"じゃこレモン","romVersion":23004,"notes":{"total":451,"tap":322,"hold":74,"slide":23,"touch":20,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11434,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"アミノハバキリ","romVersion":23004,"notes":{"total":747,"tap":553,"hold":77,"slide":48,"touch":49,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":606,"long":false},{"id":1435,"players":3986,"title":"大輪の魂 (feat. AO, 司芭扶)","utTitle":null,"artist":"魂音泉","albums":["大輪の魂 (feat. ao, 司芭扶)","大轮之魂","元梦之星","大轮的魂","大轮","大轮魂","东方海底谭","大海底谭","大輪の魂 (feat. ao, 司芭扶)","大轮之魂","元梦之星","大轮的魂","大轮","大轮魂","东方海底谭","大海底谭","大輪の魂 (feat. ao, 司芭扶)","大轮之魂","元梦之星","大轮的魂","大轮","大轮魂","东方海底谭","大海底谭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":137,"releaseDate":"20220701","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11435,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23004,"notes":{"total":123,"tap":98,"hold":7,"slide":8,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11435,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23004,"notes":{"total":288,"tap":229,"hold":10,"slide":17,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11435,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":429,"tap":332,"hold":39,"slide":30,"touch":10,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11435,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":23004,"notes":{"total":776,"tap":550,"hold":62,"slide":103,"touch":42,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1436,"players":3115,"title":"紅に染まる恋の花","utTitle":null,"artist":"幽閉サテライト","albums":["紅に染まる恋の花","染红的恋之花","红染","红染恋花","我把树叶都染红","秋姐妹","烤红薯","紅に染まる恋の花","染红的恋之花","红染","红染恋花","我把树叶都染红","秋姐妹","烤红薯","紅に染まる恋の花","染红的恋之花","红染","红染恋花","我把树叶都染红","秋姐妹","烤红薯"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":140,"releaseDate":"20220701","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11436,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23004,"notes":{"total":116,"tap":80,"hold":9,"slide":4,"touch":22,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11436,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23004,"notes":{"total":302,"tap":240,"hold":21,"slide":7,"touch":32,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11436,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":23004,"notes":{"total":444,"tap":349,"hold":53,"slide":24,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11436,"level_id":3,"level":"12","level_value":12.5,"note_designer":"カマボコ君","romVersion":23004,"notes":{"total":661,"tap":472,"hold":14,"slide":129,"touch":36,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1437,"players":12673,"title":"三妖精SAY YA!!!","utTitle":{"111437":"[協]三妖精SAY YA!!!"},"artist":"森羅万象","albums":["三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精","三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精","三妖精say ya!!!","三铸币开大","saya","say ya","三笨蛋","三小只","我们三","三月精","三妖精塞牙","tfgirls","萨莉亚","三妖精"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"東方Project","bpm":150,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":24506,"dx":{"0":{"id":11437,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23004,"notes":{"total":142,"tap":105,"hold":6,"slide":7,"touch":21,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11437,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23004,"notes":{"total":333,"tap":290,"hold":8,"slide":14,"touch":20,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11437,"level_id":2,"level":"10","level_value":10.0,"note_designer":"じゃこレモン","romVersion":23004,"notes":{"total":493,"tap":366,"hold":52,"slide":31,"touch":33,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11437,"level_id":3,"level":"13","level_value":13.3,"note_designer":"隅田川星人","romVersion":23004,"notes":{"total":802,"tap":481,"hold":86,"slide":140,"touch":72,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111437":{"id":111437,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24506,"notes":{"total":1282,"tap":724,"hold":251,"slide":71,"touch":25,"break_":211},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2324,"long":false},{"id":1438,"players":3640,"title":"Reach For The Stars (Re-Colors)","utTitle":null,"artist":"大谷智哉「ソニックカラーズ アルティメット」","albums":["reach for the stars (re-colors)","dx追星","索5","彩追星","新追星","追星2","追星remix","reach for the stars (re-colors)","dx追星","索5","彩追星","新追星","追星2","追星remix","reach for the stars (re-colors)","dx追星","索5","彩追星","新追星","追星2","追星remix"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":203,"releaseDate":"20220711","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11438,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23003,"notes":{"total":234,"tap":193,"hold":11,"slide":4,"touch":24,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11438,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23003,"notes":{"total":395,"tap":318,"hold":13,"slide":28,"touch":24,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11438,"level_id":2,"level":"11","level_value":11.5,"note_designer":"隅田川星人","romVersion":23003,"notes":{"total":634,"tap":463,"hold":59,"slide":66,"touch":36,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11438,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":23003,"notes":{"total":1015,"tap":852,"hold":45,"slide":49,"touch":37,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1439,"players":3855,"title":"ジャンキーナイトタウンオーケストラ","utTitle":null,"artist":"すりぃ","albums":["ジャンキーナイトタウンオーケストラ","瘾者之夜","玛奇玛","\uD83E\uDD2B","瘾者之夜城镇乐队","junky night town orchestra","ジャンキーナイトタウンオーケストラ","瘾者之夜","玛奇玛","\uD83E\uDD2B","瘾者之夜城镇乐队","junky night town orchestra","ジャンキーナイトタウンオーケストラ","瘾者之夜","玛奇玛","\uD83E\uDD2B","瘾者之夜城镇乐队","junky night town orchestra"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20220819","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11439,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23003,"notes":{"total":159,"tap":122,"hold":8,"slide":8,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11439,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23003,"notes":{"total":261,"tap":195,"hold":21,"slide":25,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11439,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":23003,"notes":{"total":523,"tap":357,"hold":85,"slide":31,"touch":44,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11439,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":818,"tap":619,"hold":58,"slide":77,"touch":29,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2202,"long":false},{"id":1441,"players":2607,"title":"終焉逃避行","utTitle":null,"artist":"柊マグネタイト","albums":["終焉逃避行","提桶跑路","终焉逃避行","终焉","嵯峨","終焉逃避行","提桶跑路","终焉逃避行","终焉","嵯峨","終焉逃避行","提桶跑路","终焉逃避行","终焉","嵯峨"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":147,"releaseDate":"20220819","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11441,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23003,"notes":{"total":175,"tap":154,"hold":12,"slide":3,"touch":5,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11441,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23003,"notes":{"total":262,"tap":211,"hold":13,"slide":18,"touch":13,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11441,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":23003,"notes":{"total":489,"tap":371,"hold":48,"slide":53,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11441,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"じゃこレモン","romVersion":23003,"notes":{"total":783,"tap":539,"hold":79,"slide":99,"touch":20,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":1443,"players":5568,"title":"8-EM","utTitle":null,"artist":"Sampling Masters AYA","albums":["8-em","大大大","很酷,不说话","涩图","橘优羽","atm","syk","大柰子","小孩","喰喰","8em","8-em","大大大","很酷,不说话","涩图","橘优羽","atm","syk","大柰子","小孩","喰喰","8em","六十位","8-em","大大大","很酷,不说话","涩图","橘优羽","atm","syk","大柰子","小孩","喰喰","8em"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":168,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11443,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":193,"tap":163,"hold":7,"slide":8,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11443,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23000,"notes":{"total":392,"tap":322,"hold":9,"slide":13,"touch":42,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11443,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":23000,"notes":{"total":700,"tap":468,"hold":103,"slide":66,"touch":56,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11443,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊チミ","romVersion":23000,"notes":{"total":824,"tap":585,"hold":51,"slide":84,"touch":73,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":776,"long":false},{"id":1444,"players":2159,"title":"若い力","utTitle":null,"artist":"作詞:セガ社員、作曲:若草恵、歌:135","albums":["若い力","本社","世嘉","社歌","sega大楼","若之力","sbga社歌","年轻的力量","若以力","sbga","本社爆破","sega社歌","sega","世嘉社歌","若力","若い力","本社","世嘉","社歌","sega大楼","若之力","sbga社歌","年轻的力量","若以力","sbga","本社爆破","sega社歌","sega","世嘉社歌","若力","若い力","本社","世嘉","社歌","sega大楼","若之力","sbga社歌","年轻的力量","若以力","sbga","本社爆破","sega社歌","sega","世嘉社歌","若力"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":114,"releaseDate":"20220401","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11444,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23001,"notes":{"total":97,"tap":55,"hold":18,"slide":8,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11444,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":119,"tap":72,"hold":8,"slide":14,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11444,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":250,"tap":129,"hold":32,"slide":23,"touch":64,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11444,"level_id":3,"level":"13","level_value":13.3,"note_designer":"作譜:翠楼屋","romVersion":23001,"notes":{"total":482,"tap":298,"hold":15,"slide":51,"touch":56,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1445,"players":3457,"title":"遺伝子レベル∞スパイラル","utTitle":null,"artist":"NAOKI feat.小坂りゆ","albums":["遺伝子レベル∞スパイラル","星球大战","遗传","遗伝子","遗传基因 level ♾️ spiral","遗传子","遺伝子レベル∞スパイラル","星球大战","遗传","遗伝子","遗传基因 level ♾️ spiral","遗传子","遺伝子レベル∞スパイラル","星球大战","遗传","遗伝子","遗传基因 level ♾️ spiral","遗传子","光剑打架"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":164,"releaseDate":"20220401","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11445,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23001,"notes":{"total":226,"tap":189,"hold":18,"slide":3,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11445,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23001,"notes":{"total":270,"tap":203,"hold":22,"slide":17,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11445,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":405,"tap":245,"hold":79,"slide":43,"touch":29,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11445,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":23001,"notes":{"total":832,"tap":656,"hold":37,"slide":85,"touch":34,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1446,"players":6334,"title":"otorii INNOVATED -[i]3-","utTitle":null,"artist":"NAOKI underground","albums":["otorii innovated -[i]3-","电刑","熊二","雷电法王","雷熊","囚徒","紫色滴蜡熊","i3","闪电熊","⚡\uD83D\uDC3B","电熊","otorii innovated -[i]3-","电刑","熊二","雷电法王","雷熊","囚徒","紫色滴蜡熊","i3","闪电熊","⚡\uD83D\uDC3B","电熊","otorii innovated -[i]3-","电刑","熊二","雷电法王","雷熊","囚徒","紫色滴蜡熊","i3","闪电熊","⚡\uD83D\uDC3B","电熊","电所有人前列腺","大鸟居","电你前列腺","电击前列腺"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":210,"releaseDate":"20220401","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11446,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":249,"tap":200,"hold":6,"slide":4,"touch":31,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11446,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"","romVersion":23001,"notes":{"total":384,"tap":289,"hold":21,"slide":15,"touch":52,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11446,"level_id":2,"level":"13","level_value":13.0,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":717,"tap":503,"hold":58,"slide":55,"touch":60,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11446,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Hz-R.Arrow","romVersion":23001,"notes":{"total":1075,"tap":869,"hold":20,"slide":128,"touch":17,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":559,"long":false},{"id":1447,"players":8042,"title":"エゴロック","utTitle":null,"artist":"すりぃ","albums":["エゴロック","自由摇滚","自我摇滚","煎饼歌","煎饼","egorock","ego rock","エゴロック","自由摇滚","自我摇滚","煎饼歌","煎饼","egorock","ego rock","エゴロック","自由摇滚","自我摇滚","煎饼歌","煎饼","egorock","ego rock"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":225,"releaseDate":"20220819","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11447,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23003,"notes":{"total":170,"tap":150,"hold":8,"slide":2,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11447,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23003,"notes":{"total":271,"tap":223,"hold":28,"slide":3,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11447,"level_id":2,"level":"10","level_value":10.5,"note_designer":"畳返し","romVersion":23003,"notes":{"total":466,"tap":367,"hold":30,"slide":18,"touch":27,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11447,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":23003,"notes":{"total":690,"tap":425,"hold":48,"slide":127,"touch":21,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1448,"players":2103,"title":"ただ選択があった","utTitle":null,"artist":"フロクロ","albums":["ただ選択があった","只是在不断选择","答题卡","选择","仅仅做出选择而已","打地鼠","jubeat","ただ選択があった","只是在不断选择","答题卡","选择","仅仅做出选择而已","打地鼠","jubeat","ただ選択があった","只是在不断选择","答题卡","选择","仅仅做出选择而已","打地鼠","jubeat"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20220819","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11448,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23003,"notes":{"total":108,"tap":85,"hold":10,"slide":4,"touch":8,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11448,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23003,"notes":{"total":238,"tap":183,"hold":14,"slide":9,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11448,"level_id":2,"level":"9","level_value":9.0,"note_designer":"畳返し","romVersion":23003,"notes":{"total":409,"tap":241,"hold":57,"slide":18,"touch":85,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11448,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":23003,"notes":{"total":466,"tap":260,"hold":45,"slide":11,"touch":145,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1449,"players":2352,"title":"パズルリボン","utTitle":null,"artist":"すりぃ feat.りょーくん","albums":["パズルリボン","蝴蝶结","拼图丝带","puzzle ribbon","红发男","游乐王子","未知无心","东云彰人","パズルリボン","蝴蝶结","拼图丝带","puzzle ribbon","红发男","游乐王子","未知无心","东云彰人","パズルリボン","蝴蝶结","拼图丝带","puzzle ribbon","红发男","游乐王子","未知无心","东云彰人"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":215,"releaseDate":"20220819","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23003,"dxRomVersion":23003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11449,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23003,"notes":{"total":235,"tap":211,"hold":8,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11449,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23003,"notes":{"total":311,"tap":247,"hold":38,"slide":9,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11449,"level_id":2,"level":"11","level_value":11.2,"note_designer":"ロシェ@ペンギン","romVersion":23003,"notes":{"total":569,"tap":402,"hold":93,"slide":50,"touch":16,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11449,"level_id":3,"level":"13","level_value":13.3,"note_designer":"翠楼屋","romVersion":23003,"notes":{"total":835,"tap":576,"hold":71,"slide":138,"touch":16,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2188,"long":false},{"id":1451,"players":9400,"title":"Transcend Lights","utTitle":null,"artist":"曲:小高光太郎/歌:オンゲキシューターズ","albums":["transcend lights","超越光","九月的雨","超超光光","美瞳广告","小女孩们的茶话会","超越之光","bright主题曲","别急19","音击的武士","tl","萝莉的雨","音击妹妹","114514","音击的雨","transcend lights","超越光","九月的雨","超超光光","美瞳广告","小女孩们的茶话会","超越之光","bright主题曲","别急19","音击的武士","tl","萝莉的雨","音击妹妹","114514","音击的雨","野兽先辈","音击小女孩唱歌","丝巾硅胶","transcend lights","超越光","九月的雨","超超光光","美瞳广告","小女孩们的茶话会","超越之光","bright主题曲","别急19","音击的武士","tl","萝莉的雨","音击妹妹","114514","音击的雨"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":70,"releaseDate":"20220902","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23004,"dxRomVersion":23004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11451,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23004,"notes":{"total":155,"tap":126,"hold":5,"slide":6,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11451,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23004,"notes":{"total":285,"tap":251,"hold":19,"slide":2,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11451,"level_id":2,"level":"11","level_value":11.5,"note_designer":"翠楼屋","romVersion":23004,"notes":{"total":366,"tap":240,"hold":40,"slide":55,"touch":14,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11451,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":23004,"notes":{"total":609,"tap":442,"hold":8,"slide":119,"touch":25,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2246,"long":false},{"id":1452,"players":5871,"title":"ホシシズク","utTitle":null,"artist":"森羅万象","albums":["ホシシズク","星雨","fes主题曲","繁星点点","三小只过节","三小只2","ホシシズク","星雨","fes主题曲","繁星点点","三小只过节","三小只2","ホシシズク","星雨","fes主题曲","繁星点点","三小只过节","三小只2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11452,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23005,"notes":{"total":197,"tap":165,"hold":16,"slide":4,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11452,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23005,"notes":{"total":412,"tap":349,"hold":18,"slide":15,"touch":18,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11452,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":23005,"notes":{"total":667,"tap":500,"hold":41,"slide":24,"touch":81,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11452,"level_id":3,"level":"13","level_value":13.1,"note_designer":"隅田川星人","romVersion":23005,"notes":{"total":867,"tap":578,"hold":35,"slide":125,"touch":65,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1453,"players":5913,"title":"Rainbow Rush Story","utTitle":null,"artist":"いるかアイス feat.ちょこ","albums":["rainbow rush story","彩框冲刺故事","终点2","彩虹冲故事","rrs"," 冲向彩虹","彩虹冲刺故事","雨后小故事","冲向彩虹","rainbow rush story","彩框冲刺故事","终点2","彩虹冲故事","rrs"," 冲向彩虹","彩虹冲刺故事","雨后小故事","冲向彩虹","rainbow rush story","彩框冲刺故事","终点2","彩虹冲故事","rrs"," 冲向彩虹","彩虹冲刺故事","雨后小故事","冲向彩虹"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11453,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23005,"notes":{"total":173,"tap":145,"hold":10,"slide":7,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11453,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23005,"notes":{"total":362,"tap":303,"hold":23,"slide":12,"touch":9,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11453,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":23005,"notes":{"total":474,"tap":356,"hold":18,"slide":34,"touch":42,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11453,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"じゃこレモン","romVersion":23005,"notes":{"total":904,"tap":629,"hold":38,"slide":111,"touch":64,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1454,"players":4598,"title":"Tricolor⁂circuS","utTitle":null,"artist":"ああ…翡翠茶漬け…","albums":["tricolor⁂circus","龙晖胞","tricolor circus","三个出生","三色马戏团","福瑞三小只","福瑞过节","三只福瑞过节","tricolor⁂circus","龙晖胞","tricolor circus","三个出生","三色马戏团","福瑞三小只","福瑞过节","三只福瑞过节","tricolor⁂circus","龙晖胞","tricolor circus","三个出生","三色马戏团","福瑞三小只","福瑞过节","三只福瑞过节"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11454,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23005,"notes":{"total":164,"tap":125,"hold":14,"slide":3,"touch":18,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11454,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23005,"notes":{"total":298,"tap":219,"hold":27,"slide":12,"touch":33,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11454,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":23005,"notes":{"total":486,"tap":355,"hold":54,"slide":31,"touch":37,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11454,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ネコトリサーカス団","romVersion":23005,"notes":{"total":924,"tap":624,"hold":68,"slide":66,"touch":111,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1455,"players":7277,"title":"[X]","utTitle":null,"artist":"Blacklolita","albums":["[x]","twitter","无穷大","艾克斯","x","13.7","无限","推特","叉","∞","高斯函数","[x]","twitter","无穷大","艾克斯","x","13.7","无限","推特","叉","∞","高斯函数","[x]","twitter","无穷大","艾克斯","x","13.7","无限","推特","叉","∞","高斯函数"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":162,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11455,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23005,"notes":{"total":201,"tap":134,"hold":12,"slide":9,"touch":20,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11455,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23005,"notes":{"total":364,"tap":267,"hold":48,"slide":18,"touch":23,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11455,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":23005,"notes":{"total":633,"tap":444,"hold":68,"slide":54,"touch":57,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11455,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":999,"tap":628,"hold":62,"slide":109,"touch":111,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1456,"players":3521,"title":"分解収束テイル","utTitle":null,"artist":"un:c・konoco×cosMo@暴走P","albums":["分解収束テイル","分解收束","分解収束テイル","分解收束","分解収束テイル","分解收束"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":186,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11456,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":165,"tap":115,"hold":15,"slide":8,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11456,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23005,"notes":{"total":394,"tap":300,"hold":46,"slide":9,"touch":23,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11456,"level_id":2,"level":"11","level_value":11.0,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":669,"tap":485,"hold":52,"slide":40,"touch":64,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11456,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ロシアンブラック","romVersion":23005,"notes":{"total":1056,"tap":644,"hold":66,"slide":111,"touch":173,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1457,"players":6218,"title":"mystique as iris","utTitle":null,"artist":"かねこちはる","albums":["mystique as iris","像鸢尾花一样神秘","mai","iris","神秘如鸢尾花","虹膜","鸢尾花","坐椅子","siri","如密鸢尾花","如虹膜般神秘","出云子","mystique as iris","像鸢尾花一样神秘","mai","iris","神秘如鸢尾花","虹膜","鸢尾花","坐椅子","siri","如密鸢尾花","如虹膜般神秘","出云子","mystique as iris","像鸢尾花一样神秘","mai","iris","神秘如鸢尾花","虹膜","鸢尾花","坐椅子","siri","如密鸢尾花","如虹膜般神秘","出云子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":172,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11457,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23005,"notes":{"total":260,"tap":227,"hold":22,"slide":4,"touch":6,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11457,"level_id":1,"level":"9+","level_value":9.7,"note_designer":"","romVersion":23005,"notes":{"total":463,"tap":374,"hold":38,"slide":6,"touch":38,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11457,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":742,"tap":441,"hold":118,"slide":58,"touch":54,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11457,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"red phoenix","romVersion":23005,"notes":{"total":1167,"tap":829,"hold":88,"slide":75,"touch":113,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1458,"players":5361,"title":"Rising on the horizon","utTitle":null,"artist":"TAG","albums":["rising on the horizon","horizon","roth","玛丽萨默斯","地平线","kop4th预选曲","rising on the horizon","horizon","roth","玛丽萨默斯","地平线","kop4th预选曲","rising on the horizon","horizon","roth","玛丽萨默斯","地平线","kop4th预选曲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20221110","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11458,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23006,"notes":{"total":231,"tap":174,"hold":7,"slide":10,"touch":25,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11458,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23006,"notes":{"total":331,"tap":262,"hold":20,"slide":6,"touch":27,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11458,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":23006,"notes":{"total":656,"tap":467,"hold":52,"slide":50,"touch":66,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11458,"level_id":3,"level":"14","level_value":14.4,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":946,"tap":719,"hold":39,"slide":43,"touch":63,"break_":82},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1459,"players":5990,"title":"You Mean the World to Me","utTitle":null,"artist":"Mameyudoufu feat. Shully","albums":["you mean the world to me","你是我的世界","ymtwtm","我的世界","你是我的全世界","凯尔希2","you mean the world to me","你是我的世界","ymtwtm","我的世界","你是我的全世界","凯尔希2","youmeantheworldtome","you mean the world to me","你是我的世界","ymtwtm","我的世界","你是我的全世界","凯尔希2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20221118","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11459,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23006,"notes":{"total":160,"tap":117,"hold":12,"slide":6,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11459,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":23006,"notes":{"total":336,"tap":268,"hold":24,"slide":14,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11459,"level_id":2,"level":"11","level_value":11.5,"note_designer":"みそかつ侍","romVersion":23006,"notes":{"total":523,"tap":292,"hold":69,"slide":57,"touch":69,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11459,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ロシェ@ペンギン","romVersion":23006,"notes":{"total":684,"tap":491,"hold":64,"slide":61,"touch":58,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1460,"players":3846,"title":"Neon Kingdom","utTitle":null,"artist":"litmus*","albums":["neon kingdom","霓虹王国","霓虹国度","霓虹","霓虹城","nk","neon kingdom","霓虹王国","霓虹国度","霓虹","霓虹城","nk","neon kingdom","霓虹王国","霓虹国度","霓虹","霓虹城","nk"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":130,"releaseDate":"20221118","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11460,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23006,"notes":{"total":180,"tap":146,"hold":11,"slide":4,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11460,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23006,"notes":{"total":317,"tap":254,"hold":11,"slide":12,"touch":26,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11460,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"Jack","romVersion":23006,"notes":{"total":500,"tap":326,"hold":83,"slide":54,"touch":23,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11460,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":717,"tap":468,"hold":146,"slide":41,"touch":19,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1461,"players":7903,"title":"#狂った民族2 PRAVARGYAZOOQA","utTitle":null,"artist":"DJ Raisei","albums":["#狂った民族2 pravargyazooqa","狂民族2","Progynova","机娘2","最狂民族风","汉堡包","\uD83C\uDF54","疯狂的民族2","汉堡","狂民族","最炫民族风","#狂った民族2 pravargyazooqa","狂民族2","Progynova","机娘2","最狂民族风","汉堡包","\uD83C\uDF54","疯狂的民族2","汉堡","狂民族","最炫民族风","#狂った民族2 pravargyazooqa","狂民族2","Progynova","机娘2","最狂民族风","汉堡包","\uD83C\uDF54","疯狂的民族2","汉堡","狂民族","最炫民族风","250绝赞","二百五十个绝赞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20221118","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11461,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23006,"notes":{"total":244,"tap":172,"hold":10,"slide":10,"touch":8,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11461,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23006,"notes":{"total":355,"tap":291,"hold":22,"slide":10,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11461,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"翠楼屋","romVersion":23006,"notes":{"total":502,"tap":166,"hold":46,"slide":12,"touch":28,"break_":250},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11461,"level_id":3,"level":"14","level_value":14.4,"note_designer":"じゃこレモン","romVersion":23006,"notes":{"total":963,"tap":750,"hold":40,"slide":98,"touch":22,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1462,"players":5323,"title":"VSpook!","utTitle":null,"artist":"s-don","albums":["vspook!","\uD83D\uDC16","vspook","debi","vs猪肉","打扑克","vspork","花火","大战猪肉","黑姬3","对战猪肉","\uD83D\uDC37","对战熟猪排","猪","猪肉"," 脸书","对决猪肉","vspook!","\uD83D\uDC16","vspook","debi","vs猪肉","打扑克","vspork","花火","大战猪肉","黑姬3","对战猪肉","\uD83D\uDC37","对战熟猪排","猪","猪肉"," 脸书","对决猪肉","vspook!","\uD83D\uDC16","vspook","debi","vs猪肉","打扑克","vspork","花火","大战猪肉","黑姬3","对战猪肉","\uD83D\uDC37","对战熟猪排","猪","猪肉"," 脸书","对决猪肉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20221118","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11462,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23006,"notes":{"total":256,"tap":214,"hold":10,"slide":5,"touch":8,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11462,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23006,"notes":{"total":402,"tap":336,"hold":18,"slide":3,"touch":19,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11462,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":23006,"notes":{"total":804,"tap":530,"hold":118,"slide":83,"touch":62,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11462,"level_id":3,"level":"14","level_value":14.3,"note_designer":"Redarrow VS 翠楼屋","romVersion":23006,"notes":{"total":1095,"tap":730,"hold":47,"slide":120,"touch":42,"break_":156},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1463,"players":4866,"title":"RIFFRAIN","utTitle":null,"artist":"夏代孝明","albums":["riffrain","达令达令","riffrain","达令达令","riffrain","达令达令"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":122,"releaseDate":"20221216","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11463,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23007,"notes":{"total":143,"tap":108,"hold":13,"slide":4,"touch":15,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11463,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23007,"notes":{"total":298,"tap":256,"hold":10,"slide":10,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11463,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"畳返し","romVersion":23007,"notes":{"total":383,"tap":295,"hold":45,"slide":8,"touch":21,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11463,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":611,"tap":385,"hold":36,"slide":89,"touch":80,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1464,"players":4998,"title":"Falling","utTitle":null,"artist":"シノ feat.しほ","albums":["falling","跳楼","佛泠","falling","跳楼","佛泠","falling","跳楼","佛泠"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":122,"releaseDate":"20221216","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11464,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":163,"tap":136,"hold":14,"slide":4,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11464,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23007,"notes":{"total":304,"tap":256,"hold":11,"slide":6,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11464,"level_id":2,"level":"10","level_value":10.2,"note_designer":"Jack","romVersion":23007,"notes":{"total":453,"tap":366,"hold":27,"slide":34,"touch":17,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11464,"level_id":3,"level":"13","level_value":13.4,"note_designer":"カマボコ君","romVersion":23007,"notes":{"total":634,"tap":436,"hold":38,"slide":98,"touch":29,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1465,"players":5298,"title":"ピリオドサイン","utTitle":null,"artist":"Ponchi♪ feat.はぁち","albums":["ピリオドサイン","终点2","ps","枫原万叶","休止符","周期符号","period sign","ピリオドサイン","终点2","ps","枫原万叶","休止符","周期符号","period sign","ピリオドサイン","终点2","ps","枫原万叶","休止符","周期符号","period sign"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":195,"releaseDate":"20221216","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11465,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":154,"tap":109,"hold":15,"slide":4,"touch":25,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11465,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23007,"notes":{"total":337,"tap":252,"hold":29,"slide":20,"touch":22,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11465,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":500,"tap":355,"hold":59,"slide":41,"touch":24,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11465,"level_id":3,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":23007,"notes":{"total":724,"tap":546,"hold":52,"slide":70,"touch":25,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1466,"players":6998,"title":"群青シグナル","utTitle":null,"artist":"テヅカ feat. 獅子神レオナ","albums":["群青シグナル","体育生2","群青","群青2","群青信号","群青讯号","群青シグナル","体育生2","群青","群青2","群青信号","群青讯号","群青シグナル","体育生2","群青","群青2","群青信号","群青讯号"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":206,"releaseDate":"20221216","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11466,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":236,"tap":188,"hold":21,"slide":9,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11466,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":23007,"notes":{"total":443,"tap":369,"hold":18,"slide":10,"touch":26,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11466,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"翠楼屋","romVersion":23007,"notes":{"total":652,"tap":491,"hold":70,"slide":48,"touch":4,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11466,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ものくろっく","romVersion":23007,"notes":{"total":978,"tap":719,"hold":62,"slide":114,"touch":51,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2681,"long":false},{"id":1467,"players":4327,"title":"Beat Opera op.1","utTitle":null,"artist":"bermei.inazawa","albums":["beat opera op.1","歌剧1","op","甘雨鬼叫","op1","甘雨","beat opera op.1","歌剧1","op","甘雨鬼叫","op1","甘雨","beat opera op.1","歌剧1","op","甘雨鬼叫","op1","甘雨"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20230203","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11467,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":156,"tap":123,"hold":11,"slide":5,"touch":10,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11467,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23008,"notes":{"total":303,"tap":228,"hold":30,"slide":10,"touch":32,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11467,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":500,"tap":309,"hold":97,"slide":53,"touch":35,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11467,"level_id":3,"level":"14","level_value":14.0,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":763,"tap":535,"hold":87,"slide":75,"touch":47,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1468,"players":3803,"title":"星見草","utTitle":null,"artist":"秋田 真典","albums":["星見草","⭐️\uD83D\uDC41\uD83C\uDF3F","康庄小道","星见草","星見草","⭐️\uD83D\uDC41\uD83C\uDF3F","康庄小道","星见草","星見草","⭐️\uD83D\uDC41\uD83C\uDF3F","康庄小道","星见草"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":164,"releaseDate":"20230203","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11468,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23008,"notes":{"total":188,"tap":134,"hold":13,"slide":9,"touch":25,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11468,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23008,"notes":{"total":350,"tap":277,"hold":31,"slide":6,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11468,"level_id":2,"level":"11","level_value":11.0,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":520,"tap":385,"hold":45,"slide":40,"touch":22,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11468,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Redarrow","romVersion":23008,"notes":{"total":817,"tap":638,"hold":43,"slide":104,"touch":0,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1469,"players":7131,"title":"\"411Ψ892\"","utTitle":null,"artist":"Tanchiky","albums":["\"411ψ892\"","411\uD83D\uDC45892","985211","411","三叉戟","411ψ892","411892","211985","\"411ψ892\"","411\uD83D\uDC45892","985211","411","三叉戟","411ψ892","411892","211985","你再看看我呢","\"411ψ892\"","411\uD83D\uDC45892","985211","411","三叉戟","411ψ892","411892","211985"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":184,"releaseDate":"20230203","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11469,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23008,"notes":{"total":227,"tap":179,"hold":15,"slide":4,"touch":21,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11469,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23008,"notes":{"total":382,"tap":298,"hold":31,"slide":12,"touch":31,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11469,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":23008,"notes":{"total":631,"tap":416,"hold":53,"slide":52,"touch":25,"break_":85},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11469,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太 vs じゃこレモン","romVersion":23008,"notes":{"total":945,"tap":664,"hold":53,"slide":86,"touch":39,"break_":103},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1470,"players":7224,"title":"康莊大道","utTitle":null,"artist":"Spiegel vs Yukino","albums":["康莊大道","浇给","康庄","康庄大道","九洲大道","成华大道","星光大道","康","黑羊羊","康莊大道","浇给","康庄","康庄大道","九洲大道","成华大道","星光大道","康","黑羊羊","扫键再爆司马","康莊大道","浇给","康庄","康庄大道","九洲大道","成华大道","星光大道","康","黑羊羊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":208,"releaseDate":"20230203","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11470,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23008,"notes":{"total":262,"tap":223,"hold":9,"slide":9,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11470,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23008,"notes":{"total":409,"tap":338,"hold":20,"slide":30,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11470,"level_id":2,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":23008,"notes":{"total":735,"tap":509,"hold":78,"slide":51,"touch":55,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11470,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"ボコ太","romVersion":23008,"notes":{"total":1129,"tap":782,"hold":46,"slide":47,"touch":140,"break_":114},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1471,"players":8862,"title":"蜘蛛の糸","utTitle":null,"artist":"きくお×cosMo@暴走P feat.影縫英","albums":["蜘蛛の糸","四百块","蜘蛛系","蜘蛛的丝","滴嘟丝","蜘蛛丝","蜘蛛的糸","spider’s thread","\uD83D\uDD78️","蜘蛛の糸","四百块","蜘蛛系","蜘蛛的丝","滴嘟丝","蜘蛛丝","蜘蛛的糸","spider’s thread","\uD83D\uDD78️","蜘蛛の糸","四百块","蜘蛛系","蜘蛛的丝","滴嘟丝","蜘蛛丝","蜘蛛的糸","spider’s thread","\uD83D\uDD78️"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":180,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11471,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23005,"notes":{"total":224,"tap":173,"hold":14,"slide":9,"touch":20,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11471,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23005,"notes":{"total":364,"tap":274,"hold":27,"slide":9,"touch":46,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11471,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":698,"tap":447,"hold":92,"slide":26,"touch":38,"break_":95},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11471,"level_id":3,"level":"14","level_value":14.2,"note_designer":"小鳥遊さん×アミノハバキリ","romVersion":23005,"notes":{"total":1052,"tap":829,"hold":67,"slide":28,"touch":93,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2060,"long":false},{"id":1472,"players":11334,"title":"Don't Fight The Music","utTitle":null,"artist":"黒魔","albums":["don't fight the music","憋打歌","刹那立正","小气走","别打音乐","不要打歌","别打歌","刹那","don't fight the music","憋打歌","刹那立正","小气走","别打音乐","不要打歌","别打歌","刹那","不要打音乐","don't fight the music","憋打歌","刹那立正","小气走","别打音乐","不要打歌","别打歌","刹那","宵崎奏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":195,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11472,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23006,"notes":{"total":225,"tap":183,"hold":24,"slide":10,"touch":4,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11472,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":23006,"notes":{"total":410,"tap":305,"hold":42,"slide":18,"touch":29,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11472,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":23006,"notes":{"total":751,"tap":545,"hold":112,"slide":58,"touch":19,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11472,"level_id":3,"level":"14","level_value":14.1,"note_designer":"翠楼屋 vs あまくちジンジャー","romVersion":23006,"notes":{"total":1089,"tap":690,"hold":41,"slide":73,"touch":137,"break_":148},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2099,"long":false},{"id":1473,"players":3252,"title":"Catch Me If You Can","utTitle":null,"artist":"曲:TAKU INOUE/歌:早乙女 彩華(CV:中島 唯)","albums":["catch me if you can","你抓不住我","抓我","兔女郎","有种抓住我","早乙女彩华","兔女郎彩华","猫鼠游戏","露娜","樱岛麻衣","来抓我呀","抓我如果你可以","catch me if you can","你抓不住我","抓我","兔女郎","有种抓住我","早乙女彩华","兔女郎彩华","猫鼠游戏","露娜","樱岛麻衣","来抓我呀","抓我如果你可以","你抓不住我,因为我是绝赞","catch me if you can","你抓不住我","抓我","兔女郎","有种抓住我","早乙女彩华","兔女郎彩华","猫鼠游戏","露娜","樱岛麻衣","来抓我呀","抓我如果你可以"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":130,"releaseDate":"20221021","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11473,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23006,"notes":{"total":264,"tap":225,"hold":16,"slide":2,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11473,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23006,"notes":{"total":325,"tap":240,"hold":19,"slide":6,"touch":55,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11473,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":539,"tap":366,"hold":83,"slide":53,"touch":17,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11473,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ものくろっく","romVersion":23006,"notes":{"total":840,"tap":476,"hold":101,"slide":72,"touch":151,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2559,"long":false},{"id":1474,"players":3032,"title":"MAGNETAR GIRL","utTitle":null,"artist":"Yu-dachi","albums":["magnetar girl","磁铁女孩","磁星女孩","mg","柚子","magnetar girl","磁铁女孩","磁星女孩","mg","柚子","magnetar girl","磁铁女孩","磁星女孩","mg","柚子"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":170,"releaseDate":"20221021","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11474,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23006,"notes":{"total":209,"tap":160,"hold":16,"slide":5,"touch":17,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11474,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23006,"notes":{"total":394,"tap":320,"hold":23,"slide":9,"touch":39,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11474,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"翠楼屋","romVersion":23006,"notes":{"total":518,"tap":350,"hold":49,"slide":51,"touch":31,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11474,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"たかなっぴー","romVersion":23006,"notes":{"total":931,"tap":626,"hold":73,"slide":71,"touch":128,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1475,"players":8254,"title":"SUPER AMBULANCE","utTitle":null,"artist":"AJURIKA","albums":["super ambulance","120","千夏肚脐眼","千夏开大","俺不能死","救护车","超级救护车","\uD83D\uDE91","超级小千夏","日向千夏","super ambulance","120","千夏肚脐眼","千夏开大","俺不能死","救护车","超级救护车","\uD83D\uDE91","超级小千夏","日向千夏","super ambulance","120","千夏肚脐眼","千夏开大","俺不能死","救护车","超级救护车","\uD83D\uDE91","超级小千夏","日向千夏"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20221021","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11475,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23006,"notes":{"total":238,"tap":199,"hold":13,"slide":8,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11475,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23006,"notes":{"total":433,"tap":366,"hold":25,"slide":12,"touch":21,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11475,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":23006,"notes":{"total":648,"tap":448,"hold":66,"slide":57,"touch":64,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11475,"level_id":3,"level":"14","level_value":14.3,"note_designer":"翠楼屋 vs あまくちジンジャー","romVersion":23006,"notes":{"total":1030,"tap":626,"hold":73,"slide":112,"touch":94,"break_":125},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2334,"long":false},{"id":1477,"players":3281,"title":"Ghost Dance","utTitle":null,"artist":"亜沙 feat.くろくも","albums":["ghost dance","鬼舞","gd","魂5","幽灵跳舞","ghost dance","鬼舞","gd","魂5","幽灵跳舞","ghost dance","鬼舞","gd","魂5","幽灵跳舞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":154,"releaseDate":"20230120","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11477,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":166,"tap":134,"hold":12,"slide":6,"touch":10,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11477,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23007,"notes":{"total":386,"tap":308,"hold":11,"slide":6,"touch":29,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11477,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":23007,"notes":{"total":522,"tap":347,"hold":55,"slide":74,"touch":26,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11477,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":23007,"notes":{"total":859,"tap":662,"hold":71,"slide":80,"touch":18,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":915,"long":false},{"id":1478,"players":5282,"title":"電光石火","utTitle":null,"artist":"HiTECH NINJA","albums":["電光石火","电光石火","妖艳魔男2","电光火石","\uD83E\uDD28","俄洛伊","電光石火","电光石火","妖艳魔男2","电光火石","\uD83E\uDD28","俄洛伊","電光石火","电光石火","妖艳魔男2","电光火石","\uD83E\uDD28","俄洛伊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":165,"releaseDate":"20230120","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11478,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":195,"tap":160,"hold":12,"slide":6,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11478,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23007,"notes":{"total":424,"tap":350,"hold":27,"slide":4,"touch":26,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11478,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":23007,"notes":{"total":691,"tap":540,"hold":54,"slide":44,"touch":29,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11478,"level_id":3,"level":"14","level_value":14.3,"note_designer":"あまくちヘルツ","romVersion":23007,"notes":{"total":1047,"tap":809,"hold":72,"slide":99,"touch":17,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":734,"long":false},{"id":1479,"players":7341,"title":"Hainuwele","utTitle":null,"artist":"ETIA.","albums":["hainuwele","华为","hainuwele","华为","hainuwele","华为"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":175,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11479,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":239,"tap":201,"hold":13,"slide":4,"touch":6,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11479,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23007,"notes":{"total":422,"tap":348,"hold":28,"slide":12,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11479,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":23007,"notes":{"total":674,"tap":501,"hold":82,"slide":42,"touch":32,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11479,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太 vs 翠楼屋","romVersion":23007,"notes":{"total":1030,"tap":809,"hold":58,"slide":70,"touch":16,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":971,"long":false},{"id":1481,"players":7900,"title":"アニマル","utTitle":null,"artist":"DECO*27","albums":["アニマル","animal","猫猫初音","猫抓板","deco喵喵叫","动物","猫葱","アニマル","animal","猫猫初音","猫抓板","deco喵喵叫","动物","猫葱","アニマル","animal","猫猫初音","猫抓板","deco喵喵叫","动物","猫葱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":188,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11481,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":173,"tap":125,"hold":22,"slide":4,"touch":20,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11481,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23005,"notes":{"total":434,"tap":371,"hold":24,"slide":9,"touch":20,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11481,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"カマボコ君","romVersion":23005,"notes":{"total":678,"tap":473,"hold":72,"slide":8,"touch":42,"break_":83},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11481,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Redarrow","romVersion":23005,"notes":{"total":941,"tap":564,"hold":53,"slide":103,"touch":139,"break_":82},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2315,"long":false},{"id":1482,"players":3734,"title":"ジレンマ","utTitle":null,"artist":"DECO*27","albums":["ジレンマ","白葱","进退两难","异色瞳","赤瞳","异瞳","dilemma","邦邦邦","两难问题","ジレンマ","白葱","进退两难","异色瞳","赤瞳","异瞳","dilemma","邦邦邦","两难问题","ジレンマ","白葱","进退两难","异色瞳","赤瞳","异瞳","dilemma","邦邦邦","两难问题"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":188,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11482,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":161,"tap":129,"hold":12,"slide":6,"touch":11,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11482,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23005,"notes":{"total":410,"tap":338,"hold":16,"slide":18,"touch":23,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11482,"level_id":2,"level":"10","level_value":10.2,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":611,"tap":446,"hold":43,"slide":27,"touch":45,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11482,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":23005,"notes":{"total":874,"tap":623,"hold":78,"slide":80,"touch":66,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1483,"players":10508,"title":"踊","utTitle":null,"artist":"Ado","albums":["踊","长舌妇","ko","起舞","耶耶耶耶耶耶","跳舞","odo","哦哇哇哦哇哦","桶","红眼果蝇","踊","长舌妇","ko","起舞","耶耶耶耶耶耶","跳舞","odo","哦哇哇哦哇哦","桶","红眼果蝇","踊","长舌妇","ko","起舞","耶耶耶耶耶耶","跳舞","odo","哦哇哇哦哇哦","桶","红眼果蝇"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":128,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11483,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23005,"notes":{"total":137,"tap":91,"hold":9,"slide":4,"touch":24,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11483,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23005,"notes":{"total":315,"tap":239,"hold":24,"slide":12,"touch":29,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11483,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":479,"tap":337,"hold":34,"slide":63,"touch":27,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11483,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":23005,"notes":{"total":707,"tap":468,"hold":58,"slide":78,"touch":70,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11483,"level_id":4,"level":"13","level_value":13.2,"note_designer":"あまくちジンジャー","romVersion":23005,"notes":{"total":843,"tap":536,"hold":42,"slide":71,"touch":113,"break_":81},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1484,"players":3776,"title":"残響散歌","utTitle":null,"artist":"Aimer","albums":["残響散歌","散歌","残响","残响散歌","残響散歌","散歌","残响","残响散歌","残響散歌","散歌","残响","残响散歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":171,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11484,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":162,"tap":117,"hold":12,"slide":4,"touch":22,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11484,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23005,"notes":{"total":373,"tap":295,"hold":17,"slide":7,"touch":46,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11484,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":547,"tap":370,"hold":57,"slide":50,"touch":32,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11484,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":23005,"notes":{"total":939,"tap":657,"hold":38,"slide":199,"touch":22,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1485,"players":15933,"title":"フォニイ","utTitle":null,"artist":"ツミキ feat.音楽的同位体 可不(KAFU)","albums":["フォニイ","phony","扶你","噗泥","奶龙跳舞","凤梨","7才二亻","佛尼","伪物","フォニイ","phony","扶你","噗泥","奶龙跳舞","凤梨","7才二亻","佛尼","伪物","フォニイ","phony","扶你","噗泥","奶龙跳舞","凤梨","7才二亻","佛尼","伪物"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11485,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23005,"notes":{"total":121,"tap":78,"hold":16,"slide":6,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11485,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23005,"notes":{"total":303,"tap":242,"hold":23,"slide":11,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11485,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"畳返し","romVersion":23005,"notes":{"total":520,"tap":370,"hold":53,"slide":9,"touch":64,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11485,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":23005,"notes":{"total":622,"tap":434,"hold":43,"slide":89,"touch":30,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11485,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":753,"tap":501,"hold":46,"slide":119,"touch":44,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2215,"long":false},{"id":1486,"players":6116,"title":"ヴィラン","utTitle":null,"artist":"flower・てにをは","albums":["ヴィラン","碧浪","恶者","反派","villan","反派角色","villain","糜烂","ヴィラン","碧浪","恶者","反派","villan","反派角色","villain","糜烂","ヴィラン","碧浪","恶者","反派","villan","反派角色","villain","糜烂"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":102,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11486,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23005,"notes":{"total":90,"tap":71,"hold":5,"slide":4,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11486,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23005,"notes":{"total":233,"tap":173,"hold":24,"slide":5,"touch":24,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11486,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":377,"tap":270,"hold":63,"slide":20,"touch":17,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11486,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"緑風 犬三郎","romVersion":23005,"notes":{"total":572,"tap":398,"hold":44,"slide":67,"touch":48,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11486,"level_id":4,"level":"13","level_value":13.0,"note_designer":"カマボコ君","romVersion":23005,"notes":{"total":679,"tap":431,"hold":33,"slide":55,"touch":111,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2017,"long":false},{"id":1487,"players":3891,"title":"EYE","utTitle":null,"artist":"Kanaria","albums":["eye","眼睛","\uD83D\uDC40","羊哥","林狗","eye","眼睛","\uD83D\uDC40","羊哥","林狗","eye","眼睛","\uD83D\uDC40","羊哥","林狗"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":137,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11487,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23005,"notes":{"total":109,"tap":71,"hold":6,"slide":4,"touch":8,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11487,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23005,"notes":{"total":335,"tap":267,"hold":12,"slide":22,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11487,"level_id":2,"level":"9","level_value":9.0,"note_designer":"Jack","romVersion":23005,"notes":{"total":481,"tap":386,"hold":57,"slide":22,"touch":3,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11487,"level_id":3,"level":"13","level_value":13.0,"note_designer":"サファ太 vs 翠楼屋","romVersion":23005,"notes":{"total":795,"tap":448,"hold":41,"slide":69,"touch":151,"break_":86},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1488,"players":11776,"title":"スカーレット警察のゲットーパトロール24時","utTitle":{"111488":"[覚]スカーレット警察のゲットーパトロール24時"},"artist":"七条レタスグループ","albums":["スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察","スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察","スカーレット警察のゲットーパトロール24時","\uD83D\uDC6E","东方警察24时","24时","蟑螂跳舞","东方警察","警察出警24小时","funky","警察24时","斯卡雷特警察","斯卡蕾特警察","24时警察","斯卡雷特","斯卡蕾特","蕾米出警","琪露诺跳舞","警察"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"東方Project","bpm":160,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":24506,"dx":{"0":{"id":11488,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23005,"notes":{"total":117,"tap":88,"hold":9,"slide":8,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11488,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23005,"notes":{"total":252,"tap":189,"hold":17,"slide":12,"touch":18,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11488,"level_id":2,"level":"9","level_value":9.5,"note_designer":"じゃこレモン","romVersion":23005,"notes":{"total":307,"tap":172,"hold":51,"slide":28,"touch":18,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11488,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":23005,"notes":{"total":711,"tap":519,"hold":31,"slide":77,"touch":49,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111488":{"id":111488,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24506,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2265,"long":false},{"id":1489,"players":4257,"title":"田中","utTitle":null,"artist":"立秋 feat.ちょこ","albums":["田中","tanaka","田中","tanaka","田中","tanaka"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":186,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23005,"dxRomVersion":23005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11489,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23005,"notes":{"total":186,"tap":139,"hold":29,"slide":6,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11489,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23005,"notes":{"total":359,"tap":284,"hold":24,"slide":7,"touch":34,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11489,"level_id":2,"level":"12","level_value":12.1,"note_designer":"翠楼屋","romVersion":23005,"notes":{"total":661,"tap":464,"hold":74,"slide":28,"touch":81,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11489,"level_id":3,"level":"14","level_value":14.3,"note_designer":"ぴちネコ","romVersion":23005,"notes":{"total":892,"tap":571,"hold":85,"slide":80,"touch":110,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2289,"long":false},{"id":1490,"players":3666,"title":"Random","utTitle":null,"artist":"Sobrem × Silentroom","albums":["random","阮冬木","随机","random","阮冬木","随机","random","阮冬木","随机","燃冬"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":132,"releaseDate":"20220922","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11490,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23006,"notes":{"total":170,"tap":131,"hold":17,"slide":12,"touch":5,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11490,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23006,"notes":{"total":262,"tap":218,"hold":13,"slide":7,"touch":16,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11490,"level_id":2,"level":"11","level_value":11.2,"note_designer":"ロシェ@ペンギン","romVersion":23006,"notes":{"total":478,"tap":302,"hold":98,"slide":29,"touch":30,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11490,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":23006,"notes":{"total":786,"tap":417,"hold":119,"slide":57,"touch":147,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2267,"long":false},{"id":1491,"players":10187,"title":"Luminaria","utTitle":null,"artist":"Lime","albums":["luminaria","露米娅","水神6","海晶灯","流明","鹿米","luminaria","露米娅","水神6","海晶灯","流明","鹿米","luminaria","露米娅","水神6","海晶灯","流明","鹿米"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":227,"releaseDate":"20220922","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11491,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23006,"notes":{"total":206,"tap":143,"hold":6,"slide":8,"touch":42,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11491,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23006,"notes":{"total":353,"tap":282,"hold":18,"slide":4,"touch":42,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11491,"level_id":2,"level":"12","level_value":12.2,"note_designer":"翠楼屋","romVersion":23006,"notes":{"total":691,"tap":481,"hold":55,"slide":17,"touch":63,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11491,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":832,"tap":640,"hold":46,"slide":83,"touch":18,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1492,"players":8728,"title":"群青讃歌","utTitle":null,"artist":"Eve / 初音ミク、星乃一歌、花里みのり、小豆沢こはね、天馬司、宵崎奏「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":168,"releaseDate":"20221007","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11492,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":25005,"notes":{"total":71,"tap":58,"hold":6,"slide":2,"touch":4,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11492,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25005,"notes":{"total":210,"tap":172,"hold":17,"slide":6,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11492,"level_id":2,"level":"9","level_value":9.5,"note_designer":"翠楼屋","romVersion":25005,"notes":{"total":335,"tap":272,"hold":29,"slide":17,"touch":7,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11492,"level_id":3,"level":"12","level_value":12.4,"note_designer":"はっぴー","romVersion":25005,"notes":{"total":385,"tap":256,"hold":26,"slide":65,"touch":21,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2304,"long":false},{"id":1493,"players":6966,"title":"セカイ","utTitle":null,"artist":"DECO*27 × 堀江晶太(kemu) / 初音ミク、星乃一歌、天馬司、宵崎奏「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":133,"releaseDate":"20221007","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11493,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25005,"notes":{"total":102,"tap":82,"hold":4,"slide":4,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11493,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25005,"notes":{"total":211,"tap":170,"hold":10,"slide":6,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11493,"level_id":2,"level":"10","level_value":10.0,"note_designer":"小鳥遊さん","romVersion":25005,"notes":{"total":360,"tap":254,"hold":39,"slide":33,"touch":16,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11493,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"うさぎランドリー","romVersion":25005,"notes":{"total":553,"tap":402,"hold":41,"slide":34,"touch":46,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2022,"long":false},{"id":1494,"players":6483,"title":"ワーワーワールド","utTitle":null,"artist":"Giga & Mitchie M / 初音ミク、花里みのり、小豆沢こはね「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20221007","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11494,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25005,"notes":{"total":122,"tap":100,"hold":4,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11494,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25005,"notes":{"total":239,"tap":176,"hold":18,"slide":6,"touch":27,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11494,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"アマリリス","romVersion":25005,"notes":{"total":371,"tap":281,"hold":35,"slide":28,"touch":19,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11494,"level_id":3,"level":"13","level_value":13.0,"note_designer":"翠楼屋","romVersion":25005,"notes":{"total":558,"tap":382,"hold":45,"slide":74,"touch":35,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1495,"players":2913,"title":"銀のめぐり","utTitle":null,"artist":"SYNC.ART'S feat. 3L","albums":["銀のめぐり","银的轮回","银","银的循环","古明地觉","銀のめぐり","银的轮回","银","银的循环","古明地觉","銀のめぐり","银的轮回","银","银的循环","古明地觉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":170,"releaseDate":"20221021","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11495,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23006,"notes":{"total":142,"tap":115,"hold":10,"slide":6,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11495,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23006,"notes":{"total":316,"tap":256,"hold":16,"slide":16,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11495,"level_id":2,"level":"10","level_value":10.0,"note_designer":"うさぎランドリー","romVersion":23006,"notes":{"total":475,"tap":344,"hold":57,"slide":30,"touch":7,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11495,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"じゃこレモン","romVersion":23006,"notes":{"total":653,"tap":427,"hold":37,"slide":96,"touch":51,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1496,"players":5052,"title":"Destiny Runner","utTitle":null,"artist":"さわわ","albums":["destiny runner","蕾米莉亚","dr","命运跑者","命运奔跑者","destiny runner","蕾米莉亚","dr","命运跑者","命运奔跑者","destiny runner","蕾米莉亚","dr","命运跑者","命运奔跑者"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20221021","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11496,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23006,"notes":{"total":223,"tap":184,"hold":2,"slide":7,"touch":24,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11496,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23006,"notes":{"total":400,"tap":337,"hold":23,"slide":8,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11496,"level_id":2,"level":"11","level_value":11.2,"note_designer":"翠楼屋","romVersion":23006,"notes":{"total":667,"tap":548,"hold":51,"slide":17,"touch":25,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11496,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":23006,"notes":{"total":985,"tap":762,"hold":61,"slide":74,"touch":36,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1497,"players":3209,"title":"アマカミサマ","utTitle":null,"artist":"名取さな","albums":["アマカミサマ","天神","amakamisama","天神大人","美少女跳楼","阿妈卡密萨马","アマカミサマ","天神","amakamisama","天神大人","美少女跳楼","阿妈卡密萨马","アマカミサマ","天神","amakamisama","天神大人","美少女跳楼","阿妈卡密萨马"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":174,"releaseDate":"20221104","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11497,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23006,"notes":{"total":142,"tap":118,"hold":11,"slide":3,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11497,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23006,"notes":{"total":326,"tap":252,"hold":31,"slide":11,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11497,"level_id":2,"level":"9","level_value":9.5,"note_designer":"アマリリス","romVersion":23006,"notes":{"total":429,"tap":345,"hold":42,"slide":26,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11497,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"アマリリスせんせえ","romVersion":23006,"notes":{"total":701,"tap":390,"hold":70,"slide":79,"touch":145,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2341,"long":false},{"id":1498,"players":6113,"title":"モンダイナイトリッパー!","utTitle":null,"artist":"名取さな","albums":["モンダイナイトリッパー!","指南针","没问题tripper","モンダイナイトリッパー","萌呆奶","没问题","tripper","名取纱那","旅行者","没问题!Tripper!","兔兔","没问题旅行家","モンダイナイトリッパー!","指南针","没问题tripper","モンダイナイトリッパー","萌呆奶","没问题","tripper","名取纱那","旅行者","没问题!Tripper!","兔兔","没问题旅行家","モンダイナイトリッパー!","指南针","没问题tripper","モンダイナイトリッパー","萌呆奶","没问题","tripper","名取纱那","旅行者","没问题!Tripper!","兔兔","没问题旅行家"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":180,"releaseDate":"20221104","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11498,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23006,"notes":{"total":189,"tap":154,"hold":18,"slide":6,"touch":5,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11498,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23006,"notes":{"total":334,"tap":285,"hold":18,"slide":9,"touch":19,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11498,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"翠楼屋","romVersion":23006,"notes":{"total":531,"tap":408,"hold":66,"slide":15,"touch":15,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11498,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"アマリリスせんせえ with ぴちネコせんせえ","romVersion":23006,"notes":{"total":839,"tap":536,"hold":54,"slide":72,"touch":121,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2677,"long":false},{"id":1499,"players":7210,"title":"マーシャル・マキシマイザー","utTitle":null,"artist":"柊マグネタイト feat.音楽的同位体 可不(KAFU)","albums":["マーシャル・マキシマイザー","可不戴耳机","马修麦泽","最大化","mm","最大化者","马歇尔最大化器","马歇尔","marshall maximizer","可不听歌","maximizer","マーシャル・マキシマイザー","可不戴耳机","马修麦泽","最大化","mm","最大化者","马歇尔最大化器","马歇尔","marshall maximizer","可不听歌","maximizer","マーシャル・マキシマイザー","可不戴耳机","马修麦泽","最大化","mm","最大化者","马歇尔最大化器","马歇尔","marshall maximizer","可不听歌","maximizer"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20221104","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11499,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":190,"tap":150,"hold":15,"slide":7,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11499,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":23007,"notes":{"total":368,"tap":300,"hold":22,"slide":8,"touch":34,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11499,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":581,"tap":416,"hold":76,"slide":24,"touch":37,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11499,"level_id":3,"level":"13","level_value":13.2,"note_designer":"じゃこレモン","romVersion":23007,"notes":{"total":867,"tap":580,"hold":62,"slide":139,"touch":54,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2306,"long":false},{"id":1500,"players":2419,"title":"秋の未確認生物","utTitle":null,"artist":"子牛","albums":["秋の未確認生物","未确认生物","秋的未确认生物","生物","秋の未確認生物","未确认生物","秋的未确认生物","生物","秋の未確認生物","未确认生物","秋的未确认生物","生物"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20221104","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11500,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":204,"tap":170,"hold":15,"slide":8,"touch":4,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11500,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":23007,"notes":{"total":364,"tap":275,"hold":18,"slide":12,"touch":29,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11500,"level_id":2,"level":"10","level_value":10.5,"note_designer":"ロシェ@ペンギン","romVersion":23007,"notes":{"total":609,"tap":457,"hold":51,"slide":45,"touch":35,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11500,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":899,"tap":638,"hold":23,"slide":101,"touch":34,"break_":103},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1502,"players":5755,"title":"エナドリおいしいソング","utTitle":null,"artist":"冥堂院・アレクサンドル・ヴィクトリア・リヒテンシュタイン・聖斗 feat.TINOP","albums":["エナドリおいしいソング","能量饮料","东鹏特饮","和亲","能量饮料歌","drink with me","红牛","易拉罐","能量饮料真好喝","斐济杯","エナドリおいしいソング","能量饮料","东鹏特饮","和亲","能量饮料歌","drink with me","红牛","易拉罐","能量饮料真好喝","斐济杯","エナドリおいしいソング","能量饮料","东鹏特饮","和亲","能量饮料歌","drink with me","红牛","易拉罐","能量饮料真好喝","斐济杯"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20221202","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11502,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":175,"tap":137,"hold":15,"slide":4,"touch":12,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11502,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23007,"notes":{"total":343,"tap":280,"hold":19,"slide":6,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11502,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"翠楼屋","romVersion":23007,"notes":{"total":509,"tap":372,"hold":60,"slide":33,"touch":5,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11502,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":677,"tap":510,"hold":23,"slide":90,"touch":8,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1503,"players":7408,"title":"Baddest","utTitle":null,"artist":"樋口楓","albums":["baddest","16块钱","太坏了","十六块钱","樋口枫","樋口枫大旋风","坏极了","baddest","16块钱","太坏了","十六块钱","樋口枫","樋口枫大旋风","坏极了","吕元伟","粉色诱惑张钰泽","baddest","16块钱","太坏了","十六块钱","樋口枫","樋口枫大旋风","坏极了"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":215,"releaseDate":"20221223","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11503,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":239,"tap":197,"hold":13,"slide":6,"touch":19,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11503,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23007,"notes":{"total":357,"tap":295,"hold":24,"slide":12,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11503,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ロシェ@ペンギン","romVersion":23007,"notes":{"total":583,"tap":356,"hold":65,"slide":39,"touch":60,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11503,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":1030,"tap":738,"hold":57,"slide":134,"touch":35,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1504,"players":6259,"title":"ばかみたい【Taxi Driver Edition】","utTitle":null,"artist":"桐生一馬(黒田崇矢)","albums":["ばかみたい【taxi driver edition】","像笨蛋一样","八嘎米袋","别急20","打咩打捏","如龙的雨","笨蛋","八嘎","oceancat","羽染","玛恩纳","哭包羽染","像个傻瓜","\uD83D\uDC36","如龙5","bakamitai","海猫络合物","海猫","damedane","\uD83E\uDD43","铃木太一","ばかみたい【taxi driver edition】","像笨蛋一样","八嘎米袋","别急20","打咩打捏","如龙的雨","笨蛋","八嘎","oceancat","羽染","玛恩纳","哭包羽染","像个傻瓜","\uD83D\uDC36","如龙5","bakamitai","海猫络合物","海猫","damedane","\uD83E\uDD43","铃木太一","ばかみたい【taxi driver edition】","像笨蛋一样","八嘎米袋","别急20","打咩打捏","如龙的雨","笨蛋","八嘎","oceancat","羽染","玛恩纳","哭包羽染","像个傻瓜","\uD83D\uDC36","如龙5","bakamitai","海猫络合物","海猫","damedane","\uD83E\uDD43","铃木太一"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":74,"releaseDate":"20221223","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11504,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23007,"notes":{"total":87,"tap":64,"hold":9,"slide":4,"touch":6,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11504,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23007,"notes":{"total":213,"tap":173,"hold":17,"slide":9,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11504,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":23007,"notes":{"total":215,"tap":153,"hold":28,"slide":14,"touch":13,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11504,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Redarrow","romVersion":23007,"notes":{"total":278,"tap":172,"hold":33,"slide":37,"touch":1,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2449,"long":false},{"id":1505,"players":5679,"title":"れっつ!みらくる☆はーどこあっ!","utTitle":null,"artist":"Laur feat.みしゃも","albums":["れっつ!みらくる☆はーどこあっ!","wifecore","laur撒狗粮","浮冰","miracle hardcore","雌小鬼","let's miracle☆hardcore","老二和他的老婆","hardcore2","れっつ!みらくる☆はーどこあっ!","wifecore","laur撒狗粮","浮冰","miracle hardcore","雌小鬼","let's miracle☆hardcore","老二和他的老婆","hardcore2","れっつ!みらくる☆はーどこあっ!","wifecore","laur撒狗粮","浮冰","miracle hardcore","雌小鬼","let's miracle☆hardcore","老二和他的老婆","hardcore2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":185,"releaseDate":"20221223","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11505,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23007,"notes":{"total":221,"tap":161,"hold":21,"slide":9,"touch":19,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11505,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":23007,"notes":{"total":421,"tap":322,"hold":45,"slide":5,"touch":28,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11505,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":625,"tap":347,"hold":68,"slide":45,"touch":46,"break_":119},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11505,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"じゃこレモン","romVersion":23007,"notes":{"total":1093,"tap":613,"hold":92,"slide":126,"touch":152,"break_":110},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1506,"players":2430,"title":"Blank Paper (Prod. TEMPLIME)","utTitle":null,"artist":"日高零奈・東雲和音・茅野ふたば「電音部」","albums":["blank paper (prod. templime)","blank paper","空白纸","blank paper (prod. templime)","blank paper","空白纸","blank paper (prod. templime)","blank paper","空白纸"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":133,"releaseDate":"20230106","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11506,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":116,"tap":87,"hold":10,"slide":8,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11506,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":23008,"notes":{"total":269,"tap":220,"hold":12,"slide":10,"touch":25,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11506,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":385,"tap":262,"hold":58,"slide":30,"touch":17,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11506,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":801,"tap":630,"hold":33,"slide":98,"touch":4,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1507,"players":2628,"title":"In my world (Prod. KOTONOHOUSE)","utTitle":null,"artist":"鳳凰火凛・瀬戸海月・大賀ルキア「電音部」","albums":["in my world (prod. kotonohouse)","in my world","在我的世界","imw","in my world (prod. kotonohouse)","in my world","在我的世界","imw","in my world (prod. kotonohouse)","in my world","在我的世界","imw"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":160,"releaseDate":"20230106","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11507,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":135,"tap":99,"hold":11,"slide":4,"touch":19,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11507,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23008,"notes":{"total":306,"tap":235,"hold":20,"slide":18,"touch":28,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11507,"level_id":2,"level":"10","level_value":10.0,"note_designer":"アマリリス","romVersion":23008,"notes":{"total":429,"tap":310,"hold":52,"slide":38,"touch":5,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11507,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":23008,"notes":{"total":743,"tap":530,"hold":37,"slide":110,"touch":52,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1508,"players":1150,"title":"アイム・マイヒーロー","utTitle":null,"artist":"Ino(chronoize) feat. 柳瀬マサキ","albums":["アイム・マイヒーロー","马云","英雄","i am my hero","我是自己的英雄","アイム・マイヒーロー","马云","英雄","i am my hero","我是自己的英雄","アイム・マイヒーロー","马云","英雄","i am my hero","我是自己的英雄"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":138,"releaseDate":"20230106","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11508,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23007,"notes":{"total":119,"tap":85,"hold":8,"slide":3,"touch":18,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11508,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23007,"notes":{"total":284,"tap":231,"hold":15,"slide":8,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11508,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":23007,"notes":{"total":374,"tap":267,"hold":39,"slide":34,"touch":14,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11508,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":23007,"notes":{"total":775,"tap":631,"hold":28,"slide":58,"touch":43,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1509,"players":6826,"title":"NightTheater","utTitle":null,"artist":"わかどり","albums":["nighttheater","夜剧场","night theater","nt","夜剧院","nighttheater","夜剧场","night theater","nt","夜剧院","nighttheater","夜剧场","night theater","nt","夜剧院"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":151,"releaseDate":"20230106","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11509,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23007,"notes":{"total":138,"tap":108,"hold":10,"slide":4,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11509,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23007,"notes":{"total":342,"tap":282,"hold":26,"slide":8,"touch":12,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11509,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"みそかつ侍","romVersion":23007,"notes":{"total":541,"tap":402,"hold":41,"slide":42,"touch":11,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11509,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はぴネコ(はっぴー&ぴちネコ)","romVersion":23007,"notes":{"total":823,"tap":570,"hold":43,"slide":54,"touch":95,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2138,"long":false},{"id":1510,"players":3131,"title":"キュートなカノジョ","utTitle":null,"artist":"syudou feat.音楽的同位体 可不(KAFU)","albums":["キュートなカノジョ","可爱的女朋友","女朋友","可爱女友","米塔","キュートなカノジョ","可爱的女朋友","女朋友","可爱女友","米塔","キュートなカノジョ","可爱的女朋友","女朋友","可爱女友","米塔"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20230217","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11510,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":148,"tap":107,"hold":13,"slide":6,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11510,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23008,"notes":{"total":279,"tap":212,"hold":21,"slide":10,"touch":25,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11510,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":446,"tap":341,"hold":34,"slide":27,"touch":26,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11510,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":680,"tap":468,"hold":47,"slide":106,"touch":11,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2262,"long":false},{"id":1511,"players":2061,"title":"へべれけジャンキー","utTitle":null,"artist":"syudou","albums":["へべれけジャンキー","喝醉的五条悟","酩酊大醉的瘾君子","daisuke","へべれけジャンキー","喝醉的五条悟","酩酊大醉的瘾君子","daisuke","へべれけジャンキー","喝醉的五条悟","酩酊大醉的瘾君子","daisuke"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":104,"releaseDate":"20230217","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11511,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":132,"tap":107,"hold":5,"slide":4,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11511,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23008,"notes":{"total":268,"tap":212,"hold":15,"slide":4,"touch":15,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11511,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"畳返し","romVersion":23008,"notes":{"total":421,"tap":310,"hold":50,"slide":12,"touch":33,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11511,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ロシェ@ペンギン","romVersion":23008,"notes":{"total":735,"tap":515,"hold":64,"slide":45,"touch":71,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1512,"players":13173,"title":"きゅうくらりん","utTitle":null,"artist":"いよわ","albums":["きゅうくらりん","心跳不止","心跳不已","可不抱头","晴天娃娃","ddlc","心动不已","心跳不动","纱世里","绿衣女人摸脸蛋","きゅうくらりん","心跳不止","心跳不已","可不抱头","晴天娃娃","ddlc","心动不已","心跳不动","纱世里","绿衣女人摸脸蛋","洛珩2","きゅうくらりん","心跳不止","心跳不已","可不抱头","晴天娃娃","ddlc","心动不已","心跳不动","纱世里","绿衣女人摸脸蛋"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":220,"releaseDate":"20230217","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11512,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23008,"notes":{"total":185,"tap":147,"hold":15,"slide":2,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11512,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23008,"notes":{"total":324,"tap":245,"hold":38,"slide":8,"touch":29,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11512,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":630,"tap":445,"hold":101,"slide":27,"touch":7,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11512,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":859,"tap":484,"hold":196,"slide":114,"touch":17,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2317,"long":false},{"id":1513,"players":6717,"title":"回る空うさぎ","utTitle":{"111513":"[回]回る空うさぎ"},"artist":"Orangestar","albums":["回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师","回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师","回る空うさぎ","月兔","月兔回旋于空中","回空","月下钢琴师"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":24015,"dx":{"0":{"id":11513,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":129,"tap":103,"hold":9,"slide":2,"touch":13,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11513,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":23008,"notes":{"total":256,"tap":205,"hold":14,"slide":16,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11513,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":298,"tap":217,"hold":35,"slide":25,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11513,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":526,"tap":415,"hold":27,"slide":47,"touch":9,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111513":{"id":111513,"level_id":0,"level":"11?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":254,"tap":0,"hold":0,"slide":32,"touch":221,"break_":1},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1514,"players":9657,"title":"Lost Desire","utTitle":null,"artist":"Powerless feat. Sennzai","albums":["lost desire","ld","失去欲望了","失感","失去感觉了","失欲","lost desire","ld","失去欲望了","失感","失去感觉了","失欲","小提灯","lost desire","ld","失去欲望了","失感","失去感觉了","失欲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20230302","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11514,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":191,"tap":140,"hold":15,"slide":11,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11514,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23008,"notes":{"total":384,"tap":293,"hold":21,"slide":22,"touch":22,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11514,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":574,"tap":372,"hold":69,"slide":49,"touch":7,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11514,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"じゃこレモン","romVersion":23008,"notes":{"total":926,"tap":648,"hold":75,"slide":93,"touch":8,"break_":102},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1516,"players":10283,"title":"Aegleseeker","utTitle":{"111516":"[蔵]Aegleseeker"},"artist":"Silentroom vs Frums","albums":["aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥","aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥","aegleseeker","\uD83E\uDDD0","光追","追光","rtx","拉格兰","光锥"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"ゲームバラエティ","bpm":234,"releaseDate":"20240315","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":24003,"dx":{"0":{"id":11516,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23008,"notes":{"total":245,"tap":184,"hold":19,"slide":4,"touch":31,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11516,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23008,"notes":{"total":390,"tap":312,"hold":17,"slide":18,"touch":23,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11516,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":665,"tap":480,"hold":88,"slide":41,"touch":35,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11516,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太 vs 翠楼屋","romVersion":23008,"notes":{"total":1084,"tap":754,"hold":87,"slide":49,"touch":114,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111516":{"id":111516,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24003,"notes":{"total":1269,"tap":987,"hold":106,"slide":42,"touch":61,"break_":73},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1517,"players":10521,"title":"最強STRONGER","utTitle":null,"artist":"REDALiCE vs USAO","albums":["最強stronger","最屎shitter","血魔王","最强","最强stronger","最弱weaker","塔诺西","最强2","最強stronger","最屎shitter","血魔王","最强","最强stronger","最弱weaker","塔诺西","最强2","雪行","唔哇哇哇哇","最強stronger","最屎shitter","血魔王","最强","最强stronger","最弱weaker","塔诺西","最强2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":205,"releaseDate":"20230302","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11517,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23008,"notes":{"total":278,"tap":201,"hold":24,"slide":8,"touch":18,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11517,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":23008,"notes":{"total":426,"tap":337,"hold":30,"slide":13,"touch":26,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11517,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":23008,"notes":{"total":789,"tap":540,"hold":120,"slide":71,"touch":28,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11517,"level_id":3,"level":"14","level_value":14.5,"note_designer":"チャン@DP皆伝 vs シチミヘルツ","romVersion":23008,"notes":{"total":1069,"tap":725,"hold":66,"slide":152,"touch":46,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1518,"players":3098,"title":"ボッカデラベリタ","utTitle":null,"artist":"柊キライ","albums":["ボッカデラベリタ","真理之口","ボッカデラベリタ","真理之口","ボッカデラベリタ","真理之口"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20230310","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11518,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":167,"tap":134,"hold":14,"slide":6,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11518,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23008,"notes":{"total":344,"tap":272,"hold":24,"slide":12,"touch":23,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11518,"level_id":2,"level":"10","level_value":10.0,"note_designer":"翠楼屋","romVersion":23008,"notes":{"total":539,"tap":354,"hold":62,"slide":35,"touch":19,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11518,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Redarrow","romVersion":23008,"notes":{"total":796,"tap":597,"hold":61,"slide":93,"touch":16,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2150,"long":false},{"id":1519,"players":2480,"title":"『んっあっあっ。』","utTitle":null,"artist":"SLAVE.V-V-R","albums":["『んっあっあっ。』","嗯啊啊","举手","「んっあっあっ。」","初音鬼叫","顶级烟嗓","『んっあっあっ。』","嗯啊啊","举手","「んっあっあっ。」","初音鬼叫","顶级烟嗓","『んっあっあっ。』","嗯啊啊","举手","「んっあっあっ。」","初音鬼叫","顶级烟嗓","烟嗓"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":123,"releaseDate":"20230310","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11519,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":159,"tap":128,"hold":11,"slide":4,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11519,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23008,"notes":{"total":279,"tap":196,"hold":26,"slide":10,"touch":28,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11519,"level_id":2,"level":"9","level_value":9.5,"note_designer":"アマリリス","romVersion":23008,"notes":{"total":484,"tap":307,"hold":121,"slide":17,"touch":11,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11519,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":897,"tap":436,"hold":64,"slide":82,"touch":221,"break_":94},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1520,"players":4643,"title":"独りんぼエンヴィー","utTitle":null,"artist":"koyori(電ポルP)","albums":["独りんぼエンヴィー","孜然炉火","蛙","虾","孑然妒火","\uD83E\uDD90","孜然驴肉","独りんぼエンヴィー","孜然炉火","蛙","虾","孑然妒火","\uD83E\uDD90","孜然驴肉","独りんぼエンヴィー","孜然炉火","蛙","虾","孑然妒火","\uD83E\uDD90","孜然驴肉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":132,"releaseDate":"20230310","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11520,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":23008,"notes":{"total":118,"tap":80,"hold":10,"slide":5,"touch":20,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11520,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23008,"notes":{"total":299,"tap":232,"hold":22,"slide":6,"touch":29,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11520,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":23008,"notes":{"total":379,"tap":257,"hold":76,"slide":24,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11520,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"メロンポップ","romVersion":23008,"notes":{"total":606,"tap":390,"hold":72,"slide":80,"touch":39,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2418,"long":false},{"id":1521,"players":3976,"title":"ロータスイーター","utTitle":null,"artist":"青栗鼠","albums":["ロータスイーター","浑噩度日之人","lotus eater","莲花食者","食莲者","石楠花","ロータスイーター","浑噩度日之人","lotus eater","莲花食者","食莲者","石楠花","ロータスイーター","浑噩度日之人","lotus eater","莲花食者","食莲者","石楠花"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":142,"releaseDate":"20230310","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11521,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23008,"notes":{"total":120,"tap":74,"hold":18,"slide":4,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11521,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23008,"notes":{"total":318,"tap":232,"hold":24,"slide":15,"touch":24,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11521,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"アマリリス","romVersion":23008,"notes":{"total":479,"tap":367,"hold":57,"slide":22,"touch":0,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11521,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":23008,"notes":{"total":806,"tap":553,"hold":79,"slide":111,"touch":56,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1523,"players":9535,"title":"ViRTUS","utTitle":null,"artist":"Hiro","albums":["virtus","2024春晚","op","本草纲目","kop4","噔噔噔噔噔噔","水神2","水神二","virtus","2024春晚","op","本草纲目","kop4","噔噔噔噔噔噔","水神2","水神二","virtus","2024春晚","op","本草纲目","kop4","噔噔噔噔噔噔","水神2","水神二","芙宁娜","一半敖丙一半哪吒","台风"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":225,"releaseDate":"20230302","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23006,"dxRomVersion":23006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11523,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23006,"notes":{"total":270,"tap":229,"hold":10,"slide":12,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11523,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":23006,"notes":{"total":426,"tap":347,"hold":24,"slide":15,"touch":24,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11523,"level_id":2,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":23006,"notes":{"total":713,"tap":487,"hold":89,"slide":38,"touch":63,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11523,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"jacK on Phoenix & -ZONE- SaFaRi","romVersion":23006,"notes":{"total":1063,"tap":774,"hold":39,"slide":136,"touch":49,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1524,"players":7193,"title":"Alice's Suitcase","utTitle":null,"artist":"Endorfin.","albums":["alice's suitcase","爱丽丝手提箱","爱丽丝的手提箱","手提箱","\uD83E\uDDF3","as","alice's suitcase","爱丽丝手提箱","爱丽丝的手提箱","手提箱","\uD83E\uDDF3","as","alice's suitcase","爱丽丝手提箱","爱丽丝的手提箱","手提箱","\uD83E\uDDF3","as"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20230302","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23008,"dxRomVersion":23008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11524,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23008,"notes":{"total":174,"tap":125,"hold":19,"slide":6,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11524,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23008,"notes":{"total":350,"tap":247,"hold":47,"slide":14,"touch":24,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11524,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"PG-NAKAGAWA","romVersion":23008,"notes":{"total":477,"tap":331,"hold":78,"slide":38,"touch":12,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11524,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack vs あまくちジンジャー","romVersion":23008,"notes":{"total":786,"tap":516,"hold":67,"slide":97,"touch":79,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2349,"long":false},{"id":1525,"players":4563,"title":"ピュグマリオンの咒文","utTitle":null,"artist":"アリスシャッハと魔法の楽団","albums":["ピュグマリオンの咒文","黑塔","小魔女咒文","魔法小萝莉","咒文","皮格马利翁的咒文","大黑塔","ピュグマリオンの咒文","黑塔","小魔女咒文","魔法小萝莉","咒文","皮格马利翁的咒文","大黑塔","ピュグマリオンの咒文","黑塔","小魔女咒文","魔法小萝莉","咒文","皮格马利翁的咒文","大黑塔"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20230120","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":true,"jp":true,"m2l":false,"firstRomVersion":23007,"dxRomVersion":23007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11525,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23007,"notes":{"total":179,"tap":148,"hold":13,"slide":4,"touch":7,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11525,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":23007,"notes":{"total":308,"tap":223,"hold":45,"slide":8,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11525,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"翠楼屋","romVersion":23007,"notes":{"total":519,"tap":329,"hold":82,"slide":15,"touch":38,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11525,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はぴネコ(はっぴー&ぴちネコ)","romVersion":23007,"notes":{"total":844,"tap":430,"hold":90,"slide":105,"touch":143,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2064,"long":false},{"id":1526,"players":4344,"title":"トノサマビーム","utTitle":null,"artist":"ぼっちぼろまる","albums":["トノサマビーム","乙姬2","匕一么","殿下大人光线","トノサマビーム","乙姬2","匕一么","殿下大人光线","トノサマビーム","乙姬2","匕一么","殿下大人光线"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11526,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":174,"tap":144,"hold":15,"slide":3,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11526,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24000,"notes":{"total":341,"tap":265,"hold":19,"slide":10,"touch":29,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11526,"level_id":2,"level":"10","level_value":10.5,"note_designer":"アマリリス","romVersion":24000,"notes":{"total":579,"tap":479,"hold":61,"slide":16,"touch":4,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11526,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":24000,"notes":{"total":869,"tap":522,"hold":25,"slide":115,"touch":141,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1527,"players":9180,"title":"enchanted wanderer","utTitle":null,"artist":"linear ring","albums":["enchanted wanderer","黑猫","青蛙2","醉心求知者","附魔爱2","青蛙王子2","\uD83D\uDC382","别急21","维什戴尔","附魔流浪者","ew","附魔喵","附魔旅行者","enchanted wanderer","黑猫","青蛙2","醉心求知者","附魔爱2","青蛙王子2","\uD83D\uDC382","别急21","维什戴尔","附魔流浪者","ew","附魔喵","附魔旅行者","enchanted wanderer","黑猫","青蛙2","醉心求知者","附魔爱2","青蛙王子2","\uD83D\uDC382","别急21","维什戴尔","附魔流浪者","ew","附魔喵","附魔旅行者"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":102,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11527,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":160,"tap":130,"hold":15,"slide":4,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11527,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24000,"notes":{"total":286,"tap":231,"hold":17,"slide":10,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11527,"level_id":2,"level":"12","level_value":12.0,"note_designer":"みそかつ侍","romVersion":24000,"notes":{"total":446,"tap":188,"hold":136,"slide":51,"touch":56,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11527,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"アマリリス","romVersion":24000,"notes":{"total":594,"tap":285,"hold":62,"slide":107,"touch":113,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1528,"players":7152,"title":"Comet Panto Men!","utTitle":null,"artist":"MYUKKE.","albums":["comet panto men!","men!","特大男人","cpm","卖鱼客","彗星哑剧人","特大跳舞","comet panto men!","men!","特大男人","cpm","卖鱼客","彗星哑剧人","特大跳舞","微软","特大土豆人","comet panto men!","men!","特大男人","cpm","卖鱼客","彗星哑剧人","特大跳舞","求生之路","man"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11528,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24000,"notes":{"total":210,"tap":178,"hold":13,"slide":6,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11528,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24000,"notes":{"total":379,"tap":332,"hold":12,"slide":6,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11528,"level_id":2,"level":"12","level_value":12.0,"note_designer":"翠楼屋","romVersion":24000,"notes":{"total":628,"tap":461,"hold":55,"slide":34,"touch":19,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11528,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":24000,"notes":{"total":912,"tap":629,"hold":71,"slide":95,"touch":85,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1529,"players":9244,"title":"ツムギボシ","utTitle":null,"artist":"大国奏音 feat.timao","albums":["ツムギボシ","纺星","fes+主题曲","祝代主题曲","ツムギボシ","纺星","fes+主题曲","祝代主题曲","ツムギボシ","纺星","fes+主题曲","祝代主题曲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11529,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24000,"notes":{"total":235,"tap":181,"hold":24,"slide":10,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11529,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24000,"notes":{"total":376,"tap":272,"hold":42,"slide":18,"touch":25,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11529,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":24000,"notes":{"total":626,"tap":425,"hold":72,"slide":38,"touch":68,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11529,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"じゃこレモン","romVersion":24000,"notes":{"total":992,"tap":686,"hold":64,"slide":142,"touch":38,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1530,"players":6401,"title":"VeRForTe αRtE:VEiN","utTitle":null,"artist":"orangentle","albums":["verforte αrte:vein","verforte","大钟楼","钟楼","vft","大钟","verforte αrte:vein","verforte","大钟楼","钟楼","vft","大钟","verforte αrte:vein","verforte","大钟楼","钟楼","vft","大钟","十块钱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11530,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24000,"notes":{"total":227,"tap":173,"hold":15,"slide":8,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11530,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":24000,"notes":{"total":374,"tap":267,"hold":42,"slide":18,"touch":14,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11530,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":24000,"notes":{"total":654,"tap":395,"hold":47,"slide":66,"touch":61,"break_":85},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11530,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"翡翠マナ -Memoir-","romVersion":24000,"notes":{"total":1064,"tap":774,"hold":69,"slide":64,"touch":72,"break_":85},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1532,"players":4628,"title":"ヱデン","utTitle":null,"artist":"koyori(電ポルP)","albums":["ヱデン","eden","阿罗娜","エデン","伊甸","ヱデン","eden","阿罗娜","エデン","伊甸","ヱデン","eden","阿罗娜","エデン","伊甸"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":137,"releaseDate":"20230428","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11532,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24002,"notes":{"total":148,"tap":111,"hold":18,"slide":4,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11532,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24002,"notes":{"total":292,"tap":230,"hold":19,"slide":10,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11532,"level_id":2,"level":"9","level_value":9.0,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":461,"tap":342,"hold":46,"slide":42,"touch":13,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11532,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":24002,"notes":{"total":655,"tap":474,"hold":52,"slide":91,"touch":21,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1533,"players":4907,"title":"にゃーにゃー冒険譚","utTitle":null,"artist":"黒魔","albums":["にゃーにゃー冒険譚","nyanya冒险谭","喵喵冒险谭","哈基米大冒险","妖精冒险谭","冒险谭","にゃーにゃー冒険譚","nyanya冒险谭","喵喵冒险谭","哈基米大冒险","妖精冒险谭","冒险谭","喵喵","にゃーにゃー冒険譚","nyanya冒险谭","喵喵冒险谭","哈基米大冒险","妖精冒险谭","冒险谭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20230428","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11533,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24002,"notes":{"total":204,"tap":154,"hold":20,"slide":7,"touch":21,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11533,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":24002,"notes":{"total":403,"tap":308,"hold":40,"slide":17,"touch":24,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11533,"level_id":2,"level":"11","level_value":11.0,"note_designer":"翠楼屋","romVersion":24002,"notes":{"total":641,"tap":482,"hold":44,"slide":22,"touch":24,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11533,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"みそかつ侍","romVersion":24002,"notes":{"total":1085,"tap":802,"hold":49,"slide":82,"touch":68,"break_":84},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1534,"players":6410,"title":"The Great Banquet","utTitle":null,"artist":"Iris","albums":["the great banquet","盛大宴会","tgb","the great banquet","盛大宴会","tgb","the great banquet","盛大宴会","tgb","伟大的宴窝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20240202","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11534,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":246,"tap":205,"hold":15,"slide":7,"touch":11,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11534,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24007,"notes":{"total":371,"tap":306,"hold":29,"slide":2,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11534,"level_id":2,"level":"11","level_value":11.5,"note_designer":"サファ太","romVersion":24007,"notes":{"total":518,"tap":338,"hold":75,"slide":50,"touch":12,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11534,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Luxizhel","romVersion":24007,"notes":{"total":953,"tap":715,"hold":52,"slide":131,"touch":10,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1535,"players":6652,"title":"Redemption","utTitle":null,"artist":"XinG、10lulu","albums":["redemption","黑十字星","救赎","特大2","黑南十字","狂犬病","西十字星","redemption","黑十字星","救赎","特大2","黑南十字","狂犬病","西十字星","redemption","黑十字星","救赎","特大2","黑南十字","狂犬病","西十字星","黑十字"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20240202","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11535,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":181,"tap":132,"hold":9,"slide":10,"touch":24,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11535,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24007,"notes":{"total":322,"tap":244,"hold":29,"slide":9,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11535,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"鳩ホルダー","romVersion":24007,"notes":{"total":459,"tap":320,"hold":50,"slide":48,"touch":26,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11535,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":813,"tap":686,"hold":6,"slide":49,"touch":36,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1536,"players":6463,"title":"Ether Second","utTitle":null,"artist":"Akira Complex","albums":["ether second","es2","以太冲击2","以太二","ether second","es2","以太冲击2","以太二","ether second","es2","以太冲击2","以太二","以太秒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20240202","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11536,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":178,"tap":138,"hold":22,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11536,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24007,"notes":{"total":300,"tap":242,"hold":18,"slide":6,"touch":30,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11536,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":519,"tap":337,"hold":82,"slide":55,"touch":42,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11536,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":24007,"notes":{"total":855,"tap":636,"hold":75,"slide":59,"touch":24,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1537,"players":8529,"title":"Straight into the lights","utTitle":null,"artist":"Cosmograph","albums":["straight into the lights","小东雪莲","ow2","acid","直入光","长驱直入光","straight into the lights","小东雪莲","ow2","acid","直入光","长驱直入光","中出光","straight into the lights","小东雪莲","ow2","acid","直入光","长驱直入光","中出光"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":90,"releaseDate":"20240202","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11537,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":220,"tap":158,"hold":30,"slide":4,"touch":19,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11537,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":24007,"notes":{"total":348,"tap":286,"hold":27,"slide":7,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11537,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":24007,"notes":{"total":522,"tap":310,"hold":81,"slide":40,"touch":40,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11537,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"Jack","romVersion":24007,"notes":{"total":1111,"tap":777,"hold":62,"slide":87,"touch":121,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1538,"players":5402,"title":"アンバークロニクル","utTitle":null,"artist":"しーけー feat.ricono","albums":["アンバークロニクル","琥珀编年史","アンバークロニクル","琥珀编年史","アンバークロニクル","琥珀编年史"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":192,"releaseDate":"20230623","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11538,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24001,"notes":{"total":236,"tap":196,"hold":9,"slide":4,"touch":22,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11538,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24001,"notes":{"total":397,"tap":327,"hold":35,"slide":10,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11538,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":24001,"notes":{"total":611,"tap":477,"hold":26,"slide":61,"touch":24,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11538,"level_id":3,"level":"13","level_value":13.3,"note_designer":"カマボコ君","romVersion":24001,"notes":{"total":829,"tap":563,"hold":50,"slide":161,"touch":41,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1539,"players":5820,"title":"リフヴェイン","utTitle":null,"artist":"青栗鼠 feat.sekai","albums":["リフヴェイン","分身","青栗鼠","refvain","リフヴェイン","分身","青栗鼠","refvain","リフヴェイン","分身","青栗鼠","refvain"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":148,"releaseDate":"20230623","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11539,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24001,"notes":{"total":150,"tap":122,"hold":10,"slide":3,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11539,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24001,"notes":{"total":270,"tap":206,"hold":24,"slide":8,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11539,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"みそかつ侍","romVersion":24001,"notes":{"total":383,"tap":218,"hold":58,"slide":35,"touch":22,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11539,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"じゃこレモン","romVersion":24001,"notes":{"total":643,"tap":407,"hold":69,"slide":82,"touch":54,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1540,"players":5785,"title":"Kairos","utTitle":null,"artist":"ARForest feat.nayuta","albums":["kairos","时间之神","开罗","开肉丝","开罗斯","kairos","时间之神","开罗","开肉丝","开罗斯","kairos","时间之神","开罗","开肉丝","开罗斯"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20230623","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11540,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24001,"notes":{"total":156,"tap":121,"hold":11,"slide":4,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11540,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24001,"notes":{"total":320,"tap":262,"hold":30,"slide":6,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11540,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":24001,"notes":{"total":418,"tap":287,"hold":60,"slide":27,"touch":23,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11540,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":24001,"notes":{"total":591,"tap":430,"hold":64,"slide":55,"touch":25,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1541,"players":6176,"title":"宵の鳥","utTitle":null,"artist":"n.k feat.影縫英","albums":["宵の鳥","宵的鸟","小鸟","宵之鸟","宵鸟","宵の鳥","宵的鸟","小鸟","宵之鸟","宵鸟","宵の鳥","宵的鸟","小鸟","宵之鸟","宵鸟","宵宵鸟","愤怒的小鸟"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":145,"releaseDate":"20230623","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11541,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24001,"notes":{"total":180,"tap":143,"hold":11,"slide":9,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11541,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24001,"notes":{"total":346,"tap":300,"hold":12,"slide":4,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11541,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"アマリリス","romVersion":24001,"notes":{"total":393,"tap":271,"hold":38,"slide":33,"touch":31,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11541,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"サファ太","romVersion":24001,"notes":{"total":746,"tap":548,"hold":50,"slide":79,"touch":43,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1542,"players":7061,"title":"ここからはじまるプロローグ。 (Kanon Remix)","utTitle":null,"artist":"ああああ/大国奏音","albums":["ここからはじまるプロローグ。 (kanon remix)","从现在开始的序曲","像素福瑞remix","kanon remix","福瑞控remix","福瑞控2","像素福瑞2","圣剑0.5","ここからはじまるプロローグ。 (kanon remix)","从现在开始的序曲","像素福瑞remix","kanon remix","福瑞控remix","福瑞控2","像素福瑞2","圣剑0.5","哪来的福瑞控","福瑞135","福瑞の135秒","圣剑0remix","ここからはじまるプロローグ。 (kanon remix)","从现在开始的序曲","像素福瑞remix","kanon remix","福瑞控remix","福瑞控2","像素福瑞2","圣剑0.5","福瑞的135秒"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20230707","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11542,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24002,"notes":{"total":219,"tap":178,"hold":20,"slide":4,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11542,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24002,"notes":{"total":347,"tap":266,"hold":43,"slide":8,"touch":27,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11542,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":593,"tap":461,"hold":46,"slide":43,"touch":13,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11542,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":24002,"notes":{"total":933,"tap":695,"hold":105,"slide":71,"touch":39,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1543,"players":4458,"title":"モ°ルモ°ル (MZK Skippin' Remix)","utTitle":null,"artist":"sasakure.UK/水野健治","albums":["モ°ルモ°ル (mzk skippin' remix)","毛儿毛儿remix","毛儿毛儿2","晓山瑞希","毛儿毛儿mzk","mkz","モ°ルモ°ル (mzk skippin' remix)","毛儿毛儿remix","毛儿毛儿2","晓山瑞希","毛儿毛儿mzk","mkz","モ°ルモ°ル (mzk skippin' remix)","毛儿毛儿remix","毛儿毛儿2","晓山瑞希","毛儿毛儿mzk","mkz"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":136,"releaseDate":"20230707","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11543,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24002,"notes":{"total":154,"tap":123,"hold":11,"slide":6,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11543,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":24002,"notes":{"total":265,"tap":211,"hold":21,"slide":10,"touch":21,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11543,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":24002,"notes":{"total":427,"tap":224,"hold":103,"slide":26,"touch":18,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11543,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":696,"tap":506,"hold":47,"slide":36,"touch":70,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1544,"players":7333,"title":"VERTeX (rintaro soma deconstructed remix)","utTitle":null,"artist":"Hiro/rintaro soma","albums":["vertex (rintaro soma deconstructed remix)","水神1.5","本草纲目1.5","摩羯","水神remix","vertex (rintaro soma deconstructed remix)","水神1.5","本草纲目1.5","摩羯","水神remix","绝赞:你觉得你能抓得住我吗","水神和水神2融合","常州跳水王张钰泽","vertex (rintaro soma deconstructed remix)","水神1.5","本草纲目1.5","摩羯","水神remix","水神9"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":158,"releaseDate":"20230707","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11544,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24002,"notes":{"total":236,"tap":200,"hold":5,"slide":4,"touch":17,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11544,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24002,"notes":{"total":334,"tap":255,"hold":42,"slide":6,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11544,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":24002,"notes":{"total":618,"tap":436,"hold":56,"slide":42,"touch":47,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11544,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"rintaro soma","romVersion":24002,"notes":{"total":936,"tap":659,"hold":32,"slide":89,"touch":85,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1545,"players":3608,"title":"隠密あんみつDX","utTitle":null,"artist":"カルロス袴田 feat. 日南めい, 古川由彩","albums":["隠密あんみつdx"," 隐密馅密dx","王小桃","隐秘dx","隐密dx","隐密","隐密馅密dx","隐秘馅密dx","隠密あんみつdx"," 隐密馅密dx","王小桃","隐秘dx","隐密dx","隐密","隐密馅密dx","隐秘馅密dx","隠密あんみつdx"," 隐密馅密dx","王小桃","隐秘dx","隐密dx","隐密","隐密馅密dx","隐秘馅密dx"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11545,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24003,"notes":{"total":180,"tap":147,"hold":11,"slide":4,"touch":7,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11545,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24003,"notes":{"total":328,"tap":267,"hold":12,"slide":6,"touch":33,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11545,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":24003,"notes":{"total":531,"tap":344,"hold":54,"slide":38,"touch":19,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11545,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":24003,"notes":{"total":832,"tap":581,"hold":31,"slide":117,"touch":54,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1546,"players":5378,"title":"地球","utTitle":null,"artist":"立秋 feat.ちょこ","albums":["地球","神曲","立秋窜稀","奶龙","\uD83C\uDF0D","dq","地球","神曲","立秋窜稀","奶龙","\uD83C\uDF0D","dq","地球","神曲","立秋窜稀","奶龙","\uD83C\uDF0D","dq","立秋发癫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":79,"releaseDate":"20230804","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11546,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24003,"notes":{"total":193,"tap":156,"hold":10,"slide":6,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11546,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":24003,"notes":{"total":398,"tap":345,"hold":26,"slide":4,"touch":13,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11546,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"鳩ホルダー","romVersion":24003,"notes":{"total":567,"tap":379,"hold":43,"slide":24,"touch":24,"break_":97},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11546,"level_id":3,"level":"14","level_value":14.3,"note_designer":"じゃこレモン","romVersion":24003,"notes":{"total":890,"tap":600,"hold":48,"slide":147,"touch":45,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1547,"players":4105,"title":"Churros Parlor","utTitle":null,"artist":"ピエロ☆マン","albums":["churros parlor","油条客厅","cp","达达利亚","巴哈姆特","churros parlor","油条客厅","cp","达达利亚","巴哈姆特","churros parlor","油条客厅","cp","达达利亚","巴哈姆特"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20230804","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11547,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24003,"notes":{"total":194,"tap":150,"hold":11,"slide":8,"touch":8,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11547,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24003,"notes":{"total":348,"tap":282,"hold":22,"slide":9,"touch":29,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11547,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Luxizhel","romVersion":24003,"notes":{"total":726,"tap":431,"hold":100,"slide":26,"touch":91,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11547,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"翠楼屋","romVersion":24003,"notes":{"total":969,"tap":540,"hold":107,"slide":54,"touch":126,"break_":142},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1548,"players":6229,"title":"超熊猫的周遊記(ワンダーパンダートラベラー)","utTitle":null,"artist":"FANTAGIRAFF","albums":["超熊猫的周遊記(ワンダーパンダートラベラー)","周游记","超雄猫","超熊猫的周游记","超熊猫","超熊猫的周遊記(ワンダーパンダートラベラー)","周游记","超雄猫","超熊猫的周游记","超熊猫","超熊猫的周遊記(ワンダーパンダートラベラー)","周游记","超雄猫","超熊猫的周游记","超熊猫","四川禁曲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":121,"releaseDate":"20230804","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11548,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24003,"notes":{"total":210,"tap":171,"hold":13,"slide":4,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11548,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24003,"notes":{"total":319,"tap":258,"hold":20,"slide":8,"touch":24,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11548,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":24003,"notes":{"total":623,"tap":416,"hold":62,"slide":62,"touch":32,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11548,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"Jack","romVersion":24003,"notes":{"total":1041,"tap":735,"hold":63,"slide":100,"touch":55,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2665,"long":false},{"id":1549,"players":6548,"title":"Trrricksters!!","utTitle":null,"artist":"s-don vs. 翡乃イスカ","albums":["trrricksters!!","黄泉盟主","trrr","tricksters","trrricksters!!","黄泉盟主","trrr","tricksters","非酷非死","trrricksters!!","黄泉盟主","trrr","tricksters"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":155,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11549,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24000,"notes":{"total":250,"tap":208,"hold":14,"slide":6,"touch":10,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11549,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24000,"notes":{"total":369,"tap":295,"hold":20,"slide":12,"touch":31,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11549,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"みそかつ侍","romVersion":24000,"notes":{"total":775,"tap":483,"hold":82,"slide":68,"touch":73,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11549,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太 vs -ZONE- SaFaRi","romVersion":24000,"notes":{"total":1153,"tap":737,"hold":108,"slide":60,"touch":80,"break_":168},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":881,"long":false},{"id":1550,"players":8023,"title":"FLUFFY FLASH","utTitle":null,"artist":"Kobaryo","albums":["fluffy flash","ff14","福利闪光","结城莉玖","ff","fluffy flash","ff14","福利闪光","结城莉玖","ff","朱子墨摔耳机","fluffy flash","ff14","福利闪光","结城莉玖","ff"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":252,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11550,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24001,"notes":{"total":228,"tap":184,"hold":12,"slide":9,"touch":15,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11550,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":24001,"notes":{"total":408,"tap":318,"hold":33,"slide":16,"touch":35,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11550,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":24001,"notes":{"total":659,"tap":463,"hold":103,"slide":39,"touch":34,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11550,"level_id":3,"level":"14","level_value":14.4,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":988,"tap":646,"hold":102,"slide":111,"touch":104,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2346,"long":false},{"id":1551,"players":3909,"title":"STARRED HEART","utTitle":null,"artist":"曲:広川恵一 (MONACA)/歌:オンゲキシューターズ","albums":["starred heart","星心","starred heart","星心","starred heart","星心"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":140,"releaseDate":"20230901","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11551,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24003,"notes":{"total":150,"tap":112,"hold":12,"slide":4,"touch":12,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11551,"level_id":1,"level":"5","level_value":5.8,"note_designer":"","romVersion":24003,"notes":{"total":233,"tap":186,"hold":14,"slide":9,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11551,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"鳩ホルダー","romVersion":24003,"notes":{"total":379,"tap":217,"hold":19,"slide":87,"touch":41,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11551,"level_id":3,"level":"12","level_value":12.5,"note_designer":"アマリリス","romVersion":24003,"notes":{"total":482,"tap":299,"hold":19,"slide":109,"touch":20,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2352,"long":false},{"id":1552,"players":4890,"title":"Y.Y.Y.計画!!!!","utTitle":null,"artist":"曲:烏屋茶房/歌:R.B.P. [九條 楓(CV:佳村 はるか)、逢坂 茜(CV:大空 直美)、珠洲島 有栖(CV:長縄 まりあ)]","albums":["y.y.y.計画!!!!","计画","yyy","yyy计画","yyy计划","y.y.y.計画!!!!","计画","yyy","yyy计画","yyy计划","y.y.y.計画!!!!","计画","yyy","yyy计画","yyy计划"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":186,"releaseDate":"20230901","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11552,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24003,"notes":{"total":218,"tap":171,"hold":12,"slide":7,"touch":8,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11552,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24003,"notes":{"total":392,"tap":330,"hold":19,"slide":9,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11552,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":24003,"notes":{"total":626,"tap":464,"hold":42,"slide":36,"touch":35,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11552,"level_id":3,"level":"13","level_value":13.3,"note_designer":"鳩ホルダー","romVersion":24003,"notes":{"total":947,"tap":529,"hold":41,"slide":108,"touch":111,"break_":158},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2236,"long":false},{"id":1553,"players":9268,"title":"Last Kingdom","utTitle":null,"artist":"USAO","albums":["last kingdom","小lk","luke","lk","最后王国","最后的王国","last kingdom","小lk","luke","lk","最后王国","最后的王国","last kingdom","小lk","luke","lk","最后王国","最后的王国","终末帝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":150,"releaseDate":"20230901","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11553,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24003,"notes":{"total":206,"tap":157,"hold":13,"slide":6,"touch":15,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11553,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24003,"notes":{"total":327,"tap":261,"hold":21,"slide":8,"touch":29,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11553,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":24003,"notes":{"total":632,"tap":452,"hold":74,"slide":37,"touch":9,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11553,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":24003,"notes":{"total":851,"tap":562,"hold":98,"slide":64,"touch":53,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2221,"long":false},{"id":1554,"players":7986,"title":"LAMIA","utTitle":null,"artist":"BlackY","albums":["lamia","战斗服宵崎奏","刹那","刹那拉面","拉米亚","拉弥亚","lamia","战斗服宵崎奏","刹那","刹那拉面","拉米亚","拉弥亚","lamia","战斗服宵崎奏","刹那","刹那拉面","拉米亚","拉弥亚"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":199,"releaseDate":"20230901","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11554,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24003,"notes":{"total":264,"tap":212,"hold":17,"slide":7,"touch":21,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11554,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24003,"notes":{"total":363,"tap":306,"hold":34,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11554,"level_id":2,"level":"13","level_value":13.0,"note_designer":"鳩ホルダー","romVersion":24003,"notes":{"total":759,"tap":483,"hold":64,"slide":33,"touch":35,"break_":144},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11554,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"譜面ボーイズからの挑戦状","romVersion":24003,"notes":{"total":999,"tap":712,"hold":65,"slide":67,"touch":56,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2400,"long":false},{"id":1555,"players":7335,"title":"ヒバリ","utTitle":null,"artist":"HIMEHINA","albums":["ヒバリ","俩个羽毛球","两个羽毛球","羽毛球","姬雏鸟","hibari","ヒバリ","俩个羽毛球","两个羽毛球","羽毛球","姬雏鸟","hibari","ヒバリ","俩个羽毛球","两个羽毛球","羽毛球","姬雏鸟","hibari","云雀"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":140,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11555,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":103,"tap":75,"hold":9,"slide":5,"touch":13,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11555,"level_id":1,"level":"5","level_value":5.0,"note_designer":"","romVersion":24000,"notes":{"total":220,"tap":164,"hold":19,"slide":6,"touch":22,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11555,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":24000,"notes":{"total":398,"tap":299,"hold":52,"slide":20,"touch":10,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11555,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン","romVersion":24000,"notes":{"total":649,"tap":469,"hold":59,"slide":41,"touch":52,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2096,"long":false},{"id":1556,"players":7118,"title":"Hello, Hologram","utTitle":null,"artist":"HIMEHINA","albums":["hello, hologram","hello hologram","管人跳舞2","hologram","hh","你好全息图像","全息影像","全息图像","你好全息像","hello,hologram","hello,hologram","你好holo","hello, hologram","hello hologram","管人跳舞2","hologram","hh","你好全息图像","全息影像","全息图像","你好全息像","hello,hologram","hello,hologram","你好holo","hello, hologram","hello hologram","管人跳舞2","hologram","hh","你好全息图像","全息影像","全息图像","你好全息像","hello,hologram","hello,hologram","你好holo"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":181,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11556,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24000,"notes":{"total":212,"tap":186,"hold":8,"slide":6,"touch":10,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11556,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24000,"notes":{"total":335,"tap":280,"hold":27,"slide":6,"touch":15,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11556,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":24000,"notes":{"total":550,"tap":382,"hold":83,"slide":37,"touch":16,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11556,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ものくろっく","romVersion":24000,"notes":{"total":897,"tap":570,"hold":88,"slide":73,"touch":66,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1557,"players":5253,"title":"不機嫌なスリーカード","utTitle":{"111557":"[蛸]不機嫌なスリーカード"},"artist":"HIMEHINA","albums":["不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主","不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主","不機嫌なスリーカード","心烦意乱three card","不机嫌","欢乐斗地主"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":195,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":25006,"dx":{"0":{"id":11557,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":112,"tap":91,"hold":9,"slide":2,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11557,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24000,"notes":{"total":314,"tap":244,"hold":23,"slide":10,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11557,"level_id":2,"level":"10","level_value":10.5,"note_designer":"翠楼屋","romVersion":24000,"notes":{"total":431,"tap":302,"hold":77,"slide":11,"touch":6,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11557,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":24000,"notes":{"total":559,"tap":441,"hold":27,"slide":41,"touch":13,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111557":{"id":111557,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25006,"notes":{"total":693,"tap":467,"hold":130,"slide":16,"touch":18,"break_":62},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1558,"players":14837,"title":"神っぽいな","utTitle":null,"artist":"ピノキオピー","albums":["神っぽいな","像神一样呐","像神一样","神","像神一样啊","神呐","神っぽいな","像神一样呐","像神一样","神","像神一样啊","神呐","神っぽいな","像神一样呐","像神一样","神","像神一样啊","神呐","黑化初音","风拂过之处"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":142,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11558,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":95,"tap":72,"hold":11,"slide":4,"touch":7,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11558,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24000,"notes":{"total":228,"tap":172,"hold":13,"slide":5,"touch":28,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11558,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"畳返し","romVersion":24000,"notes":{"total":324,"tap":236,"hold":52,"slide":15,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11558,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":24000,"notes":{"total":486,"tap":363,"hold":34,"slide":54,"touch":23,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11558,"level_id":4,"level":"13","level_value":13.3,"note_designer":"サファ太","romVersion":24000,"notes":{"total":563,"tap":442,"hold":39,"slide":48,"touch":9,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2263,"long":false},{"id":1559,"players":8841,"title":"魔法少女とチョコレゐト","utTitle":null,"artist":"ピノキオピー","albums":["魔法少女とチョコレゐト","巧克力2","魔法少女与巧克力","腐外道2","魔法少女巧克力","巧克力","马猴烧酒和巧克力","魔法少女和巧克力","魔法少女","魔法少女とチョコレゐト","巧克力2","魔法少女与巧克力","腐外道2","魔法少女巧克力","巧克力","马猴烧酒和巧克力","魔法少女和巧克力","魔法少女","魔法少女とチョコレゐト","巧克力2","魔法少女与巧克力","腐外道2","魔法少女巧克力","巧克力","马猴烧酒和巧克力","魔法少女和巧克力","魔法少女"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11559,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":158,"tap":122,"hold":15,"slide":8,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11559,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24000,"notes":{"total":292,"tap":187,"hold":29,"slide":10,"touch":32,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11559,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":24000,"notes":{"total":370,"tap":255,"hold":55,"slide":29,"touch":10,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11559,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Redarrow","romVersion":24000,"notes":{"total":620,"tap":385,"hold":80,"slide":86,"touch":42,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2360,"long":false},{"id":1560,"players":6894,"title":"阿修羅ちゃん","utTitle":null,"artist":"Ado","albums":["阿修羅ちゃん","阿修罗酱","阿修罗","阿修羅ちゃん","阿修罗酱","阿修罗","阿修羅ちゃん","阿修罗酱","阿修罗"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":156,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11560,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":142,"tap":111,"hold":10,"slide":3,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11560,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24000,"notes":{"total":290,"tap":232,"hold":16,"slide":8,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11560,"level_id":2,"level":"10","level_value":10.0,"note_designer":"みそかつ侍","romVersion":24000,"notes":{"total":486,"tap":343,"hold":25,"slide":32,"touch":50,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11560,"level_id":3,"level":"13","level_value":13.2,"note_designer":"カマボコ君","romVersion":24000,"notes":{"total":711,"tap":498,"hold":10,"slide":116,"touch":18,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1561,"players":5760,"title":"おとせサンダー","utTitle":null,"artist":"ぼっちぼろまる","albums":["おとせサンダー","otosethunder","雷落","落下雷霆","落雷","司空震","おとせサンダー","otosethunder","雷落","落下雷霆","落雷","司空震","おとせサンダー","otosethunder","雷落","落下雷霆","落雷","司空震"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":177,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11561,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":149,"tap":115,"hold":9,"slide":4,"touch":20,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11561,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24000,"notes":{"total":340,"tap":292,"hold":15,"slide":11,"touch":15,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11561,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"翠楼屋","romVersion":24000,"notes":{"total":568,"tap":426,"hold":54,"slide":27,"touch":17,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11561,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":24000,"notes":{"total":727,"tap":441,"hold":50,"slide":116,"touch":78,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11561,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":24000,"notes":{"total":976,"tap":754,"hold":29,"slide":120,"touch":44,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1562,"players":6416,"title":"ロウワー","utTitle":null,"artist":"ぬゆり","albums":["ロウワー","mzk二箱","堕落眼界","犹大","mzk2","lower","蛇女","ロウワー","mzk二箱","堕落眼界","犹大","mzk2","lower","蛇女","ロウワー","mzk二箱","堕落眼界","犹大","mzk2","lower","蛇女"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":132,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11562,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":113,"tap":87,"hold":10,"slide":4,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11562,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":24000,"notes":{"total":249,"tap":180,"hold":33,"slide":6,"touch":20,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11562,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"翠楼屋","romVersion":24000,"notes":{"total":384,"tap":283,"hold":33,"slide":29,"touch":25,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11562,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":24000,"notes":{"total":573,"tap":366,"hold":73,"slide":68,"touch":44,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11562,"level_id":4,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":24000,"notes":{"total":759,"tap":535,"hold":66,"slide":99,"touch":33,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2512,"long":false},{"id":1563,"players":5926,"title":"キャットラビング","utTitle":null,"artist":"香椎モイミ","albums":["キャットラビング","白毛红瞳猫娘","香椎","爱猫tv","cat loving","爱猫","キャットラビング","白毛红瞳猫娘","香椎","爱猫tv","cat loving","爱猫","キャットラビング","白毛红瞳猫娘","香椎","爱猫tv","cat loving","爱猫"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":163,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11563,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":115,"tap":78,"hold":10,"slide":9,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11563,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24000,"notes":{"total":257,"tap":185,"hold":20,"slide":12,"touch":26,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11563,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"畳返し","romVersion":24000,"notes":{"total":368,"tap":244,"hold":62,"slide":18,"touch":32,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11563,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"アマリリス","romVersion":24000,"notes":{"total":625,"tap":399,"hold":38,"slide":54,"touch":106,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2305,"long":false},{"id":1564,"players":7116,"title":"リスペク風神","utTitle":null,"artist":"ビートまりおとまろん","albums":["リスペク風神","respec fujin","东方风神","东风风神","东方风神录","东方电车","瑞思拜风神","respect fujin","风神","dx风神","小风神","风神2","墨晨","车万风神","respect风神","リスペク風神","respec fujin","东方风神","东风风神","东方风神录","东方电车","瑞思拜风神","respect fujin","风神","dx风神","小风神","风神2","墨晨","车万风神","respect风神","发牌","リスペク風神","respec fujin","东方风神","东风风神","东方风神录","东方电车","瑞思拜风神","respect fujin","风神","dx风神","小风神","风神2","墨晨","车万风神","respect风神"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":135,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11564,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24000,"notes":{"total":142,"tap":98,"hold":10,"slide":4,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11564,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24000,"notes":{"total":283,"tap":212,"hold":24,"slide":12,"touch":24,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11564,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"みそかつ侍","romVersion":24000,"notes":{"total":550,"tap":377,"hold":42,"slide":74,"touch":21,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11564,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":24000,"notes":{"total":855,"tap":611,"hold":45,"slide":59,"touch":87,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1565,"players":7675,"title":"Let you DIVE!","utTitle":null,"artist":"HARDCORE TANO*C & エリザベス(CV:大西沙織)","albums":["let you dive!","让你潜","let you dive","伊丽莎白","让你潜水","wacca","lyd","让你落","let you dive!","让你潜","let you dive","伊丽莎白","让你潜水","wacca","lyd","让你落","let you dive!","让你潜","let you dive","伊丽莎白","让你潜水","wacca","lyd","让你落"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":185,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11565,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23000,"notes":{"total":136,"tap":106,"hold":5,"slide":10,"touch":14,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11565,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":23000,"notes":{"total":324,"tap":220,"hold":28,"slide":12,"touch":56,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11565,"level_id":2,"level":"11","level_value":11.5,"note_designer":"翠楼屋","romVersion":23000,"notes":{"total":522,"tap":405,"hold":46,"slide":16,"touch":23,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11565,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"じゃこレモン","romVersion":23000,"notes":{"total":596,"tap":391,"hold":53,"slide":67,"touch":46,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2381,"long":false},{"id":1566,"players":10522,"title":"Knight Rider","utTitle":null,"artist":"USAO","albums":["knight rider","骑乘","骑骑","骑骑士士","骑士骑骑士","kr","骑士骑士","knight rider","骑乘","骑骑","骑骑士士","骑士骑骑士","kr","骑士骑士","累死铛铛","knight rider","骑乘","骑骑","骑骑士士","骑士骑骑士","kr","骑士骑士"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11566,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23000,"notes":{"total":232,"tap":207,"hold":10,"slide":4,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11566,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":23000,"notes":{"total":421,"tap":373,"hold":4,"slide":10,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11566,"level_id":2,"level":"11","level_value":11.2,"note_designer":"カマボコ君","romVersion":23000,"notes":{"total":573,"tap":378,"hold":94,"slide":55,"touch":17,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11566,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ロシェ@ペンギン","romVersion":23000,"notes":{"total":876,"tap":569,"hold":38,"slide":175,"touch":59,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2382,"long":false},{"id":1567,"players":1154,"title":"I’m Here (feat. Merry Kirk-Holmes)","utTitle":null,"artist":"大谷智哉「ソニックフロンティア」","albums":["i’m here (feat. merry kirk-holmes)","im here","我在这","imhere","索尼克未知边境","我在这里","i’m here (feat. merry kirk-holmes)","im here","我在这","imhere","索尼克未知边境","我在这里","i’m here (feat. merry kirk-holmes)","im here","我在这","imhere","索尼克未知边境","我在这里"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":187,"releaseDate":"20231124","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11567,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24005,"notes":{"total":171,"tap":132,"hold":12,"slide":8,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11567,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24005,"notes":{"total":316,"tap":264,"hold":22,"slide":12,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11567,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":24005,"notes":{"total":531,"tap":359,"hold":78,"slide":34,"touch":22,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11567,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":741,"tap":538,"hold":32,"slide":118,"touch":12,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1568,"players":14844,"title":"INTERNET OVERDOSE","utTitle":null,"artist":"Aiobahn feat. KOTOKO","albums":["internet overdose","overdose","超天酱","小天使请安","玉玉症","管人","kotoko","地雷女","io","我有玉玉症","daisuke","主播女孩重度依赖","网络过量","我有抑郁症","升天","主播女孩","internet overdose","overdose","超天酱","小天使请安","玉玉症","管人","kotoko","地雷女","io","我有玉玉症","daisuke","主播女孩重度依赖","网络过量","我有抑郁症","升天","主播女孩","化学哥拆机","internet overdose","overdose","超天酱","小天使请安","玉玉症","管人","kotoko","地雷女","io","我有玉玉症","daisuke","主播女孩重度依赖","网络过量","我有抑郁症","升天","主播女孩","土豆地雷","74块钱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":163,"releaseDate":"20230323","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23000,"dxRomVersion":23000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11568,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23000,"notes":{"total":171,"tap":133,"hold":16,"slide":6,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11568,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":23000,"notes":{"total":356,"tap":273,"hold":35,"slide":6,"touch":29,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11568,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ロシェ@ペンギン","romVersion":23000,"notes":{"total":538,"tap":328,"hold":78,"slide":36,"touch":61,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11568,"level_id":3,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":23000,"notes":{"total":822,"tap":517,"hold":78,"slide":109,"touch":13,"break_":105},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2388,"long":false},{"id":1569,"players":2145,"title":"魂のルフラン","utTitle":null,"artist":"高橋洋子 [covered by 光吉猛修]","albums":["魂のルフラン","魂之轮回","魂のルフラン","魂之轮回","魂のルフラン","魂之轮回"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":130,"releaseDate":"20230401","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11569,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24001,"notes":{"total":107,"tap":76,"hold":6,"slide":2,"touch":20,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11569,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24001,"notes":{"total":207,"tap":154,"hold":17,"slide":4,"touch":22,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11569,"level_id":2,"level":"9","level_value":9.5,"note_designer":"翠楼屋","romVersion":24001,"notes":{"total":299,"tap":188,"hold":29,"slide":48,"touch":6,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11569,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":468,"tap":317,"hold":21,"slide":92,"touch":11,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1570,"players":1910,"title":"Shooting Shower~DANCE TIME(シンディ)~","utTitle":null,"artist":"Sammy Sound Team","albums":["shooting shower~dance time(シンディ)~","disc up","好闻","爆炸头","shooting shower~dance time(シンディ)~","disc up","好闻","爆炸头","shooting shower~dance time(シンディ)~","disc up","好闻","爆炸头"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":149,"releaseDate":"20230401","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11570,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24001,"notes":{"total":146,"tap":110,"hold":10,"slide":4,"touch":8,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11570,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24001,"notes":{"total":225,"tap":175,"hold":17,"slide":4,"touch":21,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11570,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":312,"tap":205,"hold":40,"slide":30,"touch":12,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11570,"level_id":3,"level":"13","level_value":13.0,"note_designer":"DANCE TIME(サファ太)","romVersion":24001,"notes":{"total":552,"tap":389,"hold":27,"slide":77,"touch":19,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1571,"players":5467,"title":"Lights of Muse","utTitle":null,"artist":"Ayatsugu_Otowa","albums":["lights of muse","暮色的光","lom","布若","卡姿兰大眼睛","喵斯之光","喵斯光","lights of muse","暮色的光","lom","布若","卡姿兰大眼睛","喵斯之光","喵斯光","lights of muse","暮色的光","lom","布若","卡姿兰大眼睛","喵斯之光","喵斯光"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11571,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23001,"notes":{"total":126,"tap":99,"hold":10,"slide":4,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11571,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":23001,"notes":{"total":283,"tap":229,"hold":12,"slide":10,"touch":22,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11571,"level_id":2,"level":"10","level_value":10.0,"note_designer":"きょむりん","romVersion":23001,"notes":{"total":460,"tap":342,"hold":64,"slide":23,"touch":12,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11571,"level_id":3,"level":"13","level_value":13.2,"note_designer":"カマボコ君","romVersion":23001,"notes":{"total":652,"tap":498,"hold":25,"slide":91,"touch":7,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":114,"players":4300,"title":"Space Harrier Main Theme [Reborn]","utTitle":{"110114":"[耐]Space Harrier Main Theme [Reborn]"},"artist":"佐野 信義「スペースハリアー」","albums":["space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利","space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利","space harrier main theme [reborn]","太空","太空哈姆","太空蛤蜊","太空哈利"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":125,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24015,"dxRomVersion":0,"sdRomVersion":11002,"utRomVersion":24015,"dx":{},"sd":{"0":{"id":114,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":11002,"notes":{"total":166,"tap":148,"hold":4,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":114,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":11002,"notes":{"total":186,"tap":151,"hold":24,"slide":10,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":114,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"譜面-100号","romVersion":11002,"notes":{"total":208,"tap":47,"hold":147,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":114,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"チャン@DP皆伝","romVersion":11002,"notes":{"total":464,"tap":421,"hold":23,"slide":6,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110114":{"id":110114,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24015,"notes":{"total":1490,"tap":1476,"hold":0,"slide":7,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1572,"players":8133,"title":"tape/stop/night","utTitle":null,"artist":"Sugar & Co.","albums":["tape/stop/night","胶停夜","国产弱虫","tsn","强虫","磁带暂停夜晚","tape stop night","中国强\uD83D\uDC1B","中国虫","磁带机黑胶","磁带机","带停夜","中国强虫","弱虫2","暮色电台","中国弱虫","中文歌","tape/stop/night","胶停夜","国产弱虫","tsn","强虫","磁带暂停夜晚","tape stop night","中国强\uD83D\uDC1B","中国虫","磁带机黑胶","磁带机","带停夜","中国强虫","弱虫2","暮色电台","中国弱虫","中文歌","tape/stop/night","胶停夜","国产弱虫","tsn","强虫","磁带暂停夜晚","tape stop night","中国强\uD83D\uDC1B","中国虫","磁带机黑胶","磁带机","带停夜","中国强虫","弱虫2","暮色电台","中国弱虫","中文歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":115,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11572,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":23001,"notes":{"total":133,"tap":101,"hold":10,"slide":8,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11572,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":23001,"notes":{"total":242,"tap":182,"hold":16,"slide":12,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11572,"level_id":2,"level":"10","level_value":10.2,"note_designer":"みそかつ侍","romVersion":23001,"notes":{"total":416,"tap":254,"hold":50,"slide":46,"touch":50,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11572,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":563,"tap":357,"hold":15,"slide":163,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1573,"players":9463,"title":"Final Step!","utTitle":null,"artist":"Lime","albums":["final step!","天天酷跑","fs","终步","最后一步","final step!","天天酷跑","fs","终步","最后一步","final step!","天天酷跑","fs","终步","最后一步"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11573,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":23001,"notes":{"total":189,"tap":154,"hold":11,"slide":5,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11573,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":23001,"notes":{"total":344,"tap":250,"hold":23,"slide":16,"touch":53,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11573,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":23001,"notes":{"total":576,"tap":422,"hold":68,"slide":51,"touch":16,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11573,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":23001,"notes":{"total":859,"tap":617,"hold":40,"slide":95,"touch":40,"break_":67},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1574,"players":3802,"title":"The 90's Decision","utTitle":null,"artist":"MYUKKE.","albums":["the 90's decision","90秒","90s","the 90's decision","90秒","90s","the 90's decision","90秒","90s"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":128,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11574,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":23001,"notes":{"total":160,"tap":133,"hold":10,"slide":4,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11574,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":23001,"notes":{"total":291,"tap":251,"hold":11,"slide":12,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11574,"level_id":2,"level":"11","level_value":11.2,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":526,"tap":337,"hold":73,"slide":42,"touch":22,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11574,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":23001,"notes":{"total":694,"tap":490,"hold":58,"slide":69,"touch":12,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1575,"players":9829,"title":"僕の和風本当上手","utTitle":null,"artist":"ボス","albums":["僕の和風本当上手","上天","bokuno和风本当上手","我的和风非常厉害","和风","本当上手","和风本当上手","僕の日本语本当上手","唢呐","上手","僕の和風本当上手","上天","bokuno和风本当上手","我的和风非常厉害","和风","本当上手","和风本当上手","僕の日本语本当上手","唢呐","上手","僕の和風本当上手","上天","bokuno和风本当上手","我的和风非常厉害","和风","本当上手","和风本当上手","僕の日本语本当上手","唢呐","上手"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":120,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11575,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":23001,"notes":{"total":211,"tap":169,"hold":14,"slide":4,"touch":21,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11575,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":23001,"notes":{"total":404,"tap":336,"hold":24,"slide":10,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11575,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":23001,"notes":{"total":650,"tap":477,"hold":57,"slide":46,"touch":45,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11575,"level_id":3,"level":"14","level_value":14.0,"note_designer":"僕の檸檬本当上手","romVersion":23001,"notes":{"total":1173,"tap":1007,"hold":23,"slide":73,"touch":11,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1576,"players":14524,"title":"Cthugha","utTitle":null,"artist":"USAO","albums":["cthugha","火球","火神2","火神","大火球","\uD83C\uDF83","炎头","古神","克图格亚","赛图格亚","南瓜头","cthugha","火球","火神2","火神","大火球","\uD83C\uDF83","炎头","古神","克图格亚","赛图格亚","南瓜头","和我贫瘠请补药开火球","cthugha","火球","火神2","火神","大火球","\uD83C\uDF83","炎头","古神","克图格亚","赛图格亚","南瓜头","岩浆怪"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":213,"releaseDate":"20230414","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":23001,"dxRomVersion":23001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11576,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":23001,"notes":{"total":273,"tap":232,"hold":16,"slide":4,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11576,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":23001,"notes":{"total":473,"tap":384,"hold":20,"slide":17,"touch":32,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11576,"level_id":2,"level":"12","level_value":12.5,"note_designer":"翠楼屋","romVersion":23001,"notes":{"total":759,"tap":538,"hold":80,"slide":49,"touch":20,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11576,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Jack","romVersion":23001,"notes":{"total":1168,"tap":809,"hold":100,"slide":128,"touch":50,"break_":81},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2547,"long":false},{"id":1577,"players":2939,"title":"はんぶんこ","utTitle":{"111577":"[両]はんぶんこ"},"artist":"三枝明那","albums":["はんぶんこ","另一半","三枝明那","半分子","はんぶんこ","另一半","三枝明那","半分子","はんぶんこ","另一半","三枝明那","半分子"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":124,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":24511,"dx":{"0":{"id":11577,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":24002,"notes":{"total":125,"tap":99,"hold":9,"slide":6,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11577,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":24002,"notes":{"total":246,"tap":197,"hold":25,"slide":6,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11577,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":281,"tap":192,"hold":21,"slide":38,"touch":20,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11577,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Luxizhel","romVersion":24002,"notes":{"total":377,"tap":197,"hold":15,"slide":77,"touch":28,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111577":{"id":111577,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24511,"notes":{"total":509,"tap":354,"hold":42,"slide":64,"touch":37,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1578,"players":9269,"title":"PUPA","utTitle":null,"artist":"モリモリあつし","albums":["pupa","\uD83E\uDD8B","蓝的蝶","拉瓦2","大蓝闪蝶","噗趴","蝶魔王","噗啪","扑爬","pupa","\uD83E\uDD8B","蓝的蝶","拉瓦2","大蓝闪蝶","噗趴","蝶魔王","噗啪","扑爬","pupa","\uD83E\uDD8B","蓝的蝶","拉瓦2","大蓝闪蝶","噗趴","蝶魔王","噗啪","扑爬","东方树叶茉莉花茶"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":202,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11578,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24004,"notes":{"total":221,"tap":177,"hold":16,"slide":4,"touch":14,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11578,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24004,"notes":{"total":325,"tap":253,"hold":28,"slide":11,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11578,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"鳩ホルダー","romVersion":24004,"notes":{"total":666,"tap":457,"hold":61,"slide":52,"touch":43,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11578,"level_id":3,"level":"14","level_value":14.4,"note_designer":"じゃこレモン","romVersion":24004,"notes":{"total":964,"tap":714,"hold":75,"slide":76,"touch":26,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":677,"long":false},{"id":1580,"players":1906,"title":"解けないように","utTitle":null,"artist":"KIHOW from MYTH & ROID","albums":["解けないように","解","为不被解开","为了不被解开","愿这绳结不被解开","黑化灵梦","解けないように","解","为不被解开","为了不被解开","愿这绳结不被解开","黑化灵梦","解けないように","解","为不被解开","为了不被解开","愿这绳结不被解开","黑化灵梦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":112,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11580,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24004,"notes":{"total":169,"tap":140,"hold":14,"slide":3,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11580,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24004,"notes":{"total":299,"tap":235,"hold":29,"slide":3,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11580,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"アマリリス","romVersion":24004,"notes":{"total":392,"tap":272,"hold":37,"slide":22,"touch":20,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11580,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":24004,"notes":{"total":628,"tap":479,"hold":30,"slide":69,"touch":28,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1583,"players":7183,"title":"インターネットサバイバー","utTitle":null,"artist":"あやぽんず* feat.ビートまりお × まろん","albums":["インターネットサバイバー","网瘾二小姐","兰","东方超天酱","互联网幸存者","网络幸存者","互联网生存者","东方互联网","芙兰朵露重度依赖","东方女孩重度依赖","internet survivor","芙兰朵露","生存者","インターネットサバイバー","网瘾二小姐","兰","东方超天酱","互联网幸存者","网络幸存者","互联网生存者","东方互联网","芙兰朵露重度依赖","东方女孩重度依赖","internet survivor","芙兰朵露","生存者","インターネットサバイバー","网瘾二小姐","兰","东方超天酱","互联网幸存者","网络幸存者","互联网生存者","东方互联网","芙兰朵露重度依赖","东方女孩重度依赖","internet survivor","芙兰朵露","生存者"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":172,"releaseDate":"20230526","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11583,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24001,"notes":{"total":146,"tap":118,"hold":12,"slide":3,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11583,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24001,"notes":{"total":299,"tap":235,"hold":21,"slide":11,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11583,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":24001,"notes":{"total":519,"tap":345,"hold":88,"slide":50,"touch":12,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11583,"level_id":3,"level":"13","level_value":13.4,"note_designer":"サファ太","romVersion":24001,"notes":{"total":764,"tap":472,"hold":50,"slide":76,"touch":44,"break_":122},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2523,"long":false},{"id":1584,"players":7236,"title":"コンティニュー! feat. 藍月なくる","utTitle":null,"artist":"lapix","albums":["コンティニュー! feat. 藍月なくる","阿诺内","continue","禁漫娘","继续!","继续","蓝月","コンティニュー! feat. 藍月なくる","阿诺内","continue","禁漫娘","继续!","继续","蓝月","贪玩欢悦","コンティニュー! feat. 藍月なくる","阿诺内","continue","禁漫娘","继续!","继续","蓝月","贪玩蓝月"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11584,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24001,"notes":{"total":211,"tap":167,"hold":12,"slide":6,"touch":19,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11584,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24001,"notes":{"total":324,"tap":249,"hold":33,"slide":11,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11584,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":24001,"notes":{"total":553,"tap":401,"hold":49,"slide":21,"touch":27,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11584,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"みそかつ侍","romVersion":24001,"notes":{"total":897,"tap":606,"hold":60,"slide":80,"touch":80,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1585,"players":4181,"title":"Sunday Night feat Kanata.N","utTitle":null,"artist":"Mameyudoufu","albums":["sunday night feat kanata.n","周日夜晚","星期日夜晚","像素儿子","带孩子","sunday night feat kanata.n","周日夜晚","星期日夜晚","像素儿子","带孩子","小登","抱奈绪","抱抱奈绪","sunday night feat kanata.n","周日夜晚","星期日夜晚","像素儿子","带孩子","周日夜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":143,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11585,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24001,"notes":{"total":152,"tap":102,"hold":12,"slide":4,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11585,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24001,"notes":{"total":270,"tap":207,"hold":14,"slide":17,"touch":25,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11585,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"みそかつ侍","romVersion":24001,"notes":{"total":449,"tap":260,"hold":112,"slide":28,"touch":22,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11585,"level_id":3,"level":"13","level_value":13.5,"note_designer":"ものくろっく","romVersion":24001,"notes":{"total":610,"tap":431,"hold":59,"slide":57,"touch":30,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1586,"players":4327,"title":"PERSONA feat. PANXI","utTitle":null,"artist":"rejection","albums":["persona feat. panxi","偏铝酸钠","p5","persona","女神异闻录5","女神异闻录","persona feat. panxi","偏铝酸钠","p5","persona","女神异闻录5","女神异闻录","persona feat. panxi","偏铝酸钠","p5","persona","女神异闻录5","女神异闻录"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11586,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24001,"notes":{"total":186,"tap":156,"hold":12,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11586,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24001,"notes":{"total":325,"tap":254,"hold":26,"slide":10,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11586,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":502,"tap":314,"hold":94,"slide":63,"touch":14,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11586,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":24001,"notes":{"total":733,"tap":532,"hold":58,"slide":104,"touch":11,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1587,"players":5475,"title":"Halfway(>∀<)","utTitle":null,"artist":"Blacklolita","albums":["halfway(>∀<)","爆能器","halfway","(>▽<)","行百里者半九十","半路","(>∀<)","halfway(>∀<)","爆能器","halfway","(>▽<)","行百里者半九十","半路","(>∀<)","halfway(>∀<)","爆能器","halfway","(>▽<)","行百里者半九十","半路","(>∀<)"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11587,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24001,"notes":{"total":232,"tap":194,"hold":8,"slide":6,"touch":8,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11587,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24001,"notes":{"total":375,"tap":314,"hold":19,"slide":14,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11587,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":560,"tap":347,"hold":124,"slide":51,"touch":26,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11587,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":24001,"notes":{"total":900,"tap":602,"hold":73,"slide":101,"touch":72,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1588,"players":5021,"title":"Complex Mind","utTitle":null,"artist":"YUKIYANAGI","albums":["complex mind","复合思维","复杂思维","cm","complex mind","复合思维","复杂思维","cm","complex mind","复合思维","复杂思维","cm"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11588,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24001,"notes":{"total":210,"tap":159,"hold":9,"slide":4,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11588,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24001,"notes":{"total":360,"tap":296,"hold":17,"slide":16,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11588,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":589,"tap":415,"hold":101,"slide":37,"touch":27,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11588,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":24001,"notes":{"total":882,"tap":684,"hold":39,"slide":63,"touch":28,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1589,"players":4525,"title":"DROPS feat. Such","utTitle":null,"artist":"Zekk & poplavor","albums":["drops feat. such","drops","drops feat. such","drops","drops feat. such","drops"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":120,"releaseDate":"20230512","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11589,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24001,"notes":{"total":165,"tap":135,"hold":10,"slide":4,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11589,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24001,"notes":{"total":275,"tap":231,"hold":12,"slide":9,"touch":13,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11589,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":24001,"notes":{"total":511,"tap":361,"hold":68,"slide":45,"touch":27,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11589,"level_id":3,"level":"13","level_value":13.2,"note_designer":"シチミヘルツ","romVersion":24001,"notes":{"total":648,"tap":473,"hold":57,"slide":77,"touch":21,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1590,"players":7385,"title":"あつすぎの歌","utTitle":null,"artist":"からめる","albums":["あつすぎの歌","hero死了","最热之歌","热死了","夏热歌","热死了之歌","好热","好热歌","太热了","夏热之歌","半夏","あつすぎの歌","hero死了","最热之歌","热死了","夏热歌","热死了之歌","好热","好热歌","太热了","夏热之歌","半夏","あつすぎの歌","hero死了","最热之歌","热死了","夏热歌","热死了之歌","好热","好热歌","太热了","夏热之歌","半夏","阿紫一"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":180,"releaseDate":"20230707","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11590,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24003,"notes":{"total":204,"tap":146,"hold":9,"slide":4,"touch":6,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11590,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24003,"notes":{"total":315,"tap":261,"hold":30,"slide":8,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11590,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":24003,"notes":{"total":518,"tap":269,"hold":47,"slide":29,"touch":9,"break_":164},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11590,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":24003,"notes":{"total":806,"tap":345,"hold":53,"slide":83,"touch":83,"break_":242},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1591,"players":9805,"title":"ULTRA SYNERGY MATRIX","utTitle":null,"artist":"Tanchiky","albums":["ultra synergy matrix","usm","手撕猫娘","esm2","ultra synergy matrix","usm","手撕猫娘","esm2","比纺星高","ultra synergy matrix","usm","手撕猫娘","esm2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20230707","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11591,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24003,"notes":{"total":213,"tap":174,"hold":6,"slide":4,"touch":8,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11591,"level_id":1,"level":"7","level_value":7.4,"note_designer":"","romVersion":24003,"notes":{"total":333,"tap":260,"hold":32,"slide":6,"touch":29,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11591,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":24003,"notes":{"total":519,"tap":336,"hold":44,"slide":51,"touch":54,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11591,"level_id":3,"level":"14","level_value":14.0,"note_designer":"サファ太","romVersion":24003,"notes":{"total":906,"tap":657,"hold":24,"slide":64,"touch":61,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1592,"players":7411,"title":"花となれ","utTitle":null,"artist":"雄之助 feat.音楽的同位体 可不(KAFU)","albums":["花となれ","幻化成花","像花一样呐","成为一朵花","变成一朵花","可不呲牙","化成花","变成花","成为花朵","花となれ","幻化成花","像花一样呐","成为一朵花","变成一朵花","可不呲牙","化成花","变成花","成为花朵","花となれ","幻化成花","像花一样呐","成为一朵花","变成一朵花","可不呲牙","化成花","变成花","成为花朵"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20230526","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11592,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24001,"notes":{"total":102,"tap":79,"hold":9,"slide":4,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11592,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24001,"notes":{"total":213,"tap":178,"hold":14,"slide":4,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11592,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"アマリリス","romVersion":24001,"notes":{"total":277,"tap":209,"hold":32,"slide":25,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11592,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":313,"tap":128,"hold":21,"slide":82,"touch":62,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2433,"long":false},{"id":1593,"players":5632,"title":"私のドッペルゲンガー","utTitle":null,"artist":"DIVELA feat.音楽的同位体 可不(KAFU)","albums":["私のドッペルゲンガー","分身","我的分身","my doppelganger","可不拔大蒜","私のドッペルゲンガー","分身","我的分身","my doppelganger","可不拔大蒜","私のドッペルゲンガー","分身","我的分身","my doppelganger","可不拔大蒜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20230526","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11593,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24001,"notes":{"total":194,"tap":168,"hold":11,"slide":4,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11593,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24001,"notes":{"total":330,"tap":259,"hold":41,"slide":9,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11593,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"カマボコ君","romVersion":24001,"notes":{"total":519,"tap":351,"hold":38,"slide":55,"touch":32,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11593,"level_id":3,"level":"13","level_value":13.2,"note_designer":"翠楼屋","romVersion":24001,"notes":{"total":663,"tap":418,"hold":51,"slide":108,"touch":22,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1594,"players":7103,"title":"BULK UP (GAME EXCLUSIVE EDIT)","utTitle":null,"artist":"USAO & Yuta Imai","albums":["bulk up (game exclusive edit)","三千快乐曲","bulkup","bulk up","bulk","bulk up (game exclusive edit)","三千快乐曲","bulkup","bulk up","bulk","bulk up (game exclusive edit)","三千快乐曲","bulkup","bulk up","bulk"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":200,"releaseDate":"20230428","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24001,"dxRomVersion":24001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11594,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24001,"notes":{"total":202,"tap":154,"hold":14,"slide":6,"touch":20,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11594,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":24001,"notes":{"total":397,"tap":338,"hold":16,"slide":20,"touch":14,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11594,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":24001,"notes":{"total":644,"tap":403,"hold":74,"slide":64,"touch":60,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11594,"level_id":3,"level":"14","level_value":14.2,"note_designer":"サファ太","romVersion":24001,"notes":{"total":944,"tap":508,"hold":84,"slide":96,"touch":79,"break_":177},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1596,"players":7213,"title":"Vallista","utTitle":null,"artist":"削除","albums":["vallista","瓦里斯塔","vallista","围殴莉丝塔","vallista","瓦里斯塔"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20230721","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11596,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24000,"notes":{"total":154,"tap":104,"hold":10,"slide":7,"touch":28,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11596,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24000,"notes":{"total":343,"tap":282,"hold":21,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11596,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"みそかつ侍","romVersion":24000,"notes":{"total":517,"tap":351,"hold":50,"slide":54,"touch":5,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11596,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Luxizhel","romVersion":24000,"notes":{"total":765,"tap":607,"hold":25,"slide":41,"touch":53,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":135,"long":false},{"id":1597,"players":10660,"title":"ノンブレス・オブリージュ","utTitle":{"111597":"[息]ノンブレス・オブリージュ"},"artist":"ピノキオピー","albums":["ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","ノンブレス・オブリージュ","喘不上来气","喘不上气","non-breath oblige","不要呼吸","我喘不上气儿","无呼吸","无呼吸义务","我喘不上气","看见光"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":148,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":24500,"dx":{"0":{"id":11597,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24005,"notes":{"total":141,"tap":109,"hold":9,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11597,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24005,"notes":{"total":279,"tap":227,"hold":11,"slide":8,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11597,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":345,"tap":241,"hold":38,"slide":26,"touch":25,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11597,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":465,"tap":102,"hold":281,"slide":39,"touch":15,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111597":{"id":111597,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":925,"tap":803,"hold":89,"slide":15,"touch":1,"break_":17},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2811,"long":false},{"id":1598,"players":4540,"title":"テオ","utTitle":null,"artist":"Omoi","albums":["テオ","teo","天才","提欧","将手","テオ","teo","天才","提欧","将手","テオ","teo","天才","提欧","将手"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20230721","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11598,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24002,"notes":{"total":232,"tap":200,"hold":10,"slide":6,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11598,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24002,"notes":{"total":364,"tap":294,"hold":23,"slide":11,"touch":15,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11598,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"きょむりん","romVersion":24002,"notes":{"total":582,"tap":361,"hold":85,"slide":64,"touch":37,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11598,"level_id":3,"level":"13","level_value":13.2,"note_designer":"鳩ホルダー","romVersion":24002,"notes":{"total":965,"tap":657,"hold":54,"slide":96,"touch":49,"break_":109},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":796,"long":false},{"id":1599,"players":6061,"title":"まにまに","utTitle":null,"artist":"r-906","albums":["まにまに","manimani","马尼马尼","射箭","女人射箭","随之任之","\uD83C\uDFF9","まにまに","manimani","马尼马尼","射箭","女人射箭","随之任之","\uD83C\uDFF9","まにまに","manimani","马尼马尼","射箭","女人射箭","随之任之","\uD83C\uDFF9"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":174,"releaseDate":"20230818","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11599,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24003,"notes":{"total":182,"tap":135,"hold":14,"slide":7,"touch":15,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11599,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24003,"notes":{"total":346,"tap":288,"hold":30,"slide":6,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11599,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":24003,"notes":{"total":526,"tap":371,"hold":52,"slide":18,"touch":25,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11599,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"カマボコ君","romVersion":24003,"notes":{"total":727,"tap":501,"hold":49,"slide":116,"touch":37,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2661,"long":false},{"id":1600,"players":3473,"title":"感情ディシーブ","utTitle":null,"artist":"ろーある","albums":["感情ディシーブ","感情","欺骗感情","感情欺诈","感情ディシーブ","感情","欺骗感情","感情欺诈","感情ディシーブ","感情","欺骗感情","感情欺诈"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20230818","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24003,"dxRomVersion":24003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11600,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24003,"notes":{"total":144,"tap":113,"hold":15,"slide":6,"touch":7,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11600,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24003,"notes":{"total":281,"tap":194,"hold":27,"slide":8,"touch":50,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11600,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":24003,"notes":{"total":474,"tap":315,"hold":55,"slide":19,"touch":22,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11600,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Luxizhel","romVersion":24003,"notes":{"total":694,"tap":475,"hold":57,"slide":73,"touch":47,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1601,"players":4161,"title":"ド屑","utTitle":null,"artist":"なきそ","albums":["ド屑","头屑","追追","卜屑","屑","人渣","渣滓","兰立忠","大人渣","ド屑","头屑","追追","卜屑","屑","人渣","渣滓","兰立忠","大人渣","ド屑","头屑","追追","卜屑","屑","人渣","渣滓","兰立忠","大人渣"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":115,"releaseDate":"20230818","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11601,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24002,"notes":{"total":124,"tap":77,"hold":16,"slide":4,"touch":15,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11601,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24002,"notes":{"total":238,"tap":198,"hold":14,"slide":8,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11601,"level_id":2,"level":"9","level_value":9.5,"note_designer":"Luxizhel","romVersion":24002,"notes":{"total":224,"tap":82,"hold":60,"slide":19,"touch":51,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11601,"level_id":3,"level":"13","level_value":13.1,"note_designer":"じゃこレモン","romVersion":24002,"notes":{"total":612,"tap":390,"hold":42,"slide":114,"touch":33,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2437,"long":false},{"id":1602,"players":4491,"title":"絶対敵対メチャキライヤー","utTitle":null,"artist":"メドミア","albums":["絶対敵対メチャキライヤー","绝对敌对","绝对敌对大讨厌","绝对敌对超级讨厌","宿敌就是宿敌啊","絶対敵対メチャキライヤー","绝对敌对","绝对敌对大讨厌","绝对敌对超级讨厌","宿敌就是宿敌啊","絶対敵対メチャキライヤー","绝对敌对","绝对敌对大讨厌","绝对敌对超级讨厌","宿敌就是宿敌啊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20230818","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11602,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24002,"notes":{"total":163,"tap":128,"hold":10,"slide":8,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11602,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24002,"notes":{"total":306,"tap":199,"hold":27,"slide":10,"touch":60,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11602,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":24002,"notes":{"total":473,"tap":356,"hold":49,"slide":15,"touch":24,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11602,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":24002,"notes":{"total":735,"tap":431,"hold":74,"slide":127,"touch":34,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2690,"long":false},{"id":1603,"players":4556,"title":"つるぺったん","utTitle":null,"artist":"Silver Forest","albums":["つるぺったん","醋溜便当2","醋溜便当","つるぺったん","醋溜便当2","醋溜便当","つるぺったん","醋溜便当2","醋溜便当","伊吹萃香","萃香","西瓜"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11603,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24002,"notes":{"total":188,"tap":154,"hold":9,"slide":8,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11603,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24002,"notes":{"total":336,"tap":285,"hold":18,"slide":12,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11603,"level_id":2,"level":"10","level_value":10.0,"note_designer":"カマボコ君","romVersion":24002,"notes":{"total":511,"tap":300,"hold":132,"slide":40,"touch":19,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11603,"level_id":3,"level":"12","level_value":12.5,"note_designer":"鳩ホルダー","romVersion":24002,"notes":{"total":666,"tap":374,"hold":98,"slide":106,"touch":54,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":632,"long":false},{"id":1604,"players":3232,"title":"『ウソテイ』 ~一回戦せりなvsしろなvsなずな~","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["『ウソテイ』 ~一回戦せりなvsしろなvsなずな~","一回战","中二兔子跑","兔子跑2","彩绿兔子跑","防空警报","『ウソテイ』 ~一回戦せりなvsしろなvsなずな~","一回战","中二兔子跑","兔子跑2","彩绿兔子跑","防空警报","『ウソテイ』 ~一回戦せりなvsしろなvsなずな~","一回战","中二兔子跑","兔子跑2","彩绿兔子跑","防空警报"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":190,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11604,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24002,"notes":{"total":220,"tap":175,"hold":9,"slide":4,"touch":15,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11604,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24002,"notes":{"total":360,"tap":283,"hold":33,"slide":13,"touch":23,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11604,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":24002,"notes":{"total":558,"tap":338,"hold":135,"slide":15,"touch":28,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11604,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":24002,"notes":{"total":893,"tap":628,"hold":52,"slide":133,"touch":15,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1605,"players":3137,"title":"Bad Apple!! feat.nomico ~五十嵐 撫子 Ver.~","utTitle":null,"artist":"Masayoshi Minoshima [covered by 五十嵐 撫子(CV:花井 美春)]","albums":["bad apple!! feat.nomico ~五十嵐 撫子 ver.~","彩绿烂苹果","彩绿坏苹果","纵连坏苹果","中二坏苹果","彩绿苹果","bad apple!! feat.nomico ~五十嵐 撫子 ver.~","彩绿烂苹果","彩绿坏苹果","纵连坏苹果","中二坏苹果","彩绿苹果","bad apple!! feat.nomico ~五十嵐 撫子 ver.~","彩绿烂苹果","彩绿坏苹果","纵连坏苹果","中二坏苹果","彩绿苹果"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":141,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11605,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24002,"notes":{"total":171,"tap":146,"hold":8,"slide":3,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11605,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24002,"notes":{"total":304,"tap":244,"hold":12,"slide":13,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11605,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":24002,"notes":{"total":508,"tap":402,"hold":35,"slide":14,"touch":37,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11605,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":24002,"notes":{"total":823,"tap":631,"hold":44,"slide":82,"touch":39,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1606,"players":2289,"title":"Snow Colored Score","utTitle":null,"artist":"イロドリミドリ「CHUNITHM」","albums":["snow colored score","雪颜色分数","雪色分","scs","雪色记录","snow colored score","雪颜色分数","雪色分","scs","雪色记录","朱子墨鸟加不了","简单歌","孙正酣鸟不了","孙震撼没鸟","孙震撼鸟了","snow colored score","雪颜色分数","雪色分","scs","雪色记录"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":164,"releaseDate":"20230608","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24002,"dxRomVersion":24002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11606,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24002,"notes":{"total":158,"tap":124,"hold":13,"slide":7,"touch":7,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11606,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24002,"notes":{"total":356,"tap":280,"hold":22,"slide":17,"touch":23,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11606,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Jack","romVersion":24002,"notes":{"total":562,"tap":434,"hold":65,"slide":39,"touch":10,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11606,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"アマリリス","romVersion":24002,"notes":{"total":714,"tap":436,"hold":53,"slide":102,"touch":70,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2416,"long":false},{"id":1607,"players":6947,"title":"MAGENTA POTION","utTitle":null,"artist":"EmoCosine","albums":["magenta potion","魔法药水","指甲油","pmt决胜曲","药水","洋红药水","粉红指甲油","粉香水","品红药水","洋红色药水","品红色药水","假酒害人","红药水","magenta potion","魔法药水","指甲油","pmt决胜曲","药水","洋红药水","粉红指甲油","粉香水","品红药水","洋红色药水","品红色药水","假酒害人","红药水","magenta potion","魔法药水","指甲油","pmt决胜曲","药水","洋红药水","粉红指甲油","粉香水","品红药水","洋红色药水","品红色药水","假酒害人","红药水"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":150,"releaseDate":"20230721","from":"maimai でらっくす FESTiVAL PLUS","dxfrom":"maimai でらっくす FESTiVAL PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":24000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11607,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24000,"notes":{"total":141,"tap":94,"hold":16,"slide":6,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11607,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24000,"notes":{"total":268,"tap":176,"hold":26,"slide":7,"touch":49,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11607,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":24000,"notes":{"total":486,"tap":260,"hold":135,"slide":15,"touch":45,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11607,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":24000,"notes":{"total":818,"tap":651,"hold":46,"slide":82,"touch":20,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1608,"players":7856,"title":"NOIZY BOUNCE","utTitle":null,"artist":"八王子P feat. ななひら・まめこ","albums":["noizy bounce","嘈杂弹跳","bud主题曲","双代主题曲","女同16","noizy bounce","嘈杂弹跳","bud主题曲","双代主题曲","女同16","noizy bounce","嘈杂弹跳","bud主题曲","双代主题曲","女同16"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11608,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24004,"notes":{"total":136,"tap":85,"hold":11,"slide":4,"touch":26,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11608,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24004,"notes":{"total":293,"tap":237,"hold":14,"slide":11,"touch":24,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11608,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":24004,"notes":{"total":419,"tap":207,"hold":109,"slide":12,"touch":32,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11608,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー & サファ太","romVersion":24004,"notes":{"total":708,"tap":556,"hold":49,"slide":67,"touch":3,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1609,"players":6367,"title":"サンバディ!","utTitle":null,"artist":"水野健治 feat.光吉猛修","albums":["サンバディ!","光吉猛修开车","somebody","本命盘","桑巴迪","光吉猛修开跑车","サンバディ!","光吉猛修开车","somebody","本命盘","桑巴迪","光吉猛修开跑车","サンバディ!","光吉猛修开车","somebody","本命盘","桑巴迪","光吉猛修开跑车","日本壮熊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":136,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11609,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24004,"notes":{"total":185,"tap":157,"hold":9,"slide":2,"touch":12,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11609,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24004,"notes":{"total":307,"tap":250,"hold":24,"slide":12,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11609,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":24004,"notes":{"total":442,"tap":311,"hold":19,"slide":31,"touch":31,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11609,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":24004,"notes":{"total":789,"tap":586,"hold":35,"slide":103,"touch":33,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1610,"players":5592,"title":"Horoscope Express","utTitle":null,"artist":"pan","albums":["horoscope express","星际特快","he","像素三小只","星座快讯","horoscope","horoscope express","星际特快","he","像素三小只","星座快讯","horoscope","horoscope express","星际特快","he","像素三小只","星座快讯","horoscope","观星列车"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":236,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11610,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24004,"notes":{"total":181,"tap":140,"hold":14,"slide":5,"touch":21,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11610,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24004,"notes":{"total":347,"tap":296,"hold":25,"slide":8,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11610,"level_id":2,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":24004,"notes":{"total":559,"tap":411,"hold":71,"slide":36,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11610,"level_id":3,"level":"14","level_value":14.0,"note_designer":"あまくちジンジャー","romVersion":24004,"notes":{"total":772,"tap":506,"hold":79,"slide":81,"touch":76,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1611,"players":5978,"title":"Party☆People☆Princess","utTitle":null,"artist":"Sound Artz","albums":["party☆people☆princess","ppp","3p","party people princess","派对人们公主","破琵琶","party☆people☆princess","ppp","3p","party people princess","派对人们公主","破琵琶","party☆people☆princess","ppp","3p","party people princess","派对人们公主","破琵琶","女同20"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":152,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11611,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24004,"notes":{"total":221,"tap":184,"hold":12,"slide":4,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11611,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24004,"notes":{"total":308,"tap":252,"hold":13,"slide":8,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11611,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"サファ太","romVersion":24004,"notes":{"total":587,"tap":345,"hold":91,"slide":50,"touch":52,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11611,"level_id":3,"level":"14","level_value":14.3,"note_designer":"鳩ホルダー & Luxizhel","romVersion":24004,"notes":{"total":885,"tap":590,"hold":69,"slide":80,"touch":74,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1612,"players":9187,"title":"Latent Kingdom","utTitle":null,"artist":"Laur vs 大国奏音","albums":["latent kingdom","曲师打架","lk","俩曲师打架","三十块","潜伏王国","大lk","三十块钱","老二大战大国奏音","latent kingdom","曲师打架","lk","俩曲师打架","三十块","潜伏王国","大lk","三十块钱","老二大战大国奏音","战胜资本","latent kingdom","曲师打架","lk","俩曲师打架","三十块","潜伏王国","大lk","三十块钱","老二大战大国奏音","老二vs大国奏音"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":201,"releaseDate":"20231006","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11612,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24004,"notes":{"total":269,"tap":205,"hold":18,"slide":9,"touch":29,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11612,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":24004,"notes":{"total":440,"tap":377,"hold":30,"slide":12,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11612,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Luxizhel","romVersion":24004,"notes":{"total":782,"tap":530,"hold":99,"slide":39,"touch":46,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11612,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"Safata.GHz","romVersion":24004,"notes":{"total":1371,"tap":984,"hold":45,"slide":124,"touch":64,"break_":154},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2625,"long":false},{"id":1613,"players":5047,"title":"Mystic Parade","utTitle":null,"artist":"ひとしずく×やま△ feat.悠佑&ないこ(いれいす)","albums":["mystic parade","神秘游行","mystic parade","神秘游行","mystic parade","神秘游行","男同5"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":133,"releaseDate":"20230922","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11613,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24005,"notes":{"total":165,"tap":125,"hold":13,"slide":6,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11613,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24005,"notes":{"total":305,"tap":242,"hold":18,"slide":8,"touch":27,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11613,"level_id":2,"level":"10","level_value":10.0,"note_designer":"アマリリス","romVersion":24005,"notes":{"total":582,"tap":429,"hold":44,"slide":44,"touch":15,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11613,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":896,"tap":681,"hold":46,"slide":82,"touch":24,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1614,"players":4657,"title":"Cry Cry Cry","utTitle":null,"artist":"FLG4 feat.Flower","albums":["cry cry cry","哭哭哭","crycrycry","\uD83D\uDE2D\uD83D\uDE2D\uD83D\uDE2D","ccc","cry cry cry","哭哭哭","crycrycry","\uD83D\uDE2D\uD83D\uDE2D\uD83D\uDE2D","ccc","我一直在哭","cry cry cry","哭哭哭","crycrycry","\uD83D\uDE2D\uD83D\uDE2D\uD83D\uDE2D","ccc","嗷嗷哭"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":123,"releaseDate":"20230922","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11614,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24005,"notes":{"total":135,"tap":93,"hold":10,"slide":7,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11614,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24005,"notes":{"total":293,"tap":232,"hold":12,"slide":14,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11614,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":24005,"notes":{"total":432,"tap":242,"hold":88,"slide":32,"touch":38,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11614,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"アマリリス","romVersion":24005,"notes":{"total":706,"tap":523,"hold":57,"slide":68,"touch":42,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1615,"players":5484,"title":"ぽわわん劇場","utTitle":null,"artist":"ぽわわん劇場","albums":["ぽわわん劇場","剧场","powawan theater","波弯弯剧场","ぽわわん劇場","剧场","powawan theater","波弯弯剧场","ぽわわん劇場","剧场","powawan theater","波弯弯剧场"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20231020","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11615,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24005,"notes":{"total":219,"tap":176,"hold":13,"slide":8,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11615,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":381,"tap":314,"hold":16,"slide":16,"touch":29,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11615,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":617,"tap":461,"hold":45,"slide":65,"touch":27,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11615,"level_id":3,"level":"13","level_value":13.5,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":800,"tap":498,"hold":86,"slide":112,"touch":58,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1616,"players":5756,"title":"my flow","utTitle":null,"artist":"crayvxn","albums":["my flow","我的流","bolobinelebowigi","我流","my flow","我的流","bolobinelebowigi","我流","my flow","我的流","bolobinelebowigi","我流"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":157,"releaseDate":"20231020","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11616,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24005,"notes":{"total":156,"tap":123,"hold":15,"slide":6,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11616,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":304,"tap":256,"hold":6,"slide":10,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11616,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":24005,"notes":{"total":493,"tap":323,"hold":43,"slide":62,"touch":28,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11616,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":24005,"notes":{"total":683,"tap":443,"hold":62,"slide":58,"touch":59,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1617,"players":5401,"title":"POWER OF UNITY","utTitle":null,"artist":"Zekk","albums":["power of unity","pou","我们联合","团结之力","团结就是力量","联合力量","power of unity","pou","我们联合","团结之力","团结就是力量","联合力量","power of unity","pou","我们联合","团结之力","团结就是力量","联合力量"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20231020","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11617,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24005,"notes":{"total":242,"tap":213,"hold":15,"slide":3,"touch":6,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11617,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":24005,"notes":{"total":385,"tap":326,"hold":18,"slide":4,"touch":29,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11617,"level_id":2,"level":"12","level_value":12.0,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":563,"tap":434,"hold":35,"slide":32,"touch":17,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11617,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":24005,"notes":{"total":913,"tap":651,"hold":15,"slide":93,"touch":74,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1618,"players":7174,"title":"Energizing Flame","utTitle":null,"artist":"Artifact vs. Dualcast","albums":["energizing flame","能量火焰","瑞文皇帝2","粉色机娘","特蕾西娅","粉红机娘","机娘3","钢铁机娘2","ef","能量火","energizing flame","能量火焰","瑞文皇帝2","粉色机娘","特蕾西娅","粉红机娘","机娘3","钢铁机娘2","ef","能量火","特别带劲的好听歌","energizing flame","能量火焰","瑞文皇帝2","粉色机娘","特蕾西娅","粉红机娘","机娘3","钢铁机娘2","ef","能量火"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":201,"releaseDate":"20231020","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11618,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24005,"notes":{"total":258,"tap":213,"hold":11,"slide":12,"touch":7,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11618,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24005,"notes":{"total":388,"tap":318,"hold":20,"slide":15,"touch":22,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11618,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":24005,"notes":{"total":746,"tap":469,"hold":103,"slide":53,"touch":55,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11618,"level_id":3,"level":"14","level_value":14.4,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":966,"tap":666,"hold":36,"slide":104,"touch":59,"break_":101},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2828,"long":false},{"id":1619,"players":5345,"title":"KHYMΞXΛ","utTitle":null,"artist":"のらねこさい feat.ricono","albums":["khymξxλ","kop5预选","khym","奇美拉2","khymexa","khym三xa","奇美拉","大奇美拉","khymξxλ","kop5预选","khym","奇美拉2","khymexa","khym三xa","奇美拉","大奇美拉","khymξxλ","kop5预选","khym","奇美拉2","khymexa","khym三xa","奇美拉","大奇美拉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":220,"releaseDate":"20231102","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11619,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24005,"notes":{"total":282,"tap":246,"hold":13,"slide":4,"touch":7,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11619,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":24005,"notes":{"total":405,"tap":342,"hold":21,"slide":12,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11619,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":611,"tap":402,"hold":73,"slide":21,"touch":24,"break_":91},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11619,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"鳩サファzhel","romVersion":24005,"notes":{"total":981,"tap":672,"hold":84,"slide":56,"touch":19,"break_":150},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1620,"players":6151,"title":"フェイクフェイス・フェイルセイフ","utTitle":null,"artist":"カラスヤサボウ feat. もるでお","albums":["フェイクフェイス・フェイルセイフ","fffs","fakefacefailsafe","フェイクフェイス・フェイルセイフ","fffs","fakefacefailsafe","フェイクフェイス・フェイルセイフ","fffs","fakefacefailsafe"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":202,"releaseDate":"20231222","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11620,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24006,"notes":{"total":205,"tap":156,"hold":16,"slide":10,"touch":12,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11620,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24006,"notes":{"total":335,"tap":273,"hold":35,"slide":5,"touch":13,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11620,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"きょむりん","romVersion":24006,"notes":{"total":654,"tap":426,"hold":65,"slide":83,"touch":24,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11620,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":24006,"notes":{"total":883,"tap":640,"hold":35,"slide":108,"touch":64,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1621,"players":5806,"title":"ふらふらふら、","utTitle":null,"artist":"アオワイファイ feat.犀羅","albums":["ふらふらふら、","fulafula","摇晃不清","摇摇晃晃","ふらふらふら、","fulafula","摇晃不清","摇摇晃晃","服啦服啦服啦","只有辣片没99","ふらふらふら、","fulafula","摇晃不清","摇摇晃晃"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":125,"releaseDate":"20231222","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11621,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24006,"notes":{"total":156,"tap":116,"hold":16,"slide":4,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11621,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24006,"notes":{"total":325,"tap":275,"hold":14,"slide":12,"touch":14,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11621,"level_id":2,"level":"11","level_value":11.5,"note_designer":"Luxizhel","romVersion":24006,"notes":{"total":468,"tap":354,"hold":43,"slide":42,"touch":10,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11621,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":805,"tap":625,"hold":17,"slide":114,"touch":29,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1622,"players":5895,"title":"シックスプラン","utTitle":null,"artist":"針原翼(はりーP)feat. はく","albums":["シックスプラン","跳楼2","六计划","6p","sixplan","6plan","第六计划","シックスプラン","跳楼2","六计划","6p","sixplan","6plan","第六计划","シックスプラン","跳楼2","六计划","6p","sixplan","6plan","第六计划"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":120,"releaseDate":"20231222","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11622,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24006,"notes":{"total":136,"tap":97,"hold":13,"slide":6,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11622,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24006,"notes":{"total":258,"tap":205,"hold":10,"slide":11,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11622,"level_id":2,"level":"9","level_value":9.2,"note_designer":"サファ太","romVersion":24006,"notes":{"total":375,"tap":264,"hold":52,"slide":22,"touch":18,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11622,"level_id":3,"level":"13","level_value":13.2,"note_designer":"みそかつ侍","romVersion":24006,"notes":{"total":632,"tap":447,"hold":28,"slide":92,"touch":29,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1623,"players":5343,"title":"フタタビ","utTitle":null,"artist":"KAZE Lab","albums":["フタタビ","凤笑梦","再度","フタタビ","凤笑梦","再度","フタタビ","凤笑梦","再度"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":136,"releaseDate":"20231222","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11623,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24006,"notes":{"total":139,"tap":110,"hold":12,"slide":4,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11623,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24006,"notes":{"total":277,"tap":211,"hold":21,"slide":7,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11623,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":24006,"notes":{"total":450,"tap":306,"hold":35,"slide":59,"touch":30,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11623,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Luxizhel","romVersion":24006,"notes":{"total":732,"tap":573,"hold":24,"slide":97,"touch":11,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1624,"players":6265,"title":"SQUAD-Phvntom-","utTitle":null,"artist":"Getty vs DJ DiA","albums":["squad-phvntom-","丝瓜","sp","quaso","战术小队","幻影小队","squad","幽灵小队","squad-phvntom-","丝瓜","sp","quaso","战术小队","幻影小队","squad","幽灵小队","炫狂小队","爸爸爸","squad-phvntom-","丝瓜","sp","quaso","战术小队","幻影小队","squad","幽灵小队"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":200,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11624,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24005,"notes":{"total":208,"tap":167,"hold":11,"slide":4,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11624,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":349,"tap":284,"hold":22,"slide":12,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11624,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":24005,"notes":{"total":717,"tap":545,"hold":59,"slide":47,"touch":23,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11624,"level_id":3,"level":"14","level_value":14.3,"note_designer":"Ruby","romVersion":24005,"notes":{"total":1064,"tap":708,"hold":51,"slide":88,"touch":77,"break_":140},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2118,"long":false},{"id":1625,"players":3242,"title":"GEOMETRIC DANCE","utTitle":null,"artist":"山本真央樹","albums":["geometric dance","gd","几何跳舞","几何舞蹈","几何之舞","几何舞","geometric dance","gd","几何跳舞","几何舞蹈","几何之舞","几何舞","geometric dance","gd","几何跳舞","几何舞蹈","几何之舞","几何舞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":150,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11625,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24004,"notes":{"total":197,"tap":157,"hold":14,"slide":8,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11625,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24004,"notes":{"total":311,"tap":233,"hold":42,"slide":5,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11625,"level_id":2,"level":"12","level_value":12.5,"note_designer":"みそかつ侍","romVersion":24004,"notes":{"total":741,"tap":564,"hold":46,"slide":51,"touch":39,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11625,"level_id":3,"level":"14","level_value":14.4,"note_designer":"ロシェ@ペンギン","romVersion":24004,"notes":{"total":1067,"tap":873,"hold":36,"slide":43,"touch":92,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2480,"long":false},{"id":1626,"players":4642,"title":"Ring","utTitle":null,"artist":"R Sound Design feat.向日葵","albums":["ring","ring","ring"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":132,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11626,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24007,"notes":{"total":161,"tap":135,"hold":13,"slide":4,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11626,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24007,"notes":{"total":260,"tap":202,"hold":28,"slide":6,"touch":16,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11626,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":430,"tap":299,"hold":65,"slide":47,"touch":12,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11626,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":24007,"notes":{"total":655,"tap":501,"hold":39,"slide":77,"touch":24,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2055,"long":false},{"id":1627,"players":5222,"title":"インパアフェクシオン・ホワイトガアル","utTitle":null,"artist":"ツミキ feat.月乃","albums":["インパアフェクシオン・ホワイトガアル","文学少女","不完美少女","月乃","不完美白色女孩","霸道总裁爱上我","不完美的白色少女","不完美的白之少女","不完美的白色女孩","白女","インパアフェクシオン・ホワイトガアル","文学少女","不完美少女","月乃","不完美白色女孩","霸道总裁爱上我","不完美的白色少女","不完美的白之少女","不完美的白色女孩","白女","空白少女","インパアフェクシオン・ホワイトガアル","文学少女","不完美少女","月乃","不完美白色女孩","霸道总裁爱上我","不完美的白色少女","不完美的白之少女","不完美的白色女孩","白女","冴川芽依"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":207,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11627,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":209,"tap":165,"hold":20,"slide":8,"touch":11,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11627,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":24007,"notes":{"total":417,"tap":352,"hold":36,"slide":4,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11627,"level_id":2,"level":"11","level_value":11.5,"note_designer":"サファ太","romVersion":24007,"notes":{"total":659,"tap":457,"hold":82,"slide":39,"touch":19,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11627,"level_id":3,"level":"14","level_value":14.2,"note_designer":"ミニミライト","romVersion":24007,"notes":{"total":1067,"tap":818,"hold":39,"slide":172,"touch":11,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2273,"long":false},{"id":1628,"players":5262,"title":"WE'RE BACK!!","utTitle":null,"artist":"Zekk","albums":["we're back!!","我们回来了","we're back!!","我们回来了","we're back!!","我们回来了","我们是背","weareback"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":185,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11628,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":208,"tap":158,"hold":14,"slide":6,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11628,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24007,"notes":{"total":364,"tap":306,"hold":16,"slide":6,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11628,"level_id":2,"level":"12","level_value":12.2,"note_designer":"鳩ホルダー","romVersion":24007,"notes":{"total":648,"tap":489,"hold":47,"slide":56,"touch":26,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11628,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Luxizhel","romVersion":24007,"notes":{"total":961,"tap":730,"hold":78,"slide":89,"touch":32,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2231,"long":false},{"id":1629,"players":15040,"title":"熱異常","utTitle":null,"artist":"いよわ","albums":["熱異常","热异常","熱異常","热异常","吕原味","熱異常","热异常","冷正常"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":183,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11629,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24004,"notes":{"total":186,"tap":129,"hold":13,"slide":6,"touch":32,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11629,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":24004,"notes":{"total":360,"tap":310,"hold":27,"slide":6,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11629,"level_id":2,"level":"10","level_value":10.2,"note_designer":"サファ太","romVersion":24004,"notes":{"total":538,"tap":413,"hold":53,"slide":7,"touch":14,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11629,"level_id":3,"level":"12","level_value":12.1,"note_designer":"緑風 犬三郎","romVersion":24004,"notes":{"total":703,"tap":441,"hold":125,"slide":74,"touch":40,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11629,"level_id":4,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":24004,"notes":{"total":996,"tap":693,"hold":19,"slide":137,"touch":113,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2658,"long":false},{"id":1630,"players":8675,"title":"1000年生きてる","utTitle":null,"artist":"いよわ","albums":["1000年生きてる","超越光2","别急24","超越窗","1000年生","千年","一千年生","千年生","壁尻","存活千年","1000年生きてる","超越光2","别急24","超越窗","1000年生","千年","一千年生","千年生","壁尻","存活千年","1000年生きてる","超越光2","别急24","超越窗","1000年生","千年","一千年生","千年生","壁尻","存活千年"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":100,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11630,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24004,"notes":{"total":156,"tap":119,"hold":14,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11630,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24004,"notes":{"total":302,"tap":256,"hold":22,"slide":4,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11630,"level_id":2,"level":"9","level_value":9.0,"note_designer":"サファ太","romVersion":24004,"notes":{"total":387,"tap":271,"hold":31,"slide":10,"touch":50,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11630,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":24004,"notes":{"total":601,"tap":404,"hold":46,"slide":96,"touch":38,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2657,"long":false},{"id":1631,"players":7229,"title":"IMAWANOKIWA","utTitle":null,"artist":"いよわ","albums":["imawanokiwa","临终之际","临终","弥留之际","imawa","ima","imawanokiwa","临终之际","临终","弥留之际","imawa","ima","imawanokiwa","临终之际","临终","弥留之际","imawa","ima"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":178,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11631,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24004,"notes":{"total":161,"tap":124,"hold":12,"slide":6,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11631,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24004,"notes":{"total":335,"tap":277,"hold":30,"slide":12,"touch":14,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11631,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"鳩ホルダー","romVersion":24004,"notes":{"total":542,"tap":385,"hold":58,"slide":44,"touch":14,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11631,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":24004,"notes":{"total":885,"tap":608,"hold":158,"slide":70,"touch":21,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1632,"players":2499,"title":"Play merrily NEO","utTitle":null,"artist":"Shohei Tsuchiya (ZUNTATA) feat. Aimee B","albums":["play merrily neo","玩的开心neo","neo","耳机","pmn","play merrily neo","玩的开心neo","neo","耳机","pmn","play merrily neo","玩的开心neo","neo","耳机","pmn"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11632,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24004,"notes":{"total":149,"tap":120,"hold":8,"slide":4,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11632,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24004,"notes":{"total":314,"tap":263,"hold":12,"slide":6,"touch":29,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11632,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"ミニミライト","romVersion":24004,"notes":{"total":512,"tap":432,"hold":30,"slide":22,"touch":8,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11632,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":24004,"notes":{"total":739,"tap":524,"hold":25,"slide":73,"touch":71,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1633,"players":7028,"title":"OMAKENO Stroke","utTitle":null,"artist":"t+pazolite","albums":["omakeno stroke","小齿轮","\uD83D\uDE31","omakeno","os","呐喊","omakeno stroke","小齿轮","\uD83D\uDE31","omakeno","os","呐喊","蛆","omakeno stroke","小齿轮","\uD83D\uDE31","omakeno","os","呐喊"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":240,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11633,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24004,"notes":{"total":189,"tap":147,"hold":10,"slide":4,"touch":22,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11633,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24004,"notes":{"total":339,"tap":282,"hold":27,"slide":6,"touch":14,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11633,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"アマリリス","romVersion":24004,"notes":{"total":476,"tap":349,"hold":76,"slide":24,"touch":10,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11633,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":24004,"notes":{"total":729,"tap":516,"hold":35,"slide":88,"touch":57,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1636,"players":5487,"title":"さくゆいたいそう","utTitle":{"111636":"[奏]さくゆいたいそう"},"artist":"さくゆい","albums":["さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","さくゆいたいそう","我等心友","sakuyui taisou","sakuyui exercise","咲唯体操","女同17"],"hasDx":true,"hasSd":false,"hasUt":true,"genre":"POPSアニメ","bpm":160,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":24505,"dx":{"0":{"id":11636,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24004,"notes":{"total":163,"tap":124,"hold":16,"slide":6,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11636,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24004,"notes":{"total":335,"tap":269,"hold":24,"slide":2,"touch":26,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11636,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"佑","romVersion":24004,"notes":{"total":538,"tap":421,"hold":50,"slide":29,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11636,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"メロンポップ","romVersion":24004,"notes":{"total":681,"tap":381,"hold":129,"slide":69,"touch":41,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111636":{"id":111636,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24505,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2496,"long":false},{"id":1637,"players":14234,"title":"バグ","utTitle":null,"artist":"かいりきベア","albums":["バグ","八夕","mfy3","紫皮糖","故障","bug","バグ","八夕","mfy3","紫皮糖","故障","bug","バグ","八夕","mfy3","紫皮糖","故障","bug","月狼鸟了没分"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":186,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11637,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24004,"notes":{"total":188,"tap":145,"hold":17,"slide":7,"touch":8,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11637,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":24004,"notes":{"total":366,"tap":278,"hold":50,"slide":6,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11637,"level_id":2,"level":"10","level_value":10.2,"note_designer":"みそかつ侍","romVersion":24004,"notes":{"total":618,"tap":413,"hold":80,"slide":36,"touch":19,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11637,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":24004,"notes":{"total":713,"tap":389,"hold":134,"slide":107,"touch":28,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11637,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":24004,"notes":{"total":989,"tap":705,"hold":71,"slide":101,"touch":23,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2517,"long":false},{"id":1638,"players":12203,"title":"星界ちゃんと可不ちゃんのおつかい合騒曲","utTitle":null,"artist":"南ノ南","albums":["星界ちゃんと可不ちゃんのおつかい合騒曲","星界小姐和可不小姐的外出合奏曲","星界可不合骚曲","马赛克可不","马赛克","星界酱和可不酱的采购合奏曲","星界可不","星界","星界ちゃんと可不ちゃんのおつかい合騒曲","星界小姐和可不小姐的外出合奏曲","星界可不合骚曲","马赛克可不","马赛克","星界酱和可不酱的采购合奏曲","星界可不","星界","刘世玮","碧蓝档案","星界ちゃんと可不ちゃんのおつかい合騒曲","星界小姐和可不小姐的外出合奏曲","星界可不合骚曲","马赛克可不","马赛克","星界酱和可不酱的采购合奏曲","星界可不","星界"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":220,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11638,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24005,"notes":{"total":239,"tap":189,"hold":16,"slide":6,"touch":23,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11638,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24005,"notes":{"total":369,"tap":314,"hold":23,"slide":6,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11638,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":707,"tap":475,"hold":58,"slide":80,"touch":43,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11638,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":1045,"tap":616,"hold":75,"slide":224,"touch":62,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2507,"long":false},{"id":1639,"players":5722,"title":"Burn My Soul","utTitle":null,"artist":"She is Legend","albums":["burn my soul","红烧天堂","burn my soul","红烧天堂","burn my soul","红烧天堂"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":180,"releaseDate":"20231012","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11639,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24006,"notes":{"total":218,"tap":184,"hold":14,"slide":4,"touch":14,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11639,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24006,"notes":{"total":366,"tap":294,"hold":23,"slide":9,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11639,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":583,"tap":440,"hold":42,"slide":47,"touch":25,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11639,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":807,"tap":569,"hold":16,"slide":144,"touch":20,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1640,"players":7804,"title":"with U","utTitle":null,"artist":"t+pazolite & Massive New Krew feat. リリィ(CV:青木志貴)","albums":["with u","withu","和你","莉莉","with u","withu","和你","莉莉","大煞笔","with u","withu","和你","莉莉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20231110","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11640,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24005,"notes":{"total":217,"tap":164,"hold":11,"slide":8,"touch":14,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11640,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":295,"tap":228,"hold":23,"slide":8,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11640,"level_id":2,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":24005,"notes":{"total":617,"tap":481,"hold":41,"slide":19,"touch":43,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11640,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":797,"tap":445,"hold":162,"slide":86,"touch":60,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1641,"players":4819,"title":"Love Kills U","utTitle":null,"artist":"EmoCosine","albums":["love kills u","爱杀人","爱情害你","爱杀了你","爱死你了","爱音吃西瓜","爱杀你","lku","love kills u","爱杀人","爱情害你","爱杀了你","爱死你了","爱音吃西瓜","爱杀你","lku","love kills u","爱杀人","爱情害你","爱杀了你","爱死你了","爱音吃西瓜","爱杀你","lku"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20231110","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11641,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24005,"notes":{"total":160,"tap":102,"hold":24,"slide":4,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11641,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":338,"tap":276,"hold":20,"slide":8,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11641,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"アマリリス","romVersion":24005,"notes":{"total":513,"tap":396,"hold":54,"slide":34,"touch":10,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11641,"level_id":3,"level":"13","level_value":13.4,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":776,"tap":469,"hold":63,"slide":42,"touch":72,"break_":130},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1642,"players":5694,"title":"DANGEROOOOUS JUNGLE","utTitle":null,"artist":"Laur","albums":["dangeroooous jungle","危险丛林","危险森林","超级大腿","阿尔卑斯与危险森林","大腿","dj","dangeroooous jungle","危险丛林","危险森林","超级大腿","阿尔卑斯与危险森林","大腿","dj","dangeroooous jungle","危险丛林","危险森林","超级大腿","阿尔卑斯与危险森林","大腿","dj"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20231110","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11642,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24005,"notes":{"total":193,"tap":124,"hold":14,"slide":8,"touch":32,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11642,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24005,"notes":{"total":328,"tap":262,"hold":23,"slide":6,"touch":27,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11642,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":553,"tap":363,"hold":66,"slide":49,"touch":13,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11642,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":24005,"notes":{"total":992,"tap":711,"hold":56,"slide":96,"touch":72,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1643,"players":6993,"title":"天使光輪","utTitle":null,"artist":"REDALiCE & cosMo@暴走P","albums":["天使光輪","天使光轮","天使光輪","天使光轮","天使光輪","天使光轮"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":203,"releaseDate":"20231110","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11643,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24005,"notes":{"total":308,"tap":242,"hold":14,"slide":7,"touch":21,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11643,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":24005,"notes":{"total":418,"tap":372,"hold":16,"slide":8,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11643,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":24005,"notes":{"total":695,"tap":453,"hold":79,"slide":61,"touch":15,"break_":87},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11643,"level_id":3,"level":"14","level_value":14.4,"note_designer":"じゃこレモン","romVersion":24005,"notes":{"total":1064,"tap":749,"hold":57,"slide":116,"touch":67,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1645,"players":8764,"title":"トンデモワンダーズ","utTitle":null,"artist":"sasakure.UK","albums":["トンデモワンダーズ","不可思议的wonders","不可思议的奇迹","トンデモワンダーズ","不可思议的wonders","不可思议的奇迹","トンデモワンダーズ","不可思议的wonders","不可思议的奇迹"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":172,"releaseDate":"20231209","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11645,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24006,"notes":{"total":167,"tap":133,"hold":3,"slide":6,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11645,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24006,"notes":{"total":296,"tap":241,"hold":17,"slide":6,"touch":22,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11645,"level_id":2,"level":"10","level_value":10.0,"note_designer":"みぞれヤナギ","romVersion":24006,"notes":{"total":457,"tap":321,"hold":76,"slide":16,"touch":24,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11645,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Luxizhel","romVersion":24006,"notes":{"total":784,"tap":518,"hold":91,"slide":88,"touch":41,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2264,"long":false},{"id":1646,"players":10369,"title":"神威","utTitle":null,"artist":"TJ.hangneil","albums":["神威","太湖之光","神威","太湖之光","吕元玮拿头坐凳子","神威","太湖之光"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":210,"releaseDate":"20231210","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11646,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24006,"notes":{"total":342,"tap":306,"hold":12,"slide":4,"touch":9,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11646,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":24006,"notes":{"total":416,"tap":362,"hold":26,"slide":8,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11646,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":842,"tap":571,"hold":160,"slide":24,"touch":58,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11646,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"ロシェ@ペンギン","romVersion":24006,"notes":{"total":1263,"tap":883,"hold":93,"slide":93,"touch":155,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":386,"long":false},{"id":1647,"players":6191,"title":"ozma","utTitle":null,"artist":"TJ.hangneil","albums":["ozma","哦在吗","ozma","哦在吗","ozma","哦在吗"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":220,"releaseDate":"20231210","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11647,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":24006,"notes":{"total":258,"tap":202,"hold":17,"slide":8,"touch":30,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11647,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":24006,"notes":{"total":425,"tap":376,"hold":19,"slide":6,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11647,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":24006,"notes":{"total":623,"tap":413,"hold":89,"slide":46,"touch":55,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11647,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":24006,"notes":{"total":792,"tap":482,"hold":131,"slide":80,"touch":61,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1648,"players":9266,"title":"月面基地","utTitle":null,"artist":"sasakure.UK","albums":["月面基地","月抛基地","月面基地","月抛基地","月面基地","月抛基地"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20231210","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11648,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":24006,"notes":{"total":247,"tap":213,"hold":8,"slide":8,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11648,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":24006,"notes":{"total":348,"tap":264,"hold":36,"slide":16,"touch":30,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11648,"level_id":2,"level":"12","level_value":12.5,"note_designer":"鳩ホルダー","romVersion":24006,"notes":{"total":367,"tap":142,"hold":113,"slide":56,"touch":53,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11648,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":24006,"notes":{"total":900,"tap":677,"hold":66,"slide":50,"touch":85,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1650,"players":9271,"title":"ずんだもんの朝食 〜目覚ましずんラップ〜","utTitle":null,"artist":"ひらうみ","albums":["ずんだもんの朝食 〜目覚ましずんラップ〜","毛豆叫床","毛豆精","起床歌","俊达萌的早餐","毛豆","起来啦","\uD83D\uDCE3","\uD83D\uDCE2","俊达萌","\uD83D\uDE06","朝食目觉","俊达萌叫床","起床","起きて","起床了","俊达萌叫起床","毛豆喊起床","ずんだもんの朝食 〜目覚ましずんラップ〜","毛豆叫床","毛豆精","起床歌","俊达萌的早餐","毛豆","起来啦","\uD83D\uDCE3","\uD83D\uDCE2","俊达萌","\uD83D\uDE06","朝食目觉","俊达萌叫床","起床","起きて","起床了","俊达萌叫起床","毛豆喊起床","炉管","ずんだもんの朝食 〜目覚ましずんラップ〜","毛豆叫床","毛豆精","起床歌","俊达萌的早餐","毛豆","起来啦","\uD83D\uDCE3","\uD83D\uDCE2","俊达萌","\uD83D\uDE06","朝食目觉","俊达萌叫床","起床","起きて","起床了","俊达萌叫起床","毛豆喊起床","起床战争"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":260,"releaseDate":"20240126","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11650,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24007,"notes":{"total":159,"tap":131,"hold":12,"slide":4,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11650,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":24007,"notes":{"total":335,"tap":245,"hold":22,"slide":4,"touch":50,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11650,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":511,"tap":430,"hold":36,"slide":11,"touch":20,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11650,"level_id":3,"level":"13","level_value":13.1,"note_designer":"ずんだポップ","romVersion":24007,"notes":{"total":729,"tap":337,"hold":87,"slide":70,"touch":219,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1651,"players":6051,"title":"あなたは世界の終わりにずんだを食べるのだ","utTitle":null,"artist":"なみぐる","albums":["あなたは世界の終わりにずんだを食べるのだ","海鲜味毛豆","你在这世界的终焉,吃下了俊达","世界终食","俊达萌被吃","俊达萌打电报","俊达萌发电报","世终俊达","食终孤独","摩斯密码","在世界末日吃掉了俊达","摩斯电码","あなたは世界の終わりにずんだを食べるのだ","海鲜味毛豆","你在这世界的终焉,吃下了俊达","世界终食","俊达萌被吃","俊达萌打电报","俊达萌发电报","世终俊达","食终孤独","摩斯密码","在世界末日吃掉了俊达","摩斯电码","あなたは世界の終わりにずんだを食べるのだ","海鲜味毛豆","你在这世界的终焉,吃下了俊达","世界终食","俊达萌被吃","俊达萌打电报","俊达萌发电报","世终俊达","食终孤独","摩斯密码","在世界末日吃掉了俊达","摩斯电码"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20240126","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11651,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24007,"notes":{"total":137,"tap":99,"hold":13,"slide":4,"touch":19,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11651,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24007,"notes":{"total":274,"tap":218,"hold":16,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11651,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":24007,"notes":{"total":408,"tap":311,"hold":32,"slide":25,"touch":2,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11651,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":24007,"notes":{"total":619,"tap":385,"hold":84,"slide":90,"touch":40,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2452,"long":false},{"id":1652,"players":5926,"title":"HUMANBORG","utTitle":null,"artist":"SARUKANI","albums":["humanborg","赛博人","baddest2","人类堡","人类伯格","humanborg","赛博人","baddest2","人类堡","人类伯格","humanborg","赛博人","baddest2","人类堡","人类伯格"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":189,"releaseDate":"20240126","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11652,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24005,"notes":{"total":219,"tap":169,"hold":17,"slide":8,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11652,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":24005,"notes":{"total":359,"tap":287,"hold":32,"slide":9,"touch":29,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11652,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Luxizhel","romVersion":24005,"notes":{"total":614,"tap":387,"hold":124,"slide":68,"touch":3,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11652,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":24005,"notes":{"total":1027,"tap":651,"hold":159,"slide":1,"touch":186,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1653,"players":2971,"title":"ULTRA POWER","utTitle":null,"artist":"SARUKANI","albums":["ultra power","超强力量","超强能量","超能力","额外能量","ultra power","超强力量","超强能量","超能力","额外能量","ultra power","超强力量","超强能量","超能力","额外能量"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":100,"releaseDate":"20240126","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24005,"dxRomVersion":24005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11653,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24005,"notes":{"total":181,"tap":139,"hold":15,"slide":4,"touch":7,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11653,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24005,"notes":{"total":290,"tap":225,"hold":19,"slide":6,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11653,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":24005,"notes":{"total":508,"tap":335,"hold":24,"slide":43,"touch":59,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11653,"level_id":3,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":24005,"notes":{"total":780,"tap":485,"hold":118,"slide":65,"touch":44,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1654,"players":4187,"title":"ジェヘナ","utTitle":null,"artist":"wotaku","albums":["ジェヘナ","地狱","ジェヘナ","地狱","ジェヘナ","地狱","gehenna"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":128,"releaseDate":"20240216","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11654,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24006,"notes":{"total":115,"tap":79,"hold":15,"slide":4,"touch":12,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11654,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24006,"notes":{"total":296,"tap":236,"hold":20,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11654,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":24006,"notes":{"total":445,"tap":313,"hold":70,"slide":44,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11654,"level_id":3,"level":"13","level_value":13.3,"note_designer":"みそかつ侍","romVersion":24006,"notes":{"total":813,"tap":635,"hold":54,"slide":65,"touch":18,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2737,"long":false},{"id":1655,"players":9211,"title":"ツギハギスタッカート","utTitle":null,"artist":"とあ","albums":["ツギハギスタッカート","断音","拼凑的断音","ツギハギスタッカート","断音","拼凑的断音","ツギハギスタッカート","断音","拼凑的断音"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":139,"releaseDate":"20240216","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11655,"level_id":0,"level":"1","level_value":1.0,"note_designer":"","romVersion":24006,"notes":{"total":116,"tap":89,"hold":7,"slide":5,"touch":14,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11655,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":24006,"notes":{"total":285,"tap":228,"hold":24,"slide":6,"touch":25,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11655,"level_id":2,"level":"9","level_value":9.5,"note_designer":"りんご Full Set","romVersion":24006,"notes":{"total":425,"tap":287,"hold":75,"slide":37,"touch":14,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11655,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"アマリリス","romVersion":24006,"notes":{"total":599,"tap":375,"hold":49,"slide":67,"touch":101,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1656,"players":3032,"title":"HANIPAGANDA","utTitle":null,"artist":"暁Records","albums":["hanipaganda","\uD83D\uDE2F","奶龙军团","两排奶龙","埴轮宣扬","hanipaganda","\uD83D\uDE2F","奶龙军团","两排奶龙","埴轮宣扬","东方tv之埴安神袿姬非法量产奶龙手办被博丽城管一窝端","hanipaganda","\uD83D\uDE2F","奶龙军团","两排奶龙","埴轮宣扬","汉尼拔","杖刀偶磨弓"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":181,"releaseDate":"20240216","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11656,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":183,"tap":141,"hold":9,"slide":8,"touch":20,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11656,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24007,"notes":{"total":312,"tap":246,"hold":28,"slide":6,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11656,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"鳩ホルダー","romVersion":24007,"notes":{"total":508,"tap":353,"hold":63,"slide":30,"touch":30,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11656,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"サファ太","romVersion":24007,"notes":{"total":842,"tap":557,"hold":85,"slide":92,"touch":26,"break_":82},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1657,"players":6659,"title":"Rush-Hour","utTitle":null,"artist":"litmus*","albums":["rush-hour","冲一小时","冲一个小时","rush-hour","冲一小时","冲一个小时","rush-hour","冲一小时","冲一个小时"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":224,"releaseDate":"20240216","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11657,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":187,"tap":142,"hold":23,"slide":4,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11657,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":24007,"notes":{"total":360,"tap":305,"hold":31,"slide":6,"touch":12,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11657,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":24007,"notes":{"total":591,"tap":392,"hold":48,"slide":37,"touch":56,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11657,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"鳩ホルダー","romVersion":24007,"notes":{"total":894,"tap":578,"hold":83,"slide":106,"touch":95,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1658,"players":7289,"title":"QUEEN","utTitle":null,"artist":"Kanaria","albums":["queen","女王","浮游生物","女皇","queen","女王","浮游生物","女皇","queen","女王","浮游生物","女皇"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20240308","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11658,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":24007,"notes":{"total":169,"tap":134,"hold":7,"slide":4,"touch":16,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11658,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":24007,"notes":{"total":289,"tap":203,"hold":37,"slide":4,"touch":41,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11658,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":24007,"notes":{"total":510,"tap":410,"hold":33,"slide":32,"touch":16,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11658,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":24007,"notes":{"total":777,"tap":555,"hold":59,"slide":116,"touch":35,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1659,"players":2131,"title":"天使の翼。","utTitle":null,"artist":"A4。","albums":["天使の翼。","天使之翼","天使の翼。","天使之翼","天使の翼。","天使之翼","天使的翅膀"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":125,"releaseDate":"20240308","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11659,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":24007,"notes":{"total":146,"tap":117,"hold":10,"slide":6,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11659,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":24007,"notes":{"total":238,"tap":201,"hold":15,"slide":6,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11659,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":24007,"notes":{"total":404,"tap":252,"hold":49,"slide":45,"touch":18,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11659,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"カマボコ君","romVersion":24007,"notes":{"total":703,"tap":517,"hold":23,"slide":87,"touch":20,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1660,"players":6223,"title":"さよならプリンセス","utTitle":null,"artist":"Kai","albums":["さよならプリンセス","再见公主","さよならプリンセス","再见公主","さよならプリンセス","再见公主"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":195,"releaseDate":"20240308","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24007,"dxRomVersion":24007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11660,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24007,"notes":{"total":167,"tap":128,"hold":15,"slide":4,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11660,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24007,"notes":{"total":318,"tap":248,"hold":13,"slide":8,"touch":46,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11660,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"みそかつ侍","romVersion":24007,"notes":{"total":572,"tap":418,"hold":55,"slide":23,"touch":40,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11660,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":24007,"notes":{"total":705,"tap":496,"hold":61,"slide":89,"touch":14,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1661,"players":9124,"title":"Apollo","utTitle":null,"artist":"TJ.hangneil","albums":["apollo","绝密航天","吴奇隆","阿波罗","\uD83C\uDF4D","刹那转头","☬","独行月球","kana","皇城刹那裙底发光","apollo","绝密航天","吴奇隆","阿波罗","\uD83C\uDF4D","刹那转头","☬","独行月球","kana","皇城刹那裙底发光","刹那打电话","apollo","绝密航天","吴奇隆","阿波罗","\uD83C\uDF4D","刹那转头","☬","独行月球","kana","皇城刹那裙底发光","我去是吴奇隆"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":339,"releaseDate":"20231210","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11661,"level_id":0,"level":"7","level_value":7.0,"note_designer":"","romVersion":24006,"notes":{"total":317,"tap":268,"hold":11,"slide":9,"touch":19,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11661,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":24006,"notes":{"total":400,"tap":330,"hold":29,"slide":6,"touch":29,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11661,"level_id":2,"level":"13","level_value":13.0,"note_designer":"鳩ホルダー","romVersion":24006,"notes":{"total":860,"tap":718,"hold":64,"slide":42,"touch":17,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11661,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"EL DiABLO","romVersion":24006,"notes":{"total":1211,"tap":866,"hold":113,"slide":90,"touch":53,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1662,"players":9483,"title":"raputa","utTitle":null,"artist":"sasakure.UK × TJ.hangneil","albums":["raputa","\uD800\uDFBC\uD800\uDFA0\uD800\uDFB1\uD800\uDFB9\uD800\uDFA2\uD800\uDFAB\uD800\uDFA0","rpt","\uD83C\uDF47","\uD83E\uDD75\uD83C\uDF47","西直门桥","中国结","拉普大","热葡萄","raputa","\uD800\uDFBC\uD800\uDFA0\uD800\uDFB1\uD800\uDFB9\uD800\uDFA2\uD800\uDFAB\uD800\uDFA0","rpt","\uD83C\uDF47","\uD83E\uDD75\uD83C\uDF47","西直门桥","中国结","拉普大","热葡萄","raputa","\uD800\uDFBC\uD800\uDFA0\uD800\uDFB1\uD800\uDFB9\uD800\uDFA2\uD800\uDFAB\uD800\uDFA0","rpt","\uD83C\uDF47","\uD83E\uDD75\uD83C\uDF47","西直门桥","中国结","拉普大","热葡萄","\uD83D\uDC25\uD83D\uDC25\uD83D\uDC25"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":339,"releaseDate":"20231210","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11662,"level_id":0,"level":"7","level_value":7.0,"note_designer":"","romVersion":24006,"notes":{"total":339,"tap":277,"hold":14,"slide":12,"touch":26,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11662,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":24006,"notes":{"total":424,"tap":351,"hold":30,"slide":12,"touch":30,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11662,"level_id":2,"level":"13+","level_value":13.7,"note_designer":"佑","romVersion":24006,"notes":{"total":888,"tap":612,"hold":89,"slide":33,"touch":91,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11662,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"project raputa","romVersion":24006,"notes":{"total":1316,"tap":992,"hold":116,"slide":102,"touch":29,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1663,"players":15836,"title":"系ぎて","utTitle":null,"artist":"rintaro soma","albums":["系ぎて","原神2","kop5","携手前进","白丝","つなぎて","大系","携手","牵绊","6a","新手教程2","aaaaaa","携手向前","系","连结","丝","kop5th决胜曲","tsunagite","白系","寻迹","系ぎて","原神2","kop5","携手前进","白丝","つなぎて","大系","携手","牵绊","6a","新手教程2","aaaaaa","携手向前","系","连结","丝","kop5th决胜曲","tsunagite","白系","寻迹","系ぎて","原神2","kop5","携手前进","白丝","つなぎて","大系","携手","牵绊","6a","新手教程2","aaaaaa","携手向前","系","连结","丝","kop5th决胜曲","tsunagite","白系","寻迹","丝之歌","系接头","n⭐cream"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":88,"releaseDate":"20240229","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11663,"level_id":0,"level":"7","level_value":7.0,"note_designer":"","romVersion":24004,"notes":{"total":344,"tap":282,"hold":26,"slide":8,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11663,"level_id":1,"level":"10","level_value":10.5,"note_designer":"","romVersion":24004,"notes":{"total":539,"tap":474,"hold":28,"slide":4,"touch":25,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11663,"level_id":2,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":24004,"notes":{"total":742,"tap":525,"hold":43,"slide":82,"touch":53,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11663,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"maimai TEAM DX","romVersion":24004,"notes":{"total":1200,"tap":862,"hold":59,"slide":73,"touch":118,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11663,"level_id":4,"level":"15","level_value":15.0,"note_designer":"BEYOND THE MEMORiES","romVersion":24004,"notes":{"total":1400,"tap":1100,"hold":40,"slide":70,"touch":90,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1664,"players":3212,"title":"アルカンシエル","utTitle":null,"artist":"Yamajet","albums":["アルカンシエル","骑自行车","\uD83D\uDEB4","自行车","小女孩骑单车","赤月代","yamajet","アルカンシエル","骑自行车","\uD83D\uDEB4","自行车","小女孩骑单车","赤月代","yamajet","アルカンシエル","骑自行车","\uD83D\uDEB4","自行车","小女孩骑单车","赤月代","yamajet"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":176,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24004,"dxRomVersion":24004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11664,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24004,"notes":{"total":186,"tap":148,"hold":18,"slide":5,"touch":12,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11664,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":24004,"notes":{"total":321,"tap":251,"hold":32,"slide":6,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11664,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ロシェ@ペンギン","romVersion":24004,"notes":{"total":537,"tap":394,"hold":57,"slide":39,"touch":18,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11664,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":24004,"notes":{"total":670,"tap":488,"hold":51,"slide":56,"touch":31,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1665,"players":7010,"title":"RAD DOGS","utTitle":null,"artist":"八王子P / 初音ミク / Vivid BAD SQUAD「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20240111","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11665,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25005,"notes":{"total":148,"tap":113,"hold":11,"slide":4,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11665,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25005,"notes":{"total":249,"tap":193,"hold":13,"slide":10,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11665,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":25005,"notes":{"total":404,"tap":280,"hold":58,"slide":29,"touch":7,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11665,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":25005,"notes":{"total":664,"tap":505,"hold":37,"slide":93,"touch":16,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1666,"players":8068,"title":"アイディスマイル","utTitle":null,"artist":"とあ / MEIKO / 25時、ナイトコードで。「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":171,"releaseDate":"20240111","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11666,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25005,"notes":{"total":136,"tap":105,"hold":11,"slide":4,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11666,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25005,"notes":{"total":302,"tap":227,"hold":24,"slide":4,"touch":41,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11666,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Luxizhel","romVersion":25005,"notes":{"total":318,"tap":217,"hold":38,"slide":30,"touch":22,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11666,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"りんご Full Set","romVersion":25005,"notes":{"total":510,"tap":282,"hold":75,"slide":68,"touch":67,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1667,"players":9213,"title":"にっこり^^調査隊のテーマ","utTitle":null,"artist":"ワンダフル☆オポチュニティ! / 初音ミク / ワンダーランズ×ショウタイム「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20240111","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":25005,"dxRomVersion":25005,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11667,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25005,"notes":{"total":161,"tap":131,"hold":11,"slide":4,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11667,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25005,"notes":{"total":290,"tap":222,"hold":32,"slide":6,"touch":24,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11667,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":25005,"notes":{"total":488,"tap":354,"hold":46,"slide":29,"touch":9,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11667,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":25005,"notes":{"total":709,"tap":345,"hold":110,"slide":109,"touch":67,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1668,"players":4882,"title":"PinqPiq (xovevox Remix)","utTitle":null,"artist":"owl*tree Remixed by sasakure.UK","albums":["pinqpiq (xovevox remix)","pinq","pinqpiq","粉猪","pinqpiq (xovevox remix)","pinq","pinqpiq","粉猪","pinqpiq (xovevox remix)","pinq","pinqpiq","粉猪"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":150,"releaseDate":"20231209","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24006,"dxRomVersion":24006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11668,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":24006,"notes":{"total":193,"tap":152,"hold":11,"slide":10,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11668,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":24006,"notes":{"total":336,"tap":275,"hold":19,"slide":8,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11668,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":24006,"notes":{"total":578,"tap":411,"hold":70,"slide":53,"touch":10,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11668,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":24006,"notes":{"total":940,"tap":726,"hold":132,"slide":41,"touch":17,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1669,"players":7779,"title":"エスオーエス","utTitle":null,"artist":"カロンズベカラズ","albums":["エスオーエス","sos","エスオーエス","sos","エスオーエス","sos","女同19","拉兹乙姬二打一","街机和音游"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":196,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11669,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25000,"notes":{"total":208,"tap":170,"hold":14,"slide":8,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11669,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25000,"notes":{"total":402,"tap":344,"hold":22,"slide":4,"touch":24,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11669,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"鳩ホルダー","romVersion":25000,"notes":{"total":697,"tap":496,"hold":40,"slide":49,"touch":23,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11669,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":982,"tap":659,"hold":21,"slide":188,"touch":67,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1670,"players":6855,"title":"のじゃロリック","utTitle":null,"artist":"なみぐる feat.ちょこ 桃寝ちのい","albums":["のじゃロリック","のじゃロリック","のじゃロリック","结婚","结婚婚","你好结婚","女同18","コンコン結婚コン","婚婚结婚婚","bud+两小只"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11670,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":169,"tap":137,"hold":10,"slide":8,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11670,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25000,"notes":{"total":339,"tap":262,"hold":7,"slide":10,"touch":48,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11670,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":25000,"notes":{"total":531,"tap":387,"hold":50,"slide":42,"touch":16,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11670,"level_id":3,"level":"13","level_value":13.1,"note_designer":"アマリリス","romVersion":25000,"notes":{"total":768,"tap":549,"hold":50,"slide":79,"touch":22,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1671,"players":7278,"title":"Edelweiss","utTitle":null,"artist":"やどりぎ","albums":["edelweiss","雪绒花","edelweiss","雪绒花","星露谷物语","edelweiss","雪绒花","熊出没","前往堵门"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":252,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11671,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25000,"notes":{"total":203,"tap":145,"hold":20,"slide":5,"touch":30,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11671,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25000,"notes":{"total":294,"tap":243,"hold":19,"slide":9,"touch":21,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11671,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":551,"tap":425,"hold":50,"slide":28,"touch":41,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11671,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":25000,"notes":{"total":841,"tap":578,"hold":68,"slide":84,"touch":89,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1672,"players":9393,"title":"QuiQ","utTitle":null,"artist":"owl*tree feat.nie*tree","albums":["quiq","quiq","quiq","qq","哈基q","赫拉3","快克","上早八","堵门起晚了","牛奶猫迟到","早八","早八迟到","白猫良弹","睡觉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":120,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11672,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25000,"notes":{"total":251,"tap":222,"hold":13,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11672,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":25000,"notes":{"total":406,"tap":339,"hold":24,"slide":18,"touch":16,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11672,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":25000,"notes":{"total":740,"tap":549,"hold":100,"slide":41,"touch":28,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11672,"level_id":3,"level":"14","level_value":14.4,"note_designer":"Luxizhel","romVersion":25000,"notes":{"total":1108,"tap":880,"hold":26,"slide":119,"touch":27,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1673,"players":3992,"title":"IF:U","utTitle":null,"artist":"MisoilePunch♪","albums":["if:u","ifu","if:u","ifu","如果你","if:u","ifu","如果你","如果:电压","如果:电压","如果:并集","如果:铀","妈宝蓝2","欧美定律","如果电压"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20240412","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11673,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25000,"notes":{"total":225,"tap":188,"hold":14,"slide":8,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11673,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25000,"notes":{"total":327,"tap":276,"hold":20,"slide":10,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11673,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":25000,"notes":{"total":606,"tap":404,"hold":53,"slide":46,"touch":62,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11673,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"The Dove","romVersion":25000,"notes":{"total":949,"tap":670,"hold":32,"slide":76,"touch":97,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1674,"players":6724,"title":"Cider P@rty","utTitle":null,"artist":"Ryo Fukuda","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20240510","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11674,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25001,"notes":{"total":223,"tap":192,"hold":9,"slide":4,"touch":11,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11674,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25001,"notes":{"total":360,"tap":300,"hold":14,"slide":10,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11674,"level_id":2,"level":"11","level_value":11.0,"note_designer":"きょむりん","romVersion":25001,"notes":{"total":617,"tap":439,"hold":39,"slide":52,"touch":45,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11674,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":25001,"notes":{"total":826,"tap":584,"hold":75,"slide":126,"touch":27,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1675,"players":7041,"title":"勦滅","utTitle":null,"artist":"siqlo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20240510","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11675,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25001,"notes":{"total":230,"tap":190,"hold":10,"slide":7,"touch":15,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11675,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25001,"notes":{"total":377,"tap":329,"hold":22,"slide":8,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11675,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":25001,"notes":{"total":581,"tap":376,"hold":116,"slide":45,"touch":32,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11675,"level_id":3,"level":"14","level_value":14.2,"note_designer":"ロシェ@ペンギン","romVersion":25001,"notes":{"total":1030,"tap":773,"hold":73,"slide":59,"touch":77,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1676,"players":6348,"title":"Lunatic Vibes","utTitle":null,"artist":"K-forest","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20240510","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11676,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25001,"notes":{"total":265,"tap":234,"hold":12,"slide":3,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11676,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25001,"notes":{"total":393,"tap":329,"hold":24,"slide":4,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11676,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":25001,"notes":{"total":595,"tap":384,"hold":81,"slide":49,"touch":6,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11676,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":25001,"notes":{"total":954,"tap":672,"hold":76,"slide":113,"touch":55,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1677,"players":6933,"title":"Bloody Trail","utTitle":null,"artist":"Hommarju","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":195,"releaseDate":"20240510","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11677,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25001,"notes":{"total":275,"tap":226,"hold":13,"slide":8,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11677,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":25001,"notes":{"total":440,"tap":379,"hold":16,"slide":6,"touch":31,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11677,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"鳩ホルダー","romVersion":25001,"notes":{"total":775,"tap":533,"hold":127,"slide":53,"touch":21,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11677,"level_id":3,"level":"14","level_value":14.5,"note_designer":"翠楼屋","romVersion":25001,"notes":{"total":1156,"tap":882,"hold":129,"slide":42,"touch":3,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1678,"players":6065,"title":"RE:INCARNATED DRAGNER","utTitle":null,"artist":"黒沢ダイスケ × 小寺可南子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20240621","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11678,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":248,"tap":201,"hold":17,"slide":4,"touch":19,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11678,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25003,"notes":{"total":407,"tap":338,"hold":25,"slide":6,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11678,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"Jack","romVersion":25003,"notes":{"total":694,"tap":566,"hold":51,"slide":43,"touch":10,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11678,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"カマボコ君","romVersion":25003,"notes":{"total":1049,"tap":714,"hold":55,"slide":127,"touch":57,"break_":96},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1679,"players":5106,"title":"Beginning together!","utTitle":null,"artist":"高瀬一矢 feat. R.I.N.A","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":142,"releaseDate":"20240621","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11679,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25003,"notes":{"total":172,"tap":138,"hold":20,"slide":4,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11679,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25003,"notes":{"total":311,"tap":272,"hold":14,"slide":4,"touch":17,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11679,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25003,"notes":{"total":472,"tap":356,"hold":43,"slide":33,"touch":20,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11679,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":25003,"notes":{"total":790,"tap":531,"hold":87,"slide":62,"touch":37,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1680,"players":4626,"title":"Shining Ray ~僕らの絆~","utTitle":null,"artist":"伊藤和馬(Arte Refact) feat.konoco","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20240621","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11680,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":214,"tap":176,"hold":13,"slide":9,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11680,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25003,"notes":{"total":338,"tap":279,"hold":20,"slide":6,"touch":28,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11680,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":534,"tap":383,"hold":69,"slide":32,"touch":26,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11680,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Jack","romVersion":25003,"notes":{"total":795,"tap":587,"hold":44,"slide":101,"touch":14,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1681,"players":6174,"title":"DEVOTION","utTitle":null,"artist":"AJURIKA feat.SAK.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":167,"releaseDate":"20240621","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11681,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":218,"tap":172,"hold":11,"slide":6,"touch":15,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11681,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25003,"notes":{"total":366,"tap":306,"hold":16,"slide":6,"touch":30,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11681,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"サファ太","romVersion":25003,"notes":{"total":620,"tap":408,"hold":71,"slide":55,"touch":30,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11681,"level_id":3,"level":"14","level_value":14.3,"note_designer":"LuxiHertz","romVersion":25003,"notes":{"total":981,"tap":761,"hold":60,"slide":102,"touch":6,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1682,"players":6285,"title":"Geranium","utTitle":null,"artist":"Osanzi feat.藍月なくる","albums":["天竺葵","geranium","天竺葵","贪玩蓝月2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20240802","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11682,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":237,"tap":194,"hold":11,"slide":8,"touch":13,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11682,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25004,"notes":{"total":342,"tap":286,"hold":16,"slide":6,"touch":30,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11682,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":25004,"notes":{"total":571,"tap":417,"hold":66,"slide":63,"touch":19,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11682,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー & サファ太","romVersion":25004,"notes":{"total":784,"tap":506,"hold":81,"slide":106,"touch":60,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":1683,"players":6084,"title":"The Cursed Doll","utTitle":null,"artist":"清風明月(Drop×葉月ゆら)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":131,"releaseDate":"20240802","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11683,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25004,"notes":{"total":205,"tap":175,"hold":10,"slide":5,"touch":10,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11683,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25004,"notes":{"total":284,"tap":233,"hold":13,"slide":7,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11683,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":25004,"notes":{"total":443,"tap":288,"hold":44,"slide":50,"touch":34,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11683,"level_id":3,"level":"13","level_value":13.5,"note_designer":"鳩ホルダー","romVersion":25004,"notes":{"total":761,"tap":509,"hold":61,"slide":79,"touch":61,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1684,"players":6414,"title":"RondeauX of RagnaroQ","utTitle":null,"artist":"Morrigan feat.Lily and 結城碧","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":339,"releaseDate":"20240802","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11684,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":269,"tap":234,"hold":15,"slide":4,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11684,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25004,"notes":{"total":438,"tap":383,"hold":10,"slide":13,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11684,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":25004,"notes":{"total":681,"tap":487,"hold":49,"slide":57,"touch":32,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11684,"level_id":3,"level":"14","level_value":14.5,"note_designer":"R-blacX of JacQ","romVersion":25004,"notes":{"total":1116,"tap":831,"hold":60,"slide":97,"touch":40,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1685,"players":6280,"title":"ℝ∈Χ LUNATiCA","utTitle":null,"artist":"Kai","albums":["rex","ℝ∈χ lunatica","rex","黑天鹅2","r属于x","lunatica"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":339,"releaseDate":"20240802","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11685,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25004,"notes":{"total":298,"tap":231,"hold":17,"slide":8,"touch":30,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11685,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":25004,"notes":{"total":451,"tap":403,"hold":26,"slide":16,"touch":0,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11685,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":25004,"notes":{"total":713,"tap":552,"hold":86,"slide":41,"touch":25,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11685,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"BELiZHEL","romVersion":25004,"notes":{"total":1103,"tap":826,"hold":49,"slide":123,"touch":29,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1686,"players":6823,"title":"Λzure Vixen","utTitle":null,"artist":"かめりあ","albums":["λzure vixen","av","凯南","猩红凝视","我独自升级","维导"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":163,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11686,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25003,"notes":{"total":284,"tap":239,"hold":15,"slide":8,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11686,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25003,"notes":{"total":400,"tap":338,"hold":22,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11686,"level_id":2,"level":"13","level_value":13.2,"note_designer":"ロシェ@ペンギン","romVersion":25003,"notes":{"total":739,"tap":535,"hold":63,"slide":58,"touch":29,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11686,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"BELiZHEL","romVersion":25003,"notes":{"total":1289,"tap":1039,"hold":58,"slide":87,"touch":39,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2233,"long":false},{"id":1687,"players":8138,"title":"MarbleBlue.","utTitle":null,"artist":"MisoilePunch♪","albums":["marbleblue.","妈宝蓝","marbleblue.","妈宝蓝","妈宝男","marbleblue.","妈宝蓝"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":198,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11687,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25000,"notes":{"total":248,"tap":187,"hold":21,"slide":4,"touch":33,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11687,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":25000,"notes":{"total":397,"tap":344,"hold":25,"slide":6,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11687,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"鳩ホルダー","romVersion":25000,"notes":{"total":683,"tap":475,"hold":62,"slide":63,"touch":52,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11687,"level_id":3,"level":"14","level_value":14.5,"note_designer":"Twinrook & Safari","romVersion":25000,"notes":{"total":1062,"tap":796,"hold":73,"slide":79,"touch":56,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2554,"long":false},{"id":1688,"players":6734,"title":"まっすぐ→→→ストリーム!","utTitle":null,"artist":"曲:本多友紀(Arte Refact)/歌:日向 千夏(CV:岡咲 美保)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":184,"releaseDate":"20240830","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11688,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25004,"notes":{"total":232,"tap":178,"hold":11,"slide":8,"touch":23,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11688,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25004,"notes":{"total":400,"tap":318,"hold":15,"slide":14,"touch":35,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11688,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":25004,"notes":{"total":600,"tap":415,"hold":63,"slide":29,"touch":23,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11688,"level_id":3,"level":"13","level_value":13.5,"note_designer":"鳩ホルダー","romVersion":25004,"notes":{"total":960,"tap":626,"hold":45,"slide":140,"touch":49,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2162,"long":false},{"id":1689,"players":6651,"title":"最っ高のエンタメだ!!","utTitle":null,"artist":"曲:本田正樹(Dream Monster)/歌:7EVENDAYS⇔HOLIDAYS [井之原 小星(CV:ももの はるな)、柏木 咲姫(CV:石見 舞菜香)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":276,"releaseDate":"20240830","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11689,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":259,"tap":223,"hold":15,"slide":8,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11689,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25004,"notes":{"total":304,"tap":254,"hold":22,"slide":8,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11689,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":25004,"notes":{"total":656,"tap":489,"hold":72,"slide":59,"touch":11,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11689,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25004,"notes":{"total":942,"tap":573,"hold":55,"slide":120,"touch":92,"break_":102},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2237,"long":false},{"id":1690,"players":3038,"title":"Baqeela","utTitle":null,"artist":"owl*tree","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":130,"releaseDate":"20240830","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11690,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25004,"notes":{"total":195,"tap":158,"hold":12,"slide":6,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11690,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25004,"notes":{"total":299,"tap":233,"hold":23,"slide":12,"touch":28,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11690,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"アマリリス","romVersion":25004,"notes":{"total":620,"tap":487,"hold":41,"slide":32,"touch":28,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11690,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"りんご Full Set","romVersion":25004,"notes":{"total":982,"tap":673,"hold":50,"slide":75,"touch":140,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2146,"long":false},{"id":1691,"players":6962,"title":"Ai C","utTitle":null,"artist":"Feryquitous","albums":["艾草","ai c","aic","艾草","挨草","爱丽丝的摇篮"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":191,"releaseDate":"20240830","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11691,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":228,"tap":186,"hold":16,"slide":8,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11691,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":25004,"notes":{"total":336,"tap":275,"hold":21,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11691,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Luxizhel","romVersion":25004,"notes":{"total":532,"tap":402,"hold":34,"slide":55,"touch":30,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11691,"level_id":3,"level":"14","level_value":14.0,"note_designer":"メロンポップ","romVersion":25004,"notes":{"total":869,"tap":670,"hold":50,"slide":84,"touch":32,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2703,"long":false},{"id":1692,"players":16918,"title":"INTERNET YAMERO","utTitle":null,"artist":"Aiobahn feat. KOTOKO","albums":["internet yamero","地雷女2","internet yamero","地雷女2","internet yamero","地雷女2","超天酱2","快远离互联网","卷纸maimai","互联网太棒了","躁郁症","†升天†","马赛克2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":185,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11692,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25000,"notes":{"total":222,"tap":171,"hold":19,"slide":6,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11692,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25000,"notes":{"total":389,"tap":303,"hold":42,"slide":10,"touch":21,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11692,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25000,"notes":{"total":699,"tap":426,"hold":135,"slide":18,"touch":76,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11692,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"緑風 犬三郎","romVersion":25000,"notes":{"total":747,"tap":489,"hold":79,"slide":91,"touch":48,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11692,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":25000,"notes":{"total":1075,"tap":560,"hold":55,"slide":127,"touch":133,"break_":200},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2503,"long":false},{"id":1693,"players":8740,"title":"過去を喰らう","utTitle":null,"artist":"花譜","albums":["過去を喰らう","吞噬过去","過去を喰らう","吞噬过去","過去を喰らう","吞噬过去","花谱"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":187,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11693,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25000,"notes":{"total":190,"tap":145,"hold":17,"slide":8,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11693,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25000,"notes":{"total":363,"tap":319,"hold":20,"slide":3,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11693,"level_id":2,"level":"10","level_value":10.0,"note_designer":"ロシェ@ペンギン","romVersion":25000,"notes":{"total":506,"tap":366,"hold":47,"slide":32,"touch":33,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11693,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"アマリリス","romVersion":25000,"notes":{"total":769,"tap":596,"hold":43,"slide":108,"touch":0,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2225,"long":false},{"id":1694,"players":9885,"title":"強風オールバック","utTitle":null,"artist":"ゆこぴ","albums":["強風オールバック","强风大背头","强风才一儿","強風オールバック","强风大背头","强风才一儿","強風オールバック","强风大背头","强风才一儿"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":135,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11694,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25000,"notes":{"total":149,"tap":109,"hold":10,"slide":2,"touch":24,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11694,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25000,"notes":{"total":266,"tap":224,"hold":15,"slide":11,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11694,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":508,"tap":406,"hold":35,"slide":15,"touch":42,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11694,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"鳩ホルぴー","romVersion":25000,"notes":{"total":580,"tap":363,"hold":38,"slide":98,"touch":50,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2506,"long":false},{"id":1695,"players":7735,"title":"寝起きヤシの木","utTitle":null,"artist":"ゆこぴ","albums":["寝起きヤシの木","寝起きヤシの木","寝起きヤシの木","早起椰树头","歌爱冲刺"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":160,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11695,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":139,"tap":115,"hold":10,"slide":4,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11695,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25000,"notes":{"total":218,"tap":161,"hold":23,"slide":3,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11695,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":25000,"notes":{"total":389,"tap":272,"hold":42,"slide":22,"touch":28,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11695,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Luxiいぬ","romVersion":25000,"notes":{"total":623,"tap":439,"hold":5,"slide":97,"touch":65,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2591,"long":false},{"id":1696,"players":14367,"title":"アイドル","utTitle":null,"artist":"YOASOBI","albums":["アイドル","爱豆","偶像","idol","アイドル","爱豆","偶像","idol","アイドル","爱豆","偶像","idol"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":166,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11696,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":25000,"notes":{"total":175,"tap":141,"hold":14,"slide":4,"touch":9,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11696,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":25000,"notes":{"total":282,"tap":229,"hold":10,"slide":16,"touch":17,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11696,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"ロシェ@ペンギン","romVersion":25000,"notes":{"total":513,"tap":333,"hold":66,"slide":24,"touch":46,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11696,"level_id":3,"level":"11","level_value":11.4,"note_designer":"緑風 犬三郎","romVersion":25000,"notes":{"total":629,"tap":425,"hold":44,"slide":100,"touch":11,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11696,"level_id":4,"level":"13","level_value":13.1,"note_designer":"Luxizhel","romVersion":25000,"notes":{"total":797,"tap":503,"hold":39,"slide":101,"touch":44,"break_":110},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2494,"long":false},{"id":1697,"players":15158,"title":"ラビットホール","utTitle":null,"artist":"DECO*27","albums":["ラビットホール","兔子洞","ラビットホール","兔子洞","ラビットホール","兔子洞","rabbithole","初音未来下海"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":173,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11697,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":199,"tap":164,"hold":18,"slide":8,"touch":8,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11697,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25000,"notes":{"total":334,"tap":223,"hold":60,"slide":12,"touch":27,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11697,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":25000,"notes":{"total":554,"tap":401,"hold":64,"slide":44,"touch":29,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11697,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":25000,"notes":{"total":713,"tap":452,"hold":73,"slide":129,"touch":38,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11697,"level_id":4,"level":"13","level_value":13.3,"note_designer":"Luxizhel & Jack","romVersion":25000,"notes":{"total":922,"tap":662,"hold":49,"slide":158,"touch":28,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2758,"long":false},{"id":1698,"players":10668,"title":"酔いどれ知らず","utTitle":null,"artist":"Kanaria","albums":["酔いどれ知らず","不知醉","酔いどれ知らず","不知醉","酔いどれ知らず","不知醉"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":115,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11698,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25000,"notes":{"total":131,"tap":95,"hold":16,"slide":4,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11698,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25000,"notes":{"total":225,"tap":180,"hold":20,"slide":8,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11698,"level_id":2,"level":"8","level_value":8.5,"note_designer":"Luxizhel","romVersion":25000,"notes":{"total":314,"tap":234,"hold":32,"slide":28,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11698,"level_id":3,"level":"11+","level_value":11.6,"note_designer":"緑風 犬三郎","romVersion":25000,"notes":{"total":513,"tap":373,"hold":41,"slide":72,"touch":18,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11698,"level_id":4,"level":"13","level_value":13.2,"note_designer":"サファ太","romVersion":25000,"notes":{"total":700,"tap":497,"hold":56,"slide":100,"touch":12,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2395,"long":false},{"id":1699,"players":6389,"title":"新人類","utTitle":null,"artist":"まらしぃ×じん×堀江晶太(kemu) feat.鏡音リン","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":144,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11699,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25003,"notes":{"total":181,"tap":146,"hold":16,"slide":4,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11699,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25003,"notes":{"total":310,"tap":250,"hold":18,"slide":6,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11699,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":612,"tap":371,"hold":101,"slide":34,"touch":74,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11699,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":25003,"notes":{"total":1056,"tap":896,"hold":24,"slide":106,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2813,"long":false},{"id":1700,"players":9135,"title":"Freak Out Hr.","utTitle":null,"artist":"雄之助 feat. POPY & ROSE","albums":["freak out hr.","freak out hr.","freak out hr.","ykn和ksm","东云绘名vs宵崎奏","雄氏老方","女同17","ksm和ykn背靠背","黑白双煞","性感ksm和ykn","邦多利集结","邦高祖","ksm和ykn"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":180,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11700,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":173,"tap":142,"hold":9,"slide":4,"touch":16,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11700,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25000,"notes":{"total":334,"tap":273,"hold":24,"slide":6,"touch":28,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11700,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":584,"tap":474,"hold":60,"slide":34,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11700,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":903,"tap":641,"hold":42,"slide":175,"touch":20,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1701,"players":6374,"title":"さよならヒストリー","utTitle":null,"artist":"森羅万象","albums":["さよならヒストリー","さよならヒストリー","再见历史","さよならヒストリー","再见历史","慧音热舞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":180,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11701,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":176,"tap":131,"hold":17,"slide":4,"touch":15,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11701,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25000,"notes":{"total":358,"tap":293,"hold":34,"slide":5,"touch":14,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11701,"level_id":2,"level":"10","level_value":10.5,"note_designer":"鳩ホルダー","romVersion":25000,"notes":{"total":563,"tap":392,"hold":72,"slide":51,"touch":24,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11701,"level_id":3,"level":"13","level_value":13.1,"note_designer":"じゃこレモン","romVersion":25000,"notes":{"total":760,"tap":511,"hold":48,"slide":121,"touch":16,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1702,"players":9111,"title":"New York Back Raise","utTitle":null,"artist":"saaa + kei_iwata + stuv + わかどり","albums":["new york back raise","new york back raise","纽约赌场","new york back raise","纽约赌场","nybr","赌场"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11702,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":178,"tap":146,"hold":12,"slide":8,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11702,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25000,"notes":{"total":376,"tap":318,"hold":19,"slide":8,"touch":29,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11702,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"ロシェ@ペンギン","romVersion":25000,"notes":{"total":656,"tap":337,"hold":128,"slide":67,"touch":92,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11702,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"鳩ホルダー","romVersion":25000,"notes":{"total":878,"tap":608,"hold":93,"slide":78,"touch":53,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2535,"long":false},{"id":1704,"players":4121,"title":"DUAL ROZES","utTitle":null,"artist":"SOUND HOLIC Vs. Eurobeat Union feat. Nana Takahashi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":160,"releaseDate":"20240401","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11704,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25002,"notes":{"total":185,"tap":149,"hold":12,"slide":4,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11704,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25002,"notes":{"total":308,"tap":240,"hold":16,"slide":7,"touch":40,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11704,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":25002,"notes":{"total":401,"tap":278,"hold":66,"slide":30,"touch":9,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11704,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":25002,"notes":{"total":825,"tap":596,"hold":43,"slide":79,"touch":21,"break_":86},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1705,"players":4931,"title":"VOLT","utTitle":null,"artist":"aran","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":174,"releaseDate":"20240412","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11705,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25002,"notes":{"total":166,"tap":137,"hold":10,"slide":4,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11705,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25002,"notes":{"total":314,"tap":272,"hold":5,"slide":10,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11705,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":25002,"notes":{"total":444,"tap":328,"hold":48,"slide":26,"touch":3,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11705,"level_id":3,"level":"13","level_value":13.4,"note_designer":"じゃこレモン","romVersion":25002,"notes":{"total":652,"tap":461,"hold":29,"slide":77,"touch":52,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2798,"long":false},{"id":1706,"players":6144,"title":"tiny tales continue","utTitle":null,"artist":"黒魔","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":188,"releaseDate":"20240412","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11706,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25002,"notes":{"total":198,"tap":165,"hold":11,"slide":6,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11706,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25002,"notes":{"total":338,"tap":278,"hold":16,"slide":10,"touch":30,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11706,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":25002,"notes":{"total":498,"tap":366,"hold":61,"slide":38,"touch":11,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11706,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太 & ぴちネコ","romVersion":25002,"notes":{"total":818,"tap":528,"hold":96,"slide":80,"touch":62,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1707,"players":7794,"title":"ouroboros -twin stroke of the end-","utTitle":null,"artist":"Cranky VS MASAKI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":188,"releaseDate":"20240412","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11707,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25002,"notes":{"total":272,"tap":223,"hold":15,"slide":8,"touch":18,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11707,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":25002,"notes":{"total":443,"tap":391,"hold":22,"slide":8,"touch":16,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11707,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Luxizhel","romVersion":25002,"notes":{"total":717,"tap":510,"hold":72,"slide":74,"touch":30,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11707,"level_id":3,"level":"14","level_value":14.4,"note_designer":"サファ太","romVersion":25002,"notes":{"total":1257,"tap":917,"hold":82,"slide":68,"touch":116,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":669,"long":false},{"id":1710,"players":5017,"title":"サイバーサンダーサイダー","utTitle":null,"artist":"EZFG","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20240426","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11710,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25001,"notes":{"total":184,"tap":154,"hold":12,"slide":4,"touch":7,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11710,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25001,"notes":{"total":243,"tap":185,"hold":16,"slide":10,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11710,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25001,"notes":{"total":466,"tap":277,"hold":116,"slide":30,"touch":23,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11710,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"みぞれヤナギ & サファ太","romVersion":25001,"notes":{"total":770,"tap":502,"hold":70,"slide":55,"touch":50,"break_":93},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":511,"long":false},{"id":1711,"players":7019,"title":"おくすり飲んで寝よう","utTitle":null,"artist":"もちうつね","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":130,"releaseDate":"20240426","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11711,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25001,"notes":{"total":158,"tap":128,"hold":14,"slide":3,"touch":9,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11711,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25001,"notes":{"total":321,"tap":263,"hold":16,"slide":6,"touch":34,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11711,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"アマリリス","romVersion":25001,"notes":{"total":437,"tap":315,"hold":54,"slide":42,"touch":17,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11711,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":25001,"notes":{"total":743,"tap":547,"hold":69,"slide":98,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2610,"long":false},{"id":1712,"players":5908,"title":"バラバラ〜仮初レインボーローズ〜","utTitle":null,"artist":"花畑チャイカ&椎名唯華","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":135,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25001,"dxRomVersion":25001,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11712,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25001,"notes":{"total":99,"tap":75,"hold":14,"slide":2,"touch":5,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11712,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25001,"notes":{"total":196,"tap":156,"hold":17,"slide":4,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11712,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":25001,"notes":{"total":397,"tap":327,"hold":21,"slide":22,"touch":5,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11712,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":25001,"notes":{"total":461,"tap":286,"hold":33,"slide":80,"touch":16,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1713,"players":8864,"title":"QUATTUORUX","utTitle":null,"artist":"打打だいず Vs. Tanchiky Vs. からめる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":220,"releaseDate":"20240711","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11713,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25002,"notes":{"total":316,"tap":230,"hold":12,"slide":6,"touch":36,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11713,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"","romVersion":25002,"notes":{"total":438,"tap":343,"hold":31,"slide":17,"touch":31,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11713,"level_id":2,"level":"13","level_value":13.0,"note_designer":"鳩ホルダー","romVersion":25002,"notes":{"total":800,"tap":512,"hold":79,"slide":77,"touch":71,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11713,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太 Vs. Safari Vs. さふぁた","romVersion":25002,"notes":{"total":1122,"tap":584,"hold":68,"slide":104,"touch":66,"break_":300},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1714,"players":7508,"title":"匿名M","utTitle":null,"artist":"ピノキオピー","albums":["匿名m","匿名m","匿名m","请不要人肉我哦"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":140,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11714,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25000,"notes":{"total":167,"tap":131,"hold":13,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11714,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25000,"notes":{"total":299,"tap":228,"hold":19,"slide":14,"touch":26,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11714,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":25000,"notes":{"total":475,"tap":313,"hold":48,"slide":58,"touch":24,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11714,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"カマボコ君","romVersion":25000,"notes":{"total":653,"tap":453,"hold":62,"slide":83,"touch":36,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2611,"long":false},{"id":1715,"players":9432,"title":"ライアーダンサー","utTitle":{"111715":"[嘘]ライアーダンサー"},"artist":"マサラダ","albums":null,"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":25007,"dx":{"0":{"id":11715,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25003,"notes":{"total":202,"tap":156,"hold":18,"slide":4,"touch":19,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11715,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25003,"notes":{"total":385,"tap":326,"hold":18,"slide":12,"touch":19,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11715,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":25003,"notes":{"total":589,"tap":436,"hold":67,"slide":28,"touch":4,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11715,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":940,"tap":658,"hold":52,"slide":148,"touch":37,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111715":{"id":111715,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25007,"notes":{"total":362,"tap":157,"hold":0,"slide":158,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2747,"long":false},{"id":18,"players":4502,"title":"Love You","utTitle":{"100018":"[協]Love You"},"artist":"Q;indivi [cover]","albums":["love you","爱你","我喜欢你","love you","爱你","我喜欢你","love you","爱你","我喜欢你"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"POPSアニメ","bpm":135,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":18,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":130,"tap":91,"hold":33,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":18,"level_id":1,"level":"6","level_value":6.8,"note_designer":"-","romVersion":10000,"notes":{"total":198,"tap":150,"hold":23,"slide":21,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":18,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":184,"tap":104,"hold":61,"slide":16,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":18,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":198,"tap":91,"hold":51,"slide":51,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100018":{"id":100018,"level_id":0,"level":"12?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":348,"tap":268,"hold":44,"slide":30,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1716,"players":8273,"title":"バカ通信","utTitle":null,"artist":"isonosuke","albums":["笨蛋通信","baka通信","バカ通信","笨蛋通信","琪露诺通信","八力通信","笨蛋通讯","八力通讯","通信","baka通信","八嘎通信","泡通信"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":240,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11716,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":235,"tap":193,"hold":22,"slide":5,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11716,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":25003,"notes":{"total":379,"tap":317,"hold":22,"slide":8,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11716,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Luxizhel","romVersion":25003,"notes":{"total":648,"tap":519,"hold":26,"slide":57,"touch":30,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11716,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":997,"tap":586,"hold":105,"slide":142,"touch":89,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1717,"players":7032,"title":"LOSTPHANTASIA","utTitle":null,"artist":"岸田教団&THE明星ロケッツ×草野華余子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":133,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11717,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25003,"notes":{"total":133,"tap":107,"hold":13,"slide":4,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11717,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25003,"notes":{"total":235,"tap":182,"hold":18,"slide":10,"touch":21,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11717,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"鳩ホルダー","romVersion":25003,"notes":{"total":329,"tap":206,"hold":58,"slide":25,"touch":19,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11717,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":25003,"notes":{"total":549,"tap":362,"hold":61,"slide":68,"touch":25,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1718,"players":6644,"title":"Bad Apple!! feat.nomico (Tetsuya Komuro Remix)","utTitle":null,"artist":"Masayoshi Minoshima Remixed by 小室哲哉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":135,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11718,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25003,"notes":{"total":132,"tap":107,"hold":9,"slide":3,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11718,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25003,"notes":{"total":223,"tap":166,"hold":14,"slide":8,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11718,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"アマリリス","romVersion":25003,"notes":{"total":399,"tap":305,"hold":31,"slide":31,"touch":17,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11718,"level_id":3,"level":"13","level_value":13.1,"note_designer":"ロシェ@ペンギン","romVersion":25003,"notes":{"total":609,"tap":360,"hold":67,"slide":88,"touch":77,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":22,"players":5766,"title":"In Chaos","utTitle":{"100022":"[蔵]In Chaos"},"artist":"Hiro「Crackin’DJ」","albums":["in chaos","阴超市","in chaos","阴超市","in chaos","阴超市","\uD83D\uDC34","\uD83D\uDC34!","inchaos"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":10000,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":22,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":142,"tap":135,"hold":2,"slide":4,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":22,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":10000,"notes":{"total":221,"tap":200,"hold":10,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":22,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"譜面-100号","romVersion":10000,"notes":{"total":326,"tap":320,"hold":1,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":22,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ニャイン","romVersion":10000,"notes":{"total":380,"tap":328,"hold":28,"slide":17,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"チャン@DP皆伝","romVersion":10000,"notes":{"total":880,"tap":768,"hold":0,"slide":97,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100022":{"id":100022,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":943,"tap":824,"hold":0,"slide":110,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":1720,"players":7954,"title":"Re:Unknown X","utTitle":null,"artist":"まらしぃ","albums":["re:unknown x","rux","东方ed","东方et","rex","et2","未知x","油库里","endtime2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":190,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11720,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25003,"notes":{"total":257,"tap":208,"hold":14,"slide":8,"touch":23,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11720,"level_id":1,"level":"9","level_value":9.0,"note_designer":"","romVersion":25003,"notes":{"total":393,"tap":322,"hold":22,"slide":12,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11720,"level_id":2,"level":"12","level_value":12.5,"note_designer":"鳩ホルダー","romVersion":25003,"notes":{"total":649,"tap":505,"hold":30,"slide":36,"touch":29,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11720,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"アミノハバキリ","romVersion":25003,"notes":{"total":1189,"tap":983,"hold":76,"slide":50,"touch":59,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1721,"players":9327,"title":"INFiNiTE ENERZY -Overdoze-","utTitle":null,"artist":"Reku Mochizuki","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20240607","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11721,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25003,"notes":{"total":237,"tap":201,"hold":11,"slide":4,"touch":14,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11721,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25003,"notes":{"total":336,"tap":272,"hold":10,"slide":4,"touch":46,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11721,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":659,"tap":514,"hold":8,"slide":66,"touch":22,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11721,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Jack vs サファ太","romVersion":25003,"notes":{"total":849,"tap":692,"hold":40,"slide":51,"touch":4,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2750,"long":false},{"id":1722,"players":6321,"title":"Make Up Your World feat. キョンシーのCiちゃん & らっぷびと","utTitle":null,"artist":"t+pazolite & Srav3R","albums":["创造你的世界","创造","make up your world feat. キョンシーのciちゃん & らっぷびと"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20240705","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11722,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":232,"tap":187,"hold":20,"slide":4,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11722,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25004,"notes":{"total":404,"tap":335,"hold":16,"slide":6,"touch":45,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11722,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":25004,"notes":{"total":607,"tap":480,"hold":57,"slide":30,"touch":10,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11722,"level_id":3,"level":"13","level_value":13.4,"note_designer":"鳩ホルダー","romVersion":25004,"notes":{"total":775,"tap":494,"hold":39,"slide":111,"touch":59,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2624,"long":false},{"id":1723,"players":5054,"title":"BOOM! BOOM!! BOOM!!!","utTitle":null,"artist":"P*Light","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20240705","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11723,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25004,"notes":{"total":176,"tap":139,"hold":14,"slide":4,"touch":9,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11723,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25004,"notes":{"total":275,"tap":213,"hold":21,"slide":8,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11723,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":25004,"notes":{"total":448,"tap":308,"hold":45,"slide":25,"touch":21,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11723,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"ミニミライト","romVersion":25004,"notes":{"total":791,"tap":600,"hold":57,"slide":103,"touch":14,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1724,"players":4532,"title":"Everybody Say HARDCORE TANO*C","utTitle":null,"artist":"DJ Noriken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":170,"releaseDate":"20240705","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11724,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25004,"notes":{"total":245,"tap":212,"hold":9,"slide":8,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11724,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25004,"notes":{"total":392,"tap":334,"hold":23,"slide":5,"touch":14,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11724,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25004,"notes":{"total":563,"tap":384,"hold":24,"slide":40,"touch":25,"break_":90},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11724,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":25004,"notes":{"total":921,"tap":644,"hold":55,"slide":102,"touch":54,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1725,"players":6305,"title":"ミラクルポップ☆アドベンチャー!!!!!","utTitle":null,"artist":"DJ Genki","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20240705","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11725,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25004,"notes":{"total":256,"tap":219,"hold":16,"slide":6,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11725,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25004,"notes":{"total":403,"tap":331,"hold":19,"slide":11,"touch":37,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11725,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":25004,"notes":{"total":712,"tap":514,"hold":85,"slide":40,"touch":15,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11725,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Luxizhel","romVersion":25004,"notes":{"total":1010,"tap":742,"hold":62,"slide":134,"touch":12,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1726,"players":5631,"title":"Trust","utTitle":null,"artist":"Massive New Krew feat. 光吉猛修","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":155,"releaseDate":"20240705","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11726,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25004,"notes":{"total":177,"tap":141,"hold":12,"slide":8,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11726,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25004,"notes":{"total":322,"tap":262,"hold":21,"slide":7,"touch":29,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11726,"level_id":2,"level":"11","level_value":11.2,"note_designer":"Jack","romVersion":25004,"notes":{"total":551,"tap":358,"hold":81,"slide":59,"touch":24,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11726,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Luxizhel","romVersion":25004,"notes":{"total":783,"tap":573,"hold":36,"slide":95,"touch":24,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1727,"players":7764,"title":"ラヴィ","utTitle":null,"artist":"すりぃ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":183,"releaseDate":"20240719","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11727,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":25002,"notes":{"total":202,"tap":172,"hold":8,"slide":8,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11727,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":25002,"notes":{"total":372,"tap":314,"hold":24,"slide":8,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11727,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25002,"notes":{"total":570,"tap":403,"hold":45,"slide":59,"touch":30,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11727,"level_id":3,"level":"13","level_value":13.2,"note_designer":"サファ太","romVersion":25002,"notes":{"total":891,"tap":609,"hold":73,"slide":94,"touch":69,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2822,"long":false},{"id":1728,"players":6912,"title":"スティールユー","utTitle":null,"artist":"Omoi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20240719","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11728,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":25002,"notes":{"total":202,"tap":162,"hold":22,"slide":8,"touch":8,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11728,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":25002,"notes":{"total":398,"tap":349,"hold":9,"slide":6,"touch":28,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11728,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":25002,"notes":{"total":687,"tap":539,"hold":75,"slide":52,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11728,"level_id":3,"level":"13","level_value":13.1,"note_designer":"鳩ホルダー","romVersion":25002,"notes":{"total":1001,"tap":731,"hold":28,"slide":152,"touch":59,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2331,"long":false},{"id":1729,"players":5851,"title":"オシオキGIMMICK!!","utTitle":null,"artist":"Junky","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":176,"releaseDate":"20240719","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11729,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":25002,"notes":{"total":221,"tap":192,"hold":12,"slide":4,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11729,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":25002,"notes":{"total":376,"tap":318,"hold":22,"slide":6,"touch":28,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11729,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":25002,"notes":{"total":626,"tap":480,"hold":49,"slide":41,"touch":15,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11729,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":25002,"notes":{"total":832,"tap":568,"hold":32,"slide":153,"touch":50,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1730,"players":8553,"title":"偉大なる悪魔は実は大天使パトラちゃん様なのだ!","utTitle":null,"artist":"周防パトラ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":195,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11730,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":25003,"notes":{"total":211,"tap":155,"hold":18,"slide":6,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11730,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":25003,"notes":{"total":388,"tap":303,"hold":26,"slide":7,"touch":50,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11730,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":25003,"notes":{"total":576,"tap":412,"hold":79,"slide":38,"touch":20,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11730,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":25003,"notes":{"total":935,"tap":583,"hold":129,"slide":122,"touch":39,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1731,"players":6930,"title":"シュガーホリック","utTitle":null,"artist":"周防パトラ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":170,"releaseDate":"20240816","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11731,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":25003,"notes":{"total":180,"tap":128,"hold":22,"slide":4,"touch":22,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11731,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":25003,"notes":{"total":354,"tap":299,"hold":27,"slide":5,"touch":21,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11731,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":25003,"notes":{"total":505,"tap":375,"hold":51,"slide":32,"touch":18,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11731,"level_id":3,"level":"13","level_value":13.1,"note_designer":"じゃこレモン","romVersion":25003,"notes":{"total":722,"tap":524,"hold":58,"slide":86,"touch":30,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1733,"players":2480,"title":"MUSIC PЯAYER","utTitle":null,"artist":"A-One","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":168,"releaseDate":"20240401","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25002,"dxRomVersion":25002,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11733,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":25002,"notes":{"total":221,"tap":183,"hold":14,"slide":4,"touch":8,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11733,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":25002,"notes":{"total":372,"tap":332,"hold":8,"slide":6,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11733,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":25002,"notes":{"total":631,"tap":468,"hold":39,"slide":43,"touch":12,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11733,"level_id":3,"level":"13","level_value":13.5,"note_designer":"Luxizhel","romVersion":25002,"notes":{"total":980,"tap":720,"hold":20,"slide":138,"touch":24,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":73,"long":false},{"id":1734,"players":12148,"title":"壱雫空","utTitle":null,"artist":"MyGO!!!!!","albums":["壱雫空","木柜子","咕咕嘎嘎","mygo","壱雫空","木柜子","咕咕嘎嘎","mygo","壱雫空","木柜子","咕咕嘎嘎","mygo","老下空","它下空","一滴雨","粉色奶龙","匕下工","\uD83D\uDC27","壳卡空","那啥空","一雫空","高松灯","卖狗","五把伞","士冖匕雨下空"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":204,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":25000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11734,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":25000,"notes":{"total":128,"tap":101,"hold":9,"slide":4,"touch":13,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11734,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":25000,"notes":{"total":239,"tap":208,"hold":10,"slide":4,"touch":13,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11734,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":443,"tap":358,"hold":30,"slide":30,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11734,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25000,"notes":{"total":634,"tap":502,"hold":11,"slide":92,"touch":11,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2629,"long":false},{"id":1735,"players":8212,"title":"ザムザ","utTitle":null,"artist":"てにをは","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":121,"releaseDate":"20240524","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25003,"dxRomVersion":25003,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11735,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":25003,"notes":{"total":111,"tap":85,"hold":12,"slide":4,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11735,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":25003,"notes":{"total":238,"tap":175,"hold":19,"slide":4,"touch":30,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11735,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"まぐランド","romVersion":25003,"notes":{"total":359,"tap":250,"hold":32,"slide":36,"touch":13,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11735,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack&アマリリス","romVersion":25003,"notes":{"total":634,"tap":442,"hold":68,"slide":53,"touch":41,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2721,"long":false},{"id":1736,"players":3477,"title":"プリズム△▽リズム","utTitle":null,"artist":"Shoichiro Hirata feat.Sana","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11736,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":200,"tap":165,"hold":13,"slide":8,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11736,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25006,"notes":{"total":313,"tap":263,"hold":18,"slide":12,"touch":18,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11736,"level_id":2,"level":"10","level_value":10.0,"note_designer":"アマリリス","romVersion":25006,"notes":{"total":490,"tap":338,"hold":45,"slide":49,"touch":6,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11736,"level_id":3,"level":"13","level_value":13.0,"note_designer":"みそかつ侍","romVersion":25006,"notes":{"total":773,"tap":450,"hold":47,"slide":121,"touch":81,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":281,"players":2832,"title":"ダブルラリアット","utTitle":{"110281":"[回]ダブルラリアット"},"artist":"アゴアニキ","albums":null,"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":138,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":14000,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":281,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":14000,"notes":{"total":155,"tap":130,"hold":19,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":281,"level_id":1,"level":"6","level_value":6.6,"note_designer":"-","romVersion":14000,"notes":{"total":197,"tap":161,"hold":20,"slide":11,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":281,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"某S氏","romVersion":14000,"notes":{"total":277,"tap":175,"hold":52,"slide":42,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":281,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":14000,"notes":{"total":467,"tap":324,"hold":17,"slide":110,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110281":{"id":110281,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":868,"long":false},{"id":1737,"players":5415,"title":"パラドクスイヴ","utTitle":null,"artist":"Teary Planet","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11737,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":183,"tap":148,"hold":20,"slide":4,"touch":8,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11737,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25006,"notes":{"total":325,"tap":269,"hold":20,"slide":9,"touch":25,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11737,"level_id":2,"level":"11","level_value":11.0,"note_designer":"Jack","romVersion":25006,"notes":{"total":500,"tap":350,"hold":58,"slide":48,"touch":12,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11737,"level_id":3,"level":"13","level_value":13.5,"note_designer":"あまくちジンジャー","romVersion":25006,"notes":{"total":718,"tap":441,"hold":89,"slide":83,"touch":72,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1738,"players":5594,"title":"YKWTD","utTitle":null,"artist":"r-906","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":174,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11738,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":243,"tap":212,"hold":15,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11738,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25006,"notes":{"total":345,"tap":296,"hold":4,"slide":16,"touch":25,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11738,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":25006,"notes":{"total":521,"tap":351,"hold":50,"slide":66,"touch":35,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11738,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"カマボコ君","romVersion":25006,"notes":{"total":845,"tap":544,"hold":16,"slide":142,"touch":124,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1739,"players":6975,"title":"184億回のマルチトニック","utTitle":null,"artist":"Pizuya's Cell feat.中村さん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":184,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11739,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25006,"notes":{"total":277,"tap":241,"hold":14,"slide":6,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11739,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":25006,"notes":{"total":391,"tap":323,"hold":24,"slide":10,"touch":33,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11739,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"鳩ホルダー","romVersion":25006,"notes":{"total":658,"tap":490,"hold":54,"slide":62,"touch":14,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11739,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Jack","romVersion":25006,"notes":{"total":1144,"tap":886,"hold":31,"slide":116,"touch":73,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1740,"players":3991,"title":"果ての空、僕らが見た光。","utTitle":null,"artist":"TAKU1175 ft.駄々子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11740,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":227,"tap":194,"hold":17,"slide":4,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11740,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25006,"notes":{"total":358,"tap":308,"hold":16,"slide":7,"touch":26,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11740,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":25006,"notes":{"total":499,"tap":335,"hold":59,"slide":34,"touch":27,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11740,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":25006,"notes":{"total":820,"tap":590,"hold":49,"slide":103,"touch":50,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1741,"players":6803,"title":"Cryptarithm","utTitle":null,"artist":"削除","albums":["变态主义2","密码学","丽兹","莉兹","cryptarithm","密码学","削除鬼叫2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":175,"releaseDate":"20241011","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11741,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25006,"notes":{"total":283,"tap":241,"hold":19,"slide":7,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11741,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25006,"notes":{"total":389,"tap":326,"hold":14,"slide":15,"touch":25,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11741,"level_id":2,"level":"13","level_value":13.0,"note_designer":"みそかつ侍","romVersion":25006,"notes":{"total":703,"tap":553,"hold":39,"slide":67,"touch":13,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11741,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Safazhel","romVersion":25006,"notes":{"total":995,"tap":683,"hold":114,"slide":99,"touch":41,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1742,"players":5863,"title":"Ourania","utTitle":null,"artist":"satella feat.藍月なくる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":204,"releaseDate":"20241025","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11742,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25008,"notes":{"total":204,"tap":168,"hold":13,"slide":6,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11742,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25008,"notes":{"total":337,"tap":286,"hold":20,"slide":10,"touch":16,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11742,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"アマリリス","romVersion":25008,"notes":{"total":457,"tap":311,"hold":61,"slide":48,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11742,"level_id":3,"level":"13","level_value":13.4,"note_designer":"みぞれヤナギ & Jack","romVersion":25008,"notes":{"total":664,"tap":453,"hold":64,"slide":77,"touch":43,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1743,"players":5405,"title":"天蓋","utTitle":null,"artist":"花徒めと(Metomate)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":178,"releaseDate":"20241025","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11743,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25008,"notes":{"total":213,"tap":172,"hold":13,"slide":4,"touch":20,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11743,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25008,"notes":{"total":353,"tap":309,"hold":18,"slide":11,"touch":14,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11743,"level_id":2,"level":"11","level_value":11.3,"note_designer":"みぞれヤナギ","romVersion":25008,"notes":{"total":468,"tap":298,"hold":82,"slide":43,"touch":21,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11743,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"あまくちジンジャー","romVersion":25008,"notes":{"total":733,"tap":523,"hold":49,"slide":66,"touch":71,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1744,"players":6392,"title":"Deicide","utTitle":null,"artist":"void (Mournfinale) feat. 古泉葉月","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":163,"releaseDate":"20241025","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11744,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25008,"notes":{"total":213,"tap":178,"hold":14,"slide":6,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11744,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25008,"notes":{"total":384,"tap":342,"hold":20,"slide":9,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11744,"level_id":2,"level":"12","level_value":12.0,"note_designer":"鳩ホルダー","romVersion":25008,"notes":{"total":553,"tap":347,"hold":71,"slide":56,"touch":45,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11744,"level_id":3,"level":"14","level_value":14.4,"note_designer":"サファ太","romVersion":25008,"notes":{"total":874,"tap":591,"hold":71,"slide":78,"touch":35,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1745,"players":7095,"title":"氷滅の135小節","utTitle":null,"artist":"大国奏音","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20241025","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11745,"level_id":0,"level":"7","level_value":7.0,"note_designer":"","romVersion":25008,"notes":{"total":365,"tap":305,"hold":19,"slide":11,"touch":21,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11745,"level_id":1,"level":"9+","level_value":9.8,"note_designer":"","romVersion":25008,"notes":{"total":504,"tap":456,"hold":18,"slide":9,"touch":16,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11745,"level_id":2,"level":"13","level_value":13.4,"note_designer":"サファ太","romVersion":25008,"notes":{"total":740,"tap":480,"hold":50,"slide":67,"touch":33,"break_":110},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11745,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"BELiZHEL vs 7.3GHz","romVersion":25008,"notes":{"total":1125,"tap":802,"hold":33,"slide":130,"touch":25,"break_":135},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1746,"players":6774,"title":"Divide et impera!","utTitle":null,"artist":"BlackY a.k.a. WAiKURO survive","albums":["猫娘打架","divide et impera!","猫娘打架","击剑2","黑人打架2","分而治之","猫娘打架2","kop决胜bgm","打架2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":166,"releaseDate":"20241031","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25004,"dxRomVersion":25004,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11746,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25004,"notes":{"total":308,"tap":256,"hold":9,"slide":11,"touch":18,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11746,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25004,"notes":{"total":384,"tap":341,"hold":11,"slide":16,"touch":11,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11746,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":25004,"notes":{"total":741,"tap":475,"hold":57,"slide":62,"touch":38,"break_":109},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11746,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"The Dove","romVersion":25004,"notes":{"total":1225,"tap":859,"hold":102,"slide":95,"touch":69,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1747,"players":2188,"title":"地獄","utTitle":null,"artist":"164 feat.ELISA・小林太郎","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20241220","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11747,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":186,"tap":154,"hold":16,"slide":4,"touch":8,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11747,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":25009,"notes":{"total":313,"tap":269,"hold":16,"slide":6,"touch":17,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11747,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":477,"tap":343,"hold":43,"slide":45,"touch":23,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11747,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"Jack","romVersion":25009,"notes":{"total":706,"tap":489,"hold":53,"slide":80,"touch":62,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1748,"players":1856,"title":"シスターシスター","utTitle":null,"artist":"せきこみごはん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20241220","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11748,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":185,"tap":145,"hold":17,"slide":4,"touch":16,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11748,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25009,"notes":{"total":352,"tap":291,"hold":32,"slide":10,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11748,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":496,"tap":282,"hold":63,"slide":44,"touch":69,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11748,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Luxizhel","romVersion":25009,"notes":{"total":746,"tap":422,"hold":58,"slide":107,"touch":64,"break_":95},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1749,"players":1567,"title":"有明/Ariake","utTitle":null,"artist":"SIINCA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20241220","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11749,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25009,"notes":{"total":256,"tap":200,"hold":15,"slide":8,"touch":27,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11749,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25009,"notes":{"total":417,"tap":354,"hold":17,"slide":8,"touch":36,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11749,"level_id":2,"level":"12","level_value":12.4,"note_designer":"サファ太","romVersion":25009,"notes":{"total":586,"tap":375,"hold":86,"slide":45,"touch":56,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11749,"level_id":3,"level":"14","level_value":14.4,"note_designer":"BLaCK rOSE dIsEASe pATiENT","romVersion":25009,"notes":{"total":945,"tap":570,"hold":98,"slide":82,"touch":132,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1754,"players":3011,"title":"Elemental Ethnic","utTitle":null,"artist":"Yooh","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":163,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11754,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25006,"notes":{"total":306,"tap":262,"hold":8,"slide":4,"touch":20,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11754,"level_id":1,"level":"8","level_value":8.2,"note_designer":"","romVersion":25006,"notes":{"total":390,"tap":328,"hold":22,"slide":5,"touch":30,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11754,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":701,"tap":557,"hold":37,"slide":46,"touch":28,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11754,"level_id":3,"level":"14","level_value":14.0,"note_designer":"サファ太 & 鳩ホルダー","romVersion":25006,"notes":{"total":1082,"tap":836,"hold":64,"slide":89,"touch":23,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1078,"long":false},{"id":1755,"players":5326,"title":"美夜月鏡","utTitle":null,"artist":"かゆき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキCHUNITHM","bpm":164,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11755,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25006,"notes":{"total":240,"tap":207,"hold":8,"slide":11,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11755,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"","romVersion":25006,"notes":{"total":331,"tap":264,"hold":31,"slide":14,"touch":13,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11755,"level_id":2,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":25006,"notes":{"total":565,"tap":412,"hold":92,"slide":42,"touch":11,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11755,"level_id":3,"level":"14","level_value":14.2,"note_designer":"ロシェ@ペンギン","romVersion":25006,"notes":{"total":1011,"tap":676,"hold":102,"slide":82,"touch":116,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1760,"players":7560,"title":"勇者","utTitle":null,"artist":"YOASOBI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":104,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11760,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":94,"tap":73,"hold":4,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11760,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25006,"notes":{"total":153,"tap":110,"hold":10,"slide":6,"touch":14,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11760,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"まぐランド","romVersion":25006,"notes":{"total":271,"tap":217,"hold":15,"slide":18,"touch":5,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11760,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":25006,"notes":{"total":396,"tap":289,"hold":44,"slide":38,"touch":8,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11760,"level_id":4,"level":"13","level_value":13.2,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":517,"tap":369,"hold":17,"slide":52,"touch":44,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2584,"long":false},{"id":1761,"players":8223,"title":"病み垢ステロイド","utTitle":null,"artist":"かいりきベア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":203,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11761,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25006,"notes":{"total":250,"tap":199,"hold":18,"slide":6,"touch":22,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11761,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25006,"notes":{"total":364,"tap":293,"hold":35,"slide":8,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11761,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":25006,"notes":{"total":627,"tap":409,"hold":70,"slide":19,"touch":23,"break_":106},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11761,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":25006,"notes":{"total":911,"tap":458,"hold":79,"slide":171,"touch":168,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1763,"players":8339,"title":"ダーリンダンス","utTitle":null,"artist":"かいりきベア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":153,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11763,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":192,"tap":162,"hold":9,"slide":6,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11763,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25006,"notes":{"total":303,"tap":262,"hold":16,"slide":7,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11763,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Jack","romVersion":25006,"notes":{"total":551,"tap":362,"hold":81,"slide":53,"touch":24,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11763,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":25006,"notes":{"total":709,"tap":523,"hold":67,"slide":71,"touch":15,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11763,"level_id":4,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":25006,"notes":{"total":904,"tap":670,"hold":85,"slide":77,"touch":8,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2181,"long":false},{"id":1764,"players":5276,"title":"唱","utTitle":null,"artist":"Ado","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":132,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11764,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25006,"notes":{"total":138,"tap":104,"hold":12,"slide":6,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11764,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25006,"notes":{"total":239,"tap":199,"hold":16,"slide":6,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11764,"level_id":2,"level":"9","level_value":9.5,"note_designer":"サファ太","romVersion":25006,"notes":{"total":431,"tap":306,"hold":56,"slide":16,"touch":2,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11764,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":25006,"notes":{"total":577,"tap":335,"hold":69,"slide":84,"touch":51,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11764,"level_id":4,"level":"13","level_value":13.4,"note_designer":"鳩ホルダー","romVersion":25006,"notes":{"total":811,"tap":466,"hold":53,"slide":91,"touch":146,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2586,"long":false},{"id":1765,"players":4211,"title":"愛包ダンスホール","utTitle":null,"artist":"HIMEHINA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":141,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11765,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":182,"tap":151,"hold":13,"slide":4,"touch":4,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11765,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25006,"notes":{"total":315,"tap":275,"hold":16,"slide":9,"touch":14,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11765,"level_id":2,"level":"9","level_value":9.2,"note_designer":"サファ太","romVersion":25006,"notes":{"total":514,"tap":394,"hold":45,"slide":21,"touch":20,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11765,"level_id":3,"level":"13","level_value":13.1,"note_designer":"アマリリス","romVersion":25006,"notes":{"total":839,"tap":598,"hold":65,"slide":75,"touch":46,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2687,"long":false},{"id":1766,"players":1001,"title":"マツケンサンバⅡ","utTitle":null,"artist":"松平健 [covered by 光吉猛修]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":133,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11766,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":184,"tap":140,"hold":17,"slide":6,"touch":11,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11766,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25006,"notes":{"total":271,"tap":201,"hold":28,"slide":8,"touch":26,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11766,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Jack","romVersion":25006,"notes":{"total":430,"tap":266,"hold":38,"slide":48,"touch":28,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11766,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"じゃこレモン","romVersion":25006,"notes":{"total":637,"tap":407,"hold":39,"slide":98,"touch":30,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2493,"long":false},{"id":1767,"players":4469,"title":"デビルじゃないもん","utTitle":null,"artist":"DECO*27, ピノキオピー","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":154,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11767,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":206,"tap":171,"hold":11,"slide":2,"touch":6,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11767,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25006,"notes":{"total":319,"tap":278,"hold":14,"slide":9,"touch":13,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11767,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"アマリリス","romVersion":25006,"notes":{"total":487,"tap":376,"hold":25,"slide":32,"touch":22,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11767,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":772,"tap":578,"hold":27,"slide":97,"touch":38,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2671,"long":false},{"id":1769,"players":4686,"title":"ずんだパーリナイ","utTitle":null,"artist":"なみぐる feat.ずんだもん","albums":["ずんだパーリナイ","俊达派对之夜","俊达萌派对"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11769,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":195,"tap":159,"hold":12,"slide":6,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11769,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25006,"notes":{"total":330,"tap":286,"hold":16,"slide":10,"touch":14,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11769,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":25006,"notes":{"total":540,"tap":355,"hold":88,"slide":23,"touch":20,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11769,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ぴちネコ","romVersion":25006,"notes":{"total":998,"tap":520,"hold":114,"slide":92,"touch":162,"break_":110},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2632,"long":false},{"id":1770,"players":4964,"title":"Ultimate taste","utTitle":null,"artist":"ぱらどっと","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":200,"releaseDate":"20250521","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11770,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25006,"notes":{"total":248,"tap":192,"hold":11,"slide":8,"touch":25,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11770,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25006,"notes":{"total":364,"tap":289,"hold":19,"slide":10,"touch":43,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11770,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":25006,"notes":{"total":595,"tap":443,"hold":51,"slide":45,"touch":22,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11770,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":912,"tap":671,"hold":57,"slide":110,"touch":22,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1771,"players":8605,"title":"Chronomia","utTitle":null,"artist":"Lime","albums":["天文钟","chronomia","天文钟"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":227,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11771,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25006,"notes":{"total":270,"tap":230,"hold":14,"slide":7,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11771,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25006,"notes":{"total":406,"tap":345,"hold":18,"slide":11,"touch":27,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11771,"level_id":2,"level":"12","level_value":12.5,"note_designer":"鳩ホルダー","romVersion":25006,"notes":{"total":642,"tap":437,"hold":49,"slide":75,"touch":28,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11771,"level_id":3,"level":"14","level_value":14.2,"note_designer":"サファ太 respects for 小鳥遊さん","romVersion":25006,"notes":{"total":922,"tap":617,"hold":72,"slide":128,"touch":28,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2699,"long":false},{"id":1772,"players":6372,"title":"人マニア","utTitle":{"111772":"[X]人マニア"},"artist":"原口沙輔 feat.重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":25007,"dx":{"0":{"id":11772,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":157,"tap":128,"hold":13,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11772,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25008,"notes":{"total":244,"tap":192,"hold":18,"slide":8,"touch":22,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11772,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"きょむりん","romVersion":25008,"notes":{"total":420,"tap":213,"hold":49,"slide":26,"touch":80,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11772,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25008,"notes":{"total":783,"tap":422,"hold":26,"slide":95,"touch":168,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{"111772":{"id":111772,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":25007,"notes":{"total":801,"tap":362,"hold":47,"slide":76,"touch":230,"break_":86},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2745,"long":false},{"id":1773,"players":2098,"title":"転生林檎","utTitle":null,"artist":"ピノキオピー","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":145,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11773,"level_id":0,"level":"2","level_value":2.0,"note_designer":"","romVersion":25009,"notes":{"total":154,"tap":120,"hold":16,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11773,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25009,"notes":{"total":320,"tap":267,"hold":18,"slide":6,"touch":26,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11773,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":473,"tap":297,"hold":51,"slide":77,"touch":34,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11773,"level_id":3,"level":"13","level_value":13.1,"note_designer":"きょむりん","romVersion":25009,"notes":{"total":658,"tap":467,"hold":15,"slide":123,"touch":22,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1774,"players":3657,"title":"メイトなやつら(FEAT. 天開司, 佐藤ホームズ, あっくん大魔王 & 歌衣メイカ)","utTitle":null,"artist":"MonsterZ MATE","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":160,"releaseDate":"20241011","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11774,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":161,"tap":130,"hold":13,"slide":4,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11774,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25008,"notes":{"total":293,"tap":241,"hold":14,"slide":8,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11774,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":25008,"notes":{"total":447,"tap":310,"hold":30,"slide":50,"touch":19,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11774,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":25008,"notes":{"total":697,"tap":510,"hold":58,"slide":91,"touch":9,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1776,"players":3675,"title":"ゆけむり魂温泉 II","utTitle":null,"artist":"魂音泉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":140,"releaseDate":"20241011","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11776,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25008,"notes":{"total":217,"tap":184,"hold":15,"slide":6,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11776,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25008,"notes":{"total":318,"tap":269,"hold":16,"slide":10,"touch":16,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11776,"level_id":2,"level":"10","level_value":10.2,"note_designer":"Luxizhel","romVersion":25008,"notes":{"total":491,"tap":368,"hold":20,"slide":49,"touch":9,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11776,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"7.3Hz+Jack","romVersion":25008,"notes":{"total":905,"tap":682,"hold":55,"slide":74,"touch":26,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":627,"long":false},{"id":1777,"players":1801,"title":"人間が大好きなこわれた妖怪の唄","utTitle":null,"artist":"ビートまりお","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":55,"releaseDate":"20241011","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11777,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":194,"tap":167,"hold":12,"slide":4,"touch":7,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11777,"level_id":1,"level":"6","level_value":6.2,"note_designer":"","romVersion":25008,"notes":{"total":278,"tap":240,"hold":13,"slide":8,"touch":16,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11777,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":25008,"notes":{"total":408,"tap":300,"hold":50,"slide":11,"touch":29,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11777,"level_id":3,"level":"13","level_value":13.2,"note_designer":"じゃこレモン","romVersion":25008,"notes":{"total":481,"tap":342,"hold":11,"slide":91,"touch":11,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1778,"players":7962,"title":"シリウスの輝きのように","utTitle":null,"artist":"鳳 ここな(CV.石見舞菜香)、静香(CV.長谷川育美)、カトリナ・グリーベル(CV.天城サリー)、新妻八恵(CV.長縄まりあ)、柳場ぱんだ(CV.大空直美)、流石知冴(CV.佐々木李子)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":158,"releaseDate":"20241108","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11778,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":153,"tap":127,"hold":15,"slide":2,"touch":6,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11778,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25006,"notes":{"total":286,"tap":227,"hold":12,"slide":11,"touch":35,"break_":1},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11778,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"まぐランド","romVersion":25006,"notes":{"total":416,"tap":331,"hold":31,"slide":13,"touch":30,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11778,"level_id":3,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":25006,"notes":{"total":478,"tap":284,"hold":55,"slide":78,"touch":32,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11778,"level_id":4,"level":"14","level_value":14.0,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":815,"tap":656,"hold":10,"slide":99,"touch":4,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2717,"long":false},{"id":1779,"players":6347,"title":"プラネタリウム・レヴュー","utTitle":null,"artist":"千寿 暦(CV.鳥部万里子)、ラモーナ・ウォルフ(CV.田中美海)、王 雪(CV.花井美春)、リリヤ・クルトベイ(CV.安齋由香里)、与那国緋花里(CV.下地紫野)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":170,"releaseDate":"20241108","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11779,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":102,"tap":75,"hold":6,"slide":4,"touch":14,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11779,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25006,"notes":{"total":231,"tap":196,"hold":14,"slide":6,"touch":11,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11779,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":356,"tap":267,"hold":34,"slide":27,"touch":0,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11779,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":25006,"notes":{"total":388,"tap":255,"hold":33,"slide":82,"touch":3,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11779,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":25006,"notes":{"total":574,"tap":425,"hold":24,"slide":62,"touch":15,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1780,"players":2309,"title":"演劇","utTitle":null,"artist":"ナノウ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":176,"releaseDate":"20241108","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11780,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":175,"tap":124,"hold":15,"slide":4,"touch":29,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11780,"level_id":1,"level":"6","level_value":6.0,"note_designer":"","romVersion":25008,"notes":{"total":256,"tap":218,"hold":14,"slide":8,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11780,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"アマリリス","romVersion":25008,"notes":{"total":426,"tap":304,"hold":36,"slide":38,"touch":31,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11780,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":25008,"notes":{"total":587,"tap":408,"hold":34,"slide":90,"touch":35,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1781,"players":2140,"title":"無間嫉妬劇場『666』","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":108,"releaseDate":"20241108","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11781,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":147,"tap":116,"hold":11,"slide":8,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11781,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25008,"notes":{"total":300,"tap":264,"hold":18,"slide":5,"touch":11,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11781,"level_id":2,"level":"10","level_value":10.5,"note_designer":"サファ太","romVersion":25008,"notes":{"total":447,"tap":331,"hold":26,"slide":42,"touch":11,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11781,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":25008,"notes":{"total":666,"tap":476,"hold":57,"slide":80,"touch":21,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2183,"long":false},{"id":1782,"players":6103,"title":"夢現妄想世界","utTitle":null,"artist":"夢限大みゅーたいぷ","albums":["梦限大","夢現妄想世界","梦限大","梦现妄想世界"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":195,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11782,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25008,"notes":{"total":189,"tap":138,"hold":16,"slide":8,"touch":19,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11782,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25008,"notes":{"total":402,"tap":336,"hold":20,"slide":14,"touch":26,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11782,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":25008,"notes":{"total":622,"tap":427,"hold":81,"slide":25,"touch":51,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11782,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":25008,"notes":{"total":942,"tap":628,"hold":46,"slide":195,"touch":16,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1783,"players":2741,"title":"snooze","utTitle":null,"artist":"wotaku feat.SHIKI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11783,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":216,"tap":182,"hold":13,"slide":4,"touch":6,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11783,"level_id":1,"level":"6","level_value":6.8,"note_designer":"","romVersion":25009,"notes":{"total":345,"tap":293,"hold":12,"slide":10,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11783,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":25009,"notes":{"total":616,"tap":407,"hold":46,"slide":62,"touch":45,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11783,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":25009,"notes":{"total":868,"tap":572,"hold":100,"slide":104,"touch":23,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2454,"long":false},{"id":1784,"players":6173,"title":"イガク","utTitle":null,"artist":"原口沙輔 feat.重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":170,"releaseDate":"20240927","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25008,"dxRomVersion":25008,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11784,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25008,"notes":{"total":151,"tap":110,"hold":12,"slide":6,"touch":19,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11784,"level_id":1,"level":"7","level_value":7.0,"note_designer":"","romVersion":25008,"notes":{"total":286,"tap":230,"hold":13,"slide":7,"touch":30,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11784,"level_id":2,"level":"11","level_value":11.2,"note_designer":"みそかつ侍","romVersion":25008,"notes":{"total":520,"tap":279,"hold":26,"slide":32,"touch":45,"break_":138},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11784,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"鳩ホルダー","romVersion":25008,"notes":{"total":793,"tap":398,"hold":75,"slide":140,"touch":125,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2720,"long":false},{"id":1785,"players":1157,"title":"てらてら","utTitle":null,"artist":"和田たけあき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":190,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11785,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":181,"tap":151,"hold":11,"slide":6,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11785,"level_id":1,"level":"7","level_value":7.2,"note_designer":"","romVersion":25009,"notes":{"total":383,"tap":328,"hold":18,"slide":6,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11785,"level_id":2,"level":"10","level_value":10.5,"note_designer":"みそかつ侍","romVersion":25009,"notes":{"total":528,"tap":382,"hold":41,"slide":33,"touch":14,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11785,"level_id":3,"level":"13","level_value":13.1,"note_designer":"アマリリス","romVersion":25009,"notes":{"total":779,"tap":575,"hold":23,"slide":92,"touch":37,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2513,"long":false},{"id":1786,"players":2732,"title":"Empire of Winter","utTitle":null,"artist":"Street","albums":["冬日皇帝","empire of winter"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":175,"releaseDate":"20250110","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11786,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":180,"tap":140,"hold":14,"slide":4,"touch":20,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11786,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25009,"notes":{"total":300,"tap":247,"hold":12,"slide":10,"touch":27,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11786,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":25009,"notes":{"total":416,"tap":267,"hold":67,"slide":53,"touch":16,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11786,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":25009,"notes":{"total":737,"tap":527,"hold":48,"slide":101,"touch":37,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1787,"players":1254,"title":"迷える音色は恋の唄","utTitle":null,"artist":"からとP⍺ոchii少年 feat.はるの","albums":["迷色","色恋","迷音色恋","迷音","迷える音色は恋の唄","恋歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":165,"releaseDate":"20250110","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11787,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":184,"tap":151,"hold":9,"slide":4,"touch":7,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11787,"level_id":1,"level":"6","level_value":6.7,"note_designer":"","romVersion":25009,"notes":{"total":326,"tap":277,"hold":12,"slide":4,"touch":29,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11787,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":525,"tap":346,"hold":35,"slide":61,"touch":49,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11787,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":833,"tap":667,"hold":28,"slide":88,"touch":10,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2350,"long":false},{"id":1788,"players":2364,"title":"Löschen","utTitle":null,"artist":"BlackY feat. Risa Yuzuki","albums":["loschen","löschen","loschen","删除","螺丝陈"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":181,"releaseDate":"20250110","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11788,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25009,"notes":{"total":240,"tap":207,"hold":16,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11788,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25009,"notes":{"total":396,"tap":358,"hold":12,"slide":6,"touch":16,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11788,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":554,"tap":419,"hold":46,"slide":45,"touch":15,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11788,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":25009,"notes":{"total":964,"tap":698,"hold":51,"slide":78,"touch":68,"break_":69},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1789,"players":2443,"title":"Abstruse Dilemma","utTitle":null,"artist":"Ashrount vs. 打打だいず","albums":["ad","AD","abstruse dilemma","ad","鸟屎2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":216,"releaseDate":"20250110","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11789,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25009,"notes":{"total":300,"tap":243,"hold":30,"slide":5,"touch":15,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11789,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"","romVersion":25009,"notes":{"total":513,"tap":467,"hold":17,"slide":10,"touch":15,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11789,"level_id":2,"level":"12","level_value":12.4,"note_designer":"Luxizhel","romVersion":25009,"notes":{"total":649,"tap":449,"hold":85,"slide":43,"touch":32,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11789,"level_id":3,"level":"14","level_value":14.4,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":1048,"tap":704,"hold":44,"slide":121,"touch":87,"break_":92},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1790,"players":940,"title":"HYP3RTRIBE","utTitle":null,"artist":"sky_delta vs KO3 vs Tanchiky","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":190,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11790,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25009,"notes":{"total":283,"tap":236,"hold":18,"slide":4,"touch":18,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11790,"level_id":1,"level":"8","level_value":8.0,"note_designer":"","romVersion":25009,"notes":{"total":415,"tap":362,"hold":16,"slide":6,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11790,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":25009,"notes":{"total":608,"tap":401,"hold":119,"slide":52,"touch":18,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11790,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Luxizhel","romVersion":25009,"notes":{"total":936,"tap":673,"hold":73,"slide":76,"touch":54,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1791,"players":793,"title":"On your mark (104期 Ver.)","utTitle":null,"artist":"蓮ノ空女学院スクールアイドルクラブ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPSアニメ","bpm":154,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11791,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":165,"tap":131,"hold":17,"slide":4,"touch":8,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11791,"level_id":1,"level":"6","level_value":6.7,"note_designer":"","romVersion":25009,"notes":{"total":322,"tap":268,"hold":16,"slide":10,"touch":26,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11791,"level_id":2,"level":"9","level_value":9.5,"note_designer":"まぐランド","romVersion":25009,"notes":{"total":478,"tap":350,"hold":54,"slide":27,"touch":27,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11791,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":642,"tap":433,"hold":64,"slide":75,"touch":36,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2683,"long":false},{"id":1792,"players":2832,"title":"はげしこの夜 -Psylent Crazy Night-","utTitle":null,"artist":"aran & Kobaryo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":135,"releaseDate":"20241224","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11792,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25006,"notes":{"total":181,"tap":143,"hold":12,"slide":6,"touch":14,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11792,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25006,"notes":{"total":328,"tap":272,"hold":16,"slide":10,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11792,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"サファ太","romVersion":25006,"notes":{"total":579,"tap":424,"hold":39,"slide":44,"touch":16,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11792,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"じゃこレモン","romVersion":25006,"notes":{"total":758,"tap":583,"hold":51,"slide":75,"touch":19,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1793,"players":2610,"title":"エイプリルスター","utTitle":null,"artist":"OSTER project","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":185,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11793,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":241,"tap":213,"hold":13,"slide":3,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11793,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25009,"notes":{"total":363,"tap":310,"hold":25,"slide":12,"touch":13,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11793,"level_id":2,"level":"10","level_value":10.2,"note_designer":"みそかつ侍","romVersion":25009,"notes":{"total":574,"tap":433,"hold":44,"slide":48,"touch":4,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11793,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":25009,"notes":{"total":852,"tap":649,"hold":64,"slide":98,"touch":9,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1794,"players":3134,"title":"オーバーライド","utTitle":null,"artist":"吉田夜世","albums":[],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":204,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11794,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":246,"tap":219,"hold":9,"slide":4,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11794,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25009,"notes":{"total":400,"tap":344,"hold":17,"slide":8,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11794,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":25009,"notes":{"total":571,"tap":385,"hold":94,"slide":30,"touch":9,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11794,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Luxizhel","romVersion":25009,"notes":{"total":879,"tap":638,"hold":39,"slide":155,"touch":9,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2746,"long":false},{"id":1795,"players":2197,"title":"右に曲ガール","utTitle":null,"artist":"はるふり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":175,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11795,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25009,"notes":{"total":170,"tap":142,"hold":11,"slide":4,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11795,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25009,"notes":{"total":331,"tap":282,"hold":11,"slide":6,"touch":28,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11795,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":551,"tap":461,"hold":47,"slide":15,"touch":16,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11795,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"鳩ホルダー","romVersion":25009,"notes":{"total":667,"tap":438,"hold":62,"slide":110,"touch":29,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1796,"players":2566,"title":"ウルトラトレーラー","utTitle":null,"artist":"マサラダ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":155,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11796,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":241,"tap":212,"hold":13,"slide":4,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11796,"level_id":1,"level":"7","level_value":7.5,"note_designer":"","romVersion":25009,"notes":{"total":408,"tap":368,"hold":14,"slide":8,"touch":15,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11796,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":25009,"notes":{"total":636,"tap":387,"hold":65,"slide":42,"touch":56,"break_":86},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11796,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":25009,"notes":{"total":1027,"tap":676,"hold":18,"slide":140,"touch":113,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1797,"players":2558,"title":"バベル","utTitle":null,"artist":"いよわ feat.重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":225,"releaseDate":"20241206","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25009,"dxRomVersion":25009,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11797,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25009,"notes":{"total":219,"tap":174,"hold":14,"slide":8,"touch":16,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11797,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"","romVersion":25009,"notes":{"total":353,"tap":302,"hold":20,"slide":4,"touch":24,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11797,"level_id":2,"level":"10","level_value":10.5,"note_designer":"アマリリス","romVersion":25009,"notes":{"total":488,"tap":351,"hold":62,"slide":43,"touch":18,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11797,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":25009,"notes":{"total":782,"tap":511,"hold":68,"slide":127,"touch":39,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1805,"players":4197,"title":"リアライズ","utTitle":null,"artist":"柊マグネタイト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25006,"dxRomVersion":25006,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11805,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25006,"notes":{"total":175,"tap":135,"hold":20,"slide":4,"touch":12,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11805,"level_id":1,"level":"6","level_value":6.5,"note_designer":"","romVersion":25006,"notes":{"total":353,"tap":297,"hold":20,"slide":9,"touch":25,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11805,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Luxizhel","romVersion":25006,"notes":{"total":518,"tap":374,"hold":70,"slide":44,"touch":9,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11805,"level_id":3,"level":"13","level_value":13.2,"note_designer":"ロシェ@ペンギン","romVersion":25006,"notes":{"total":836,"tap":632,"hold":53,"slide":87,"touch":37,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2814,"long":false},{"id":417,"players":16785,"title":"ウミユリ海底譚","utTitle":{"110417":"[習]ウミユリ海底譚"},"artist":"n-buna","albums":["ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","金朗","ウミユリ海底譚","海百合","海百合海底谭","水神3","在海下面","初音跳海","海底潭","谭","海魔王","初音未来跳海","海底谭","海底捞"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":120,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":15005,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":417,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":15005,"notes":{"total":180,"tap":164,"hold":6,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":417,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":15005,"notes":{"total":380,"tap":336,"hold":34,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":417,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"某S氏","romVersion":15005,"notes":{"total":463,"tap":386,"hold":39,"slide":22,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":417,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":15005,"notes":{"total":759,"tap":648,"hold":21,"slide":76,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110417":{"id":110417,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":666,"tap":549,"hold":7,"slide":109,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":225,"long":false},{"id":199,"players":9324,"title":"チルノのパーフェクトさんすう教室","utTitle":{"100199":"[蛸]チルノのパーフェクトさんすう教室"},"artist":"ARM+夕野ヨシミ(IOSYS)feat. miko","albums":["チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室","チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室","6a","koyomi","チルノのパーフェクトさんすう教室","琪露诺的完美算术教室","琪露诺的完美算数教室","数学课堂","⑨","算数教室","琪露诺","⑨章算数","baka","算术教室"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":175,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12000,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":199,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":12000,"notes":{"total":122,"tap":84,"hold":30,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":199,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":12000,"notes":{"total":207,"tap":157,"hold":27,"slide":18,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":199,"level_id":2,"level":"10","level_value":10.4,"note_designer":"はっぴー","romVersion":12000,"notes":{"total":364,"tap":248,"hold":86,"slide":26,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":199,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"某S氏","romVersion":12000,"notes":{"total":526,"tap":402,"hold":74,"slide":29,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100199":{"id":100199,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":309,"tap":58,"hold":217,"slide":27,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":96,"long":false},{"id":206,"players":3058,"title":"しゅわスパ大作戦☆","utTitle":{"100206":"[星]しゅわスパ大作戦☆"},"artist":"SOUND HOLIC feat. Nana Takahashi","albums":["しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战","しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战","しゅわスパ大作戦☆","下药歌","ymn","修哇大作战","炎拳","修哇","大作战"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"東方Project","bpm":140,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12004,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":206,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":12004,"notes":{"total":166,"tap":115,"hold":28,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":206,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12004,"notes":{"total":264,"tap":191,"hold":36,"slide":18,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":206,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":12004,"notes":{"total":368,"tap":271,"hold":40,"slide":51,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":206,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"某S氏","romVersion":12004,"notes":{"total":553,"tap":391,"hold":54,"slide":81,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100206":{"id":100206,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":574,"tap":405,"hold":54,"slide":81,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":1026,"long":false},{"id":220,"players":3328,"title":"セガサターン起動音[H.][Remix]","utTitle":{"100220":"[宴]セガサターン起動音[H.][Remix]"},"artist":"Hiro","albums":["セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","セガサターン起動音[h.][remix]","世嘉土星启动音","大b圈","ss","转圈接四押","sbga","土星","启动音","起动音","世嘉土星","夸脱","mon3tr"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"ゲームバラエティ","bpm":148,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12006,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":220,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":12006,"notes":{"total":60,"tap":42,"hold":10,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":220,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":12006,"notes":{"total":166,"tap":137,"hold":10,"slide":10,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":220,"level_id":2,"level":"11","level_value":11.1,"note_designer":"mai-Star","romVersion":12006,"notes":{"total":256,"tap":192,"hold":37,"slide":14,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":220,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":368,"tap":271,"hold":4,"slide":72,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100220":{"id":100220,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":950,"tap":904,"hold":0,"slide":2,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2450,"long":false},{"id":1919,"players":1089,"title":"エンジェル ドリーム","utTitle":null,"artist":"「太鼓の達人」より","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20251224","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25007,"dxRomVersion":25007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11919,"level_id":0,"level":"3","level_value":3.0,"note_designer":"","romVersion":25007,"notes":{"total":218,"tap":174,"hold":18,"slide":4,"touch":18,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11919,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25007,"notes":{"total":355,"tap":309,"hold":19,"slide":12,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11919,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Luxizhel","romVersion":25007,"notes":{"total":539,"tap":407,"hold":44,"slide":48,"touch":21,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11919,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":25007,"notes":{"total":834,"tap":592,"hold":56,"slide":101,"touch":24,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1920,"players":1992,"title":"Hurtling Boys","utTitle":null,"artist":"さだきち「太鼓の達人」より","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":195,"releaseDate":"20250926","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25007,"dxRomVersion":25007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11920,"level_id":0,"level":"5","level_value":5.0,"note_designer":"","romVersion":25007,"notes":{"total":233,"tap":201,"hold":9,"slide":4,"touch":10,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11920,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25007,"notes":{"total":360,"tap":314,"hold":12,"slide":6,"touch":24,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11920,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":25007,"notes":{"total":609,"tap":376,"hold":92,"slide":79,"touch":3,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11920,"level_id":3,"level":"14","level_value":14.5,"note_designer":"鳩ホルダー","romVersion":25007,"notes":{"total":931,"tap":694,"hold":76,"slide":92,"touch":38,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":227,"players":13083,"title":"Garakuta Doll Play","utTitle":{"100227":"[は]Garakuta Doll Play","110227":"[J]Garakuta Doll Play","120227":"[r]Garakuta Doll Play","130227":"[玉]Garakuta Doll Play","140227":"[某]Garakuta Doll Play"},"artist":"t+pazolite","albums":["garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","张钰泽","garakuta doll play","lbw","果丹皮","shq","性感小丑在线发牌","酸奶","金盆","扑克牌","管理","鬼牌","轨道炮","绿豆","小丑牌","小丑","\uD83E\uDD21","joker","\uD83C\uDCCF","guy","gdp","国内生产总值"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":256,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":12005,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":227,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":12005,"notes":{"total":246,"tap":209,"hold":21,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":227,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":12005,"notes":{"total":392,"tap":330,"hold":20,"slide":3,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":227,"level_id":2,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":12005,"notes":{"total":740,"tap":613,"hold":60,"slide":36,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":227,"level_id":3,"level":"14","level_value":14.2,"note_designer":"チャン@DP皆伝","romVersion":12005,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":227,"level_id":4,"level":"14+","level_value":14.8,"note_designer":"小鳥遊さん","romVersion":12005,"notes":{"total":1010,"tap":792,"hold":35,"slide":154,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100227":{"id":100227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":933,"tap":659,"hold":52,"slide":202,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":false,"ot":true},"110227":{"id":110227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":877,"tap":718,"hold":6,"slide":134,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"120227":{"id":120227,"level_id":0,"level":"14?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":999,"tap":769,"hold":34,"slide":177,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":false,"ot":true},"130227":{"id":130227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1070,"tap":660,"hold":31,"slide":126,"touch":0,"break_":253},"notesPath":null,"dx":false,"sd":false,"ot":true},"140227":{"id":140227,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":1204,"tap":699,"hold":44,"slide":120,"touch":0,"break_":341},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":226,"long":false},{"id":230,"players":6379,"title":"CYCLES","utTitle":{"100230":"[宴]CYCLES"},"artist":"Masayoshi Minoshima feat. 綾倉盟","albums":["cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路","cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路","cycles","轮回","\uD83D\uDC0E\uD83D\uDC38\uD83E\uDD8C","马瓦鲁","cyc","马哇路","马洼路","马瓦路","马挖路","饼饼快乐曲","吗哇路","cycle","\uD83D\uDC34\uD83D\uDC38\uD83E\uDD8C","挖马路"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":135,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":13003,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":230,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":13003,"notes":{"total":187,"tap":143,"hold":31,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":230,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":13003,"notes":{"total":299,"tap":244,"hold":32,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":230,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":13003,"notes":{"total":366,"tap":230,"hold":19,"slide":97,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":230,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":13003,"notes":{"total":496,"tap":252,"hold":8,"slide":217,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100230":{"id":100230,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":780,"tap":357,"hold":0,"slide":361,"touch":0,"break_":62},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":715,"long":false},{"id":1944,"players":7469,"title":"Restricted Access","utTitle":null,"artist":"Knighthood","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":185,"releaseDate":"20260123","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25007,"dxRomVersion":25007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11944,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25007,"notes":{"total":217,"tap":172,"hold":15,"slide":4,"touch":20,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11944,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25007,"notes":{"total":389,"tap":312,"hold":13,"slide":11,"touch":45,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11944,"level_id":2,"level":"11","level_value":11.5,"note_designer":"アマリリス","romVersion":25007,"notes":{"total":535,"tap":309,"hold":58,"slide":38,"touch":72,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11944,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":25007,"notes":{"total":920,"tap":556,"hold":68,"slide":98,"touch":165,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1945,"players":7221,"title":"胡蝶乃舞","utTitle":null,"artist":"Srav3R","albums":["蝴蝶乃舞","蝴蝶","胡蝶乃舞","蝴蝶乃舞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":180,"releaseDate":"20260123","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25007,"dxRomVersion":25007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11945,"level_id":0,"level":"4","level_value":4.0,"note_designer":"","romVersion":25007,"notes":{"total":206,"tap":177,"hold":10,"slide":4,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11945,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"","romVersion":25007,"notes":{"total":318,"tap":266,"hold":17,"slide":6,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11945,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":25007,"notes":{"total":526,"tap":345,"hold":65,"slide":61,"touch":17,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11945,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"じゃこレモン","romVersion":25007,"notes":{"total":832,"tap":632,"hold":45,"slide":97,"touch":20,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1946,"players":7758,"title":"零號車輛","utTitle":null,"artist":"seatrus","albums":["零号列车","零號車輛","零号车辆","灵车","零车","零号列车"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲームバラエティ","bpm":240,"releaseDate":"20260123","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":true,"jp":true,"m2l":false,"firstRomVersion":25007,"dxRomVersion":25007,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11946,"level_id":0,"level":"6","level_value":6.0,"note_designer":"","romVersion":25007,"notes":{"total":303,"tap":263,"hold":15,"slide":8,"touch":7,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11946,"level_id":1,"level":"8","level_value":8.5,"note_designer":"","romVersion":25007,"notes":{"total":410,"tap":354,"hold":17,"slide":13,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11946,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":25007,"notes":{"total":656,"tap":460,"hold":63,"slide":34,"touch":38,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11946,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"はっぴー","romVersion":25007,"notes":{"total":1143,"tap":836,"hold":83,"slide":92,"touch":72,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":259,"players":4901,"title":"ぽっぴっぽー","utTitle":{"100259":"[協]ぽっぴっぽー"},"artist":" ","albums":["ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米","ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米","ぽっぴっぽー","菜蔬汁","popipo","波比波比","蔬菜歌","advent","波比波","蔬菜汁","哈基米"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":150,"releaseDate":"20240118","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":12006,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":259,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":12006,"notes":{"total":116,"tap":109,"hold":3,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":259,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":12006,"notes":{"total":268,"tap":234,"hold":2,"slide":14,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":259,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":362,"tap":285,"hold":52,"slide":17,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":259,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":12006,"notes":{"total":507,"tap":430,"hold":36,"slide":37,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100259":{"id":100259,"level_id":0,"level":"13+?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":868,"tap":659,"hold":141,"slide":56,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":2132,"long":false},{"id":532,"players":6005,"title":"洗脳","utTitle":{"110532":"[奏]洗脳"},"artist":"ゆりん・柿チョコ×Neru","albums":["洗脳","洗脑","洗脳","洗脑","9个绝赞粉5个","洗脳","洗脑"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":125,"releaseDate":"20240912","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":true,"jp":true,"m2l":false,"firstRomVersion":25000,"dxRomVersion":0,"sdRomVersion":17004,"utRomVersion":25000,"dx":{},"sd":{"0":{"id":532,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":17004,"notes":{"total":200,"tap":170,"hold":20,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":532,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":17004,"notes":{"total":288,"tap":236,"hold":26,"slide":22,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":532,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":17004,"notes":{"total":461,"tap":372,"hold":33,"slide":48,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":532,"level_id":3,"level":"12","level_value":12.4,"note_designer":"Jack","romVersion":17004,"notes":{"total":644,"tap":516,"hold":47,"slide":72,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":532,"level_id":4,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":17004,"notes":{"total":777,"tap":653,"hold":63,"slide":52,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110532":{"id":110532,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":25000,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":227,"long":false},{"id":553,"players":7848,"title":"チュルリラ・チュルリラ・ダッダッダ!","utTitle":{"110553":"[奏]チュルリラ・チュルリラ・ダッダッダ!"},"artist":"和田たけあき(くらげP)","albums":["チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","チュルリラ・チュルリラ・ダッダッダ!","啾噜哩啦啾噜哩啦哒哒哒","哒哒哒","告老师","jk结月缘","告状","告密教室","告密老师","ddd","结月缘杀人","暗杀教室","啾噜哩啦","ダッダッダ","秋露里拉","打小报告","啾噜哩啦·啾噜哩啦·哒哒哒","撒撒米糕大"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"niconicoボーカロイド","bpm":220,"releaseDate":"20240321","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":true,"jp":true,"m2l":false,"firstRomVersion":24500,"dxRomVersion":0,"sdRomVersion":18005,"utRomVersion":24500,"dx":{},"sd":{"0":{"id":553,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":18005,"notes":{"total":281,"tap":256,"hold":16,"slide":2,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":553,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":18005,"notes":{"total":475,"tap":450,"hold":10,"slide":3,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":553,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":18005,"notes":{"total":580,"tap":478,"hold":74,"slide":15,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":553,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":18005,"notes":{"total":840,"tap":610,"hold":36,"slide":169,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110553":{"id":110553,"level_id":0,"level":"13?","level_value":0.0,"note_designer":"","romVersion":24500,"notes":{"total":0,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":374,"long":false},{"id":327,"players":5999,"title":"タカハせ!名人マン","utTitle":{"100327":"[狂]タカハせ!名人マン"},"artist":"ビートまりお + ARM feat. 高橋名人","albums":["タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人","タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人","タカハせ!名人マン","\uD83D\uDE09","たかはし","光头","光头16连","高桥名人","高桥","名人"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"maimai","bpm":150,"releaseDate":"20231225","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24010,"dxRomVersion":0,"sdRomVersion":13007,"utRomVersion":24010,"dx":{},"sd":{"0":{"id":327,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":13007,"notes":{"total":133,"tap":103,"hold":17,"slide":6,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":327,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":13007,"notes":{"total":290,"tap":247,"hold":17,"slide":9,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":327,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":13007,"notes":{"total":383,"tap":281,"hold":47,"slide":27,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":327,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":13007,"notes":{"total":571,"tap":437,"hold":64,"slide":48,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"100327":{"id":100327,"level_id":0,"level":"14+?","level_value":0.0,"note_designer":"","romVersion":24010,"notes":{"total":1252,"tap":682,"hold":564,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":579,"players":2039,"title":"ポップミュージックは僕のもの","utTitle":{"110579":"[協]ポップミュージックは僕のもの"},"artist":"ONIGAWARA","albums":["ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子","ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子","ポップミュージックは僕のもの","星星蛋白","超市里莎莎","南通","男同歌","我徒弟呢","男同","男童歌","照镜子","流行音乐是我的东西","镜子"],"hasDx":false,"hasSd":true,"hasUt":true,"genre":"POPSアニメ","bpm":135,"releaseDate":"20240118","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":true,"jp":true,"m2l":false,"firstRomVersion":24000,"dxRomVersion":0,"sdRomVersion":18012,"utRomVersion":24000,"dx":{},"sd":{"0":{"id":579,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":18012,"notes":{"total":152,"tap":115,"hold":26,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":579,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":18012,"notes":{"total":383,"tap":335,"hold":22,"slide":19,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":579,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"チャン@DP皆伝","romVersion":18012,"notes":{"total":364,"tap":272,"hold":47,"slide":29,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":579,"level_id":3,"level":"12","level_value":12.5,"note_designer":"譜面-100号","romVersion":18012,"notes":{"total":561,"tap":368,"hold":159,"slide":33,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{"110579":{"id":110579,"level_id":0,"level":"12+?","level_value":0.0,"note_designer":"","romVersion":24000,"notes":{"total":409,"tap":241,"hold":47,"slide":101,"touch":8,"break_":12},"notesPath":null,"dx":false,"sd":false,"ot":true}},"aboutChu_id":0,"long":false},{"id":10,"players":1,"title":"LOVE & JOY","utTitle":null,"artist":"木村由姫 [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":173,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":10,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":183,"tap":176,"hold":0,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":10,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":0,"notes":{"total":246,"tap":226,"hold":8,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":10,"level_id":2,"level":"8","level_value":8.1,"note_designer":"-","romVersion":0,"notes":{"total":292,"tap":233,"hold":41,"slide":13,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":10,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"-","romVersion":0,"notes":{"total":401,"tap":329,"hold":16,"slide":33,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":11,"players":2,"title":"じょいふる","utTitle":null,"artist":"いきものがかり [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":159,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":11,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":165,"tap":155,"hold":3,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":11,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":285,"tap":265,"hold":10,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":11,"level_id":2,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":293,"tap":250,"hold":22,"slide":17,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":11,"level_id":3,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":0,"notes":{"total":414,"tap":343,"hold":18,"slide":25,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":15,"players":0,"title":"Everyday、カチューシャ","utTitle":null,"artist":"AKB48 [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":172,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":15,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":206,"tap":185,"hold":14,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":15,"level_id":1,"level":"6+","level_value":6.9,"note_designer":"-","romVersion":0,"notes":{"total":278,"tap":217,"hold":47,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":15,"level_id":2,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":491,"tap":453,"hold":14,"slide":20,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":15,"level_id":3,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":0,"notes":{"total":515,"tap":368,"hold":56,"slide":79,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":20,"players":1,"title":"恋愛サーキュレーション","utTitle":null,"artist":"「化物語」 [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":120,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":20,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":142,"hold":8,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":20,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":149,"hold":24,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":20,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":234,"tap":194,"hold":28,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":20,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"ニャイン","romVersion":0,"notes":{"total":324,"tap":275,"hold":26,"slide":10,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":21,"players":561,"title":"コネクト","utTitle":null,"artist":"ClariS 「魔法少女まどか☆マギカ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":175,"releaseDate":"20200724","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":21,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":139,"hold":12,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":21,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":222,"tap":177,"hold":26,"slide":17,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":21,"level_id":2,"level":"8","level_value":8.5,"note_designer":"maimai TEAM","romVersion":0,"notes":{"total":313,"tap":274,"hold":18,"slide":15,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":21,"level_id":3,"level":"12","level_value":12.0,"note_designer":"チャン@DP皆伝","romVersion":0,"notes":{"total":334,"tap":211,"hold":25,"slide":95,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":29,"players":0,"title":"VICTORY","utTitle":null,"artist":"EXILE","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":29,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":73,"tap":53,"hold":7,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":29,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":246,"tap":225,"hold":9,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":29,"level_id":2,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":0,"notes":{"total":223,"tap":142,"hold":60,"slide":15,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":29,"level_id":3,"level":"9","level_value":9.3,"note_designer":"-","romVersion":0,"notes":{"total":338,"tap":254,"hold":34,"slide":30,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":34,"players":0,"title":"Garden","utTitle":null,"artist":"May J. [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":99,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":34,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":103,"tap":93,"hold":4,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":34,"level_id":1,"level":"5","level_value":5.5,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":146,"hold":4,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":34,"level_id":2,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":258,"tap":210,"hold":28,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":34,"level_id":3,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":0,"notes":{"total":284,"tap":214,"hold":29,"slide":24,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":41,"players":0,"title":"Chu Chu","utTitle":null,"artist":"moumoon [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":98,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":41,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":167,"hold":3,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":41,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":238,"tap":224,"hold":4,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":41,"level_id":2,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":257,"hold":16,"slide":6,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":41,"level_id":3,"level":"9","level_value":9.5,"note_designer":"-","romVersion":0,"notes":{"total":471,"tap":444,"hold":8,"slide":4,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":43,"players":0,"title":"愛を止めないで","utTitle":null,"artist":"倖田 來未 [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":83,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":43,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":94,"tap":73,"hold":15,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":43,"level_id":1,"level":"6+","level_value":6.9,"note_designer":"-","romVersion":0,"notes":{"total":183,"tap":132,"hold":45,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":43,"level_id":2,"level":"8","level_value":8.4,"note_designer":"-","romVersion":0,"notes":{"total":201,"tap":152,"hold":25,"slide":20,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":43,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":234,"tap":161,"hold":15,"slide":46,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":45,"players":0,"title":"Choo Choo TRAIN","utTitle":null,"artist":"EXILE [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":115,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":45,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":140,"tap":107,"hold":18,"slide":12,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":45,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":172,"tap":145,"hold":17,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":45,"level_id":2,"level":"8","level_value":8.1,"note_designer":"-","romVersion":0,"notes":{"total":358,"tap":277,"hold":33,"slide":38,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":45,"level_id":3,"level":"10","level_value":10.2,"note_designer":"-","romVersion":0,"notes":{"total":437,"tap":270,"hold":57,"slide":66,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":49,"players":0,"title":"アイデンティティ","utTitle":null,"artist":"サカナクション [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":49,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":165,"hold":7,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":49,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":226,"tap":198,"hold":22,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":49,"level_id":2,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":190,"hold":22,"slide":22,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":49,"level_id":3,"level":"9+","level_value":9.8,"note_designer":"-","romVersion":0,"notes":{"total":361,"tap":295,"hold":29,"slide":32,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":54,"players":2,"title":"ヘビーローテーション","utTitle":null,"artist":"AKB48 [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":54,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":132,"hold":14,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":54,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":259,"tap":229,"hold":22,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":54,"level_id":2,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":0,"notes":{"total":356,"tap":301,"hold":40,"slide":8,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":54,"level_id":3,"level":"9+","level_value":9.8,"note_designer":"-","romVersion":0,"notes":{"total":447,"tap":383,"hold":20,"slide":38,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":55,"players":0,"title":"CAN'T GET BACK","utTitle":null,"artist":"w-inds. [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":55,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":117,"tap":109,"hold":3,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":55,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":139,"hold":13,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":55,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":0,"notes":{"total":226,"tap":168,"hold":35,"slide":21,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":55,"level_id":3,"level":"9","level_value":9.4,"note_designer":"-","romVersion":0,"notes":{"total":282,"tap":235,"hold":17,"slide":20,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":59,"players":1,"title":"PON PON PON","utTitle":null,"artist":"きゃりーぱみゅぱみゅ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":128,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":59,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":213,"hold":1,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":59,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":0,"notes":{"total":276,"tap":257,"hold":6,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":59,"level_id":2,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":340,"tap":309,"hold":13,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":59,"level_id":3,"level":"9","level_value":9.4,"note_designer":"-","romVersion":0,"notes":{"total":411,"tap":343,"hold":27,"slide":21,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":60,"players":0,"title":"New World","utTitle":null,"artist":"w-inds. [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":127,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":60,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":173,"tap":155,"hold":12,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":60,"level_id":1,"level":"6","level_value":6.1,"note_designer":"-","romVersion":0,"notes":{"total":223,"tap":188,"hold":20,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":60,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":282,"tap":222,"hold":26,"slide":17,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":60,"level_id":3,"level":"9","level_value":9.5,"note_designer":"-","romVersion":0,"notes":{"total":369,"tap":277,"hold":58,"slide":21,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":125,"players":26,"title":"千本桜","utTitle":null,"artist":"黒うさP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":154,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":125,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":144,"hold":6,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":125,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":277,"tap":231,"hold":34,"slide":1,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":125,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ニャイン","romVersion":0,"notes":{"total":336,"tap":235,"hold":64,"slide":17,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":125,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":637,"tap":556,"hold":27,"slide":45,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":18,"long":false},{"id":126,"players":0,"title":"つけまつける","utTitle":null,"artist":"きゃりーぱみゅぱみゅ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":145,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":126,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":89,"tap":66,"hold":14,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":126,"level_id":1,"level":"7","level_value":7.1,"note_designer":"-","romVersion":0,"notes":{"total":245,"tap":194,"hold":40,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":126,"level_id":2,"level":"8","level_value":8.0,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":276,"tap":216,"hold":58,"slide":1,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":126,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"ニャイン","romVersion":0,"notes":{"total":338,"tap":257,"hold":43,"slide":31,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":127,"players":0,"title":"Get Off of My Way","utTitle":null,"artist":"MAN WITH A MISSION [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":127,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":198,"tap":176,"hold":10,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":127,"level_id":1,"level":"6+","level_value":6.9,"note_designer":"-","romVersion":0,"notes":{"total":270,"tap":225,"hold":27,"slide":11,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":127,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"ニャイン","romVersion":0,"notes":{"total":512,"tap":465,"hold":21,"slide":8,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":127,"level_id":3,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":0,"notes":{"total":678,"tap":645,"hold":0,"slide":24,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":148,"players":0,"title":"サブリナ","utTitle":null,"artist":"家入レオ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":136,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":148,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":100,"hold":32,"slide":1,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":148,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":255,"tap":205,"hold":40,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":148,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":323,"tap":209,"hold":88,"slide":22,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":148,"level_id":3,"level":"11","level_value":11.3,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":436,"tap":268,"hold":67,"slide":95,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":149,"players":0,"title":"SPELL MAGIC","utTitle":null,"artist":"Acid Black Cherry [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":180,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":149,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":181,"tap":147,"hold":19,"slide":10,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":149,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":279,"tap":222,"hold":34,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":149,"level_id":2,"level":"9","level_value":9.0,"note_designer":"mai-Star","romVersion":0,"notes":{"total":427,"tap":310,"hold":62,"slide":32,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":149,"level_id":3,"level":"10","level_value":10.3,"note_designer":"ニャイン","romVersion":0,"notes":{"total":514,"tap":386,"hold":67,"slide":24,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":161,"players":0,"title":"CANDY CANDY","utTitle":null,"artist":"きゃりーぱみゅぱみゅ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20190711","from":"maimai PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":161,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":124,"tap":94,"hold":21,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":161,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":237,"tap":191,"hold":30,"slide":4,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":161,"level_id":2,"level":"8","level_value":8.2,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":288,"tap":236,"hold":47,"slide":3,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":161,"level_id":3,"level":"9+","level_value":9.8,"note_designer":"ニャイン","romVersion":0,"notes":{"total":313,"tap":215,"hold":44,"slide":43,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":164,"players":0,"title":"READY STEADY GO","utTitle":null,"artist":"L'Arc~en~Ciel [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":144,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":164,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":72,"hold":17,"slide":5,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":164,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":122,"hold":26,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":164,"level_id":2,"level":"9","level_value":9.1,"note_designer":"ニャイン","romVersion":0,"notes":{"total":344,"tap":276,"hold":43,"slide":18,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":164,"level_id":3,"level":"10","level_value":10.1,"note_designer":"某S氏","romVersion":0,"notes":{"total":401,"tap":306,"hold":66,"slide":16,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":165,"players":1,"title":"リライト","utTitle":null,"artist":"ASIAN KUNG-FU GENERATION [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":179,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":165,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":129,"tap":100,"hold":20,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":165,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":242,"tap":194,"hold":34,"slide":4,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":165,"level_id":2,"level":"8","level_value":8.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":400,"tap":358,"hold":18,"slide":11,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":165,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"某S氏","romVersion":0,"notes":{"total":491,"tap":413,"hold":47,"slide":23,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":166,"players":1,"title":"カルマ","utTitle":null,"artist":"BUMP OF CHICKEN [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":195,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":166,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":107,"tap":83,"hold":16,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":166,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":151,"tap":99,"hold":40,"slide":9,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":166,"level_id":2,"level":"7+","level_value":7.7,"note_designer":"maimai","romVersion":0,"notes":{"total":315,"tap":247,"hold":54,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":166,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"mai-Star","romVersion":0,"notes":{"total":376,"tap":289,"hold":14,"slide":57,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":167,"players":4,"title":"GO!!!","utTitle":null,"artist":"FLOW / 「NARUTO」[cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":134,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":167,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":105,"hold":15,"slide":11,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":167,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":170,"hold":25,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":167,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"ニャイン","romVersion":0,"notes":{"total":354,"tap":277,"hold":37,"slide":19,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":167,"level_id":3,"level":"10","level_value":10.4,"note_designer":"ニャイン","romVersion":0,"notes":{"total":493,"tap":381,"hold":30,"slide":49,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":168,"players":1,"title":"LOVEドッきゅん♥","utTitle":null,"artist":"club Prince[cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":149,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":168,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":134,"tap":99,"hold":13,"slide":5,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":168,"level_id":1,"level":"6+","level_value":6.9,"note_designer":"-","romVersion":0,"notes":{"total":298,"tap":261,"hold":16,"slide":5,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":168,"level_id":2,"level":"9","level_value":9.3,"note_designer":"mai-Star","romVersion":0,"notes":{"total":381,"tap":272,"hold":48,"slide":21,"touch":0,"break_":40},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":168,"level_id":3,"level":"10","level_value":10.2,"note_designer":"ニャイン","romVersion":0,"notes":{"total":487,"tap":363,"hold":55,"slide":24,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":169,"players":1,"title":"galaxias!","utTitle":null,"artist":"galaxias! [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":123,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":169,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":108,"tap":88,"hold":9,"slide":7,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":169,"level_id":1,"level":"6","level_value":6.3,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":146,"hold":18,"slide":9,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":169,"level_id":2,"level":"8","level_value":8.1,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":280,"tap":226,"hold":20,"slide":31,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":169,"level_id":3,"level":"10","level_value":10.0,"note_designer":"mai-Star","romVersion":0,"notes":{"total":340,"tap":204,"hold":37,"slide":76,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":172,"players":0,"title":"女々しくて","utTitle":null,"artist":"ゴールデンボンバー [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":143,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":172,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":117,"tap":104,"hold":9,"slide":0,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":172,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":235,"tap":200,"hold":18,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":172,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":313,"tap":267,"hold":17,"slide":21,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":172,"level_id":3,"level":"11","level_value":11.1,"note_designer":"ニャイン","romVersion":0,"notes":{"total":466,"tap":381,"hold":12,"slide":63,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":173,"players":1,"title":"サラバ、愛しき悲しみたちよ","utTitle":null,"artist":"ももいろクローバーZ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":173,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":145,"tap":128,"hold":8,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":173,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":285,"tap":251,"hold":19,"slide":5,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":173,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"ニャイン","romVersion":0,"notes":{"total":374,"tap":254,"hold":52,"slide":31,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":173,"level_id":3,"level":"10","level_value":10.0,"note_designer":"mai-Star","romVersion":0,"notes":{"total":477,"tap":334,"hold":66,"slide":55,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":174,"players":1,"title":"創聖のアクエリオン","utTitle":null,"artist":"AKINO[cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":151,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":174,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":73,"tap":54,"hold":12,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":174,"level_id":1,"level":"6+","level_value":6.6,"note_designer":"-","romVersion":0,"notes":{"total":163,"tap":112,"hold":30,"slide":17,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":174,"level_id":2,"level":"7","level_value":7.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":253,"tap":211,"hold":11,"slide":24,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":174,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":341,"tap":214,"hold":13,"slide":109,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":176,"players":2,"title":"Butter-Fly","utTitle":null,"artist":"和田光司 [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":165,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":176,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":121,"tap":99,"hold":12,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":176,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":151,"tap":119,"hold":22,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":176,"level_id":2,"level":"9","level_value":9.2,"note_designer":"ニャイン","romVersion":0,"notes":{"total":291,"tap":177,"hold":90,"slide":7,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":176,"level_id":3,"level":"10+","level_value":10.6,"note_designer":"合作だよ","romVersion":0,"notes":{"total":367,"tap":240,"hold":40,"slide":73,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":181,"players":898,"title":"君の知らない物語","utTitle":null,"artist":"supercell「化物語」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":165,"releaseDate":"20200724","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":181,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":70,"tap":47,"hold":18,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":181,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":151,"hold":13,"slide":11,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":181,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":251,"tap":197,"hold":29,"slide":21,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":181,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":275,"tap":187,"hold":17,"slide":61,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":182,"players":4,"title":"残酷な天使のテーゼ","utTitle":null,"artist":"高橋洋子 [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":128,"releaseDate":"20190711","from":"maimai GreeN","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":182,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":84,"tap":64,"hold":10,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":182,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":160,"tap":123,"hold":21,"slide":6,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":182,"level_id":2,"level":"7","level_value":7.3,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":203,"tap":161,"hold":15,"slide":21,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":182,"level_id":3,"level":"9","level_value":9.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":342,"tap":266,"hold":34,"slide":13,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":192,"players":0,"title":"SPiCa","utTitle":null,"artist":"とくP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":162,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":192,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":166,"tap":147,"hold":6,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":192,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":302,"tap":253,"hold":20,"slide":18,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":192,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":344,"tap":233,"hold":52,"slide":52,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":192,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"mai-Star","romVersion":0,"notes":{"total":473,"tap":320,"hold":10,"slide":129,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":274,"players":0,"title":"RPG","utTitle":null,"artist":"SEKAI NO OWARI","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":274,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":106,"tap":88,"hold":11,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":274,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":191,"tap":154,"hold":22,"slide":8,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":274,"level_id":2,"level":"7+","level_value":7.9,"note_designer":"mai-Star","romVersion":0,"notes":{"total":323,"tap":290,"hold":19,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":274,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":330,"tap":224,"hold":0,"slide":99,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":277,"players":3,"title":"Tachyon","utTitle":null,"artist":"mamenoi(MANYO & やなぎなぎ)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":176,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":277,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":109,"tap":91,"hold":12,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":277,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":233,"tap":159,"hold":19,"slide":42,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":277,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"Jack","romVersion":0,"notes":{"total":318,"tap":234,"hold":20,"slide":48,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":277,"level_id":3,"level":"11","level_value":11.3,"note_designer":"mai-Star","romVersion":0,"notes":{"total":406,"tap":230,"hold":39,"slide":131,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":280,"players":10,"title":"炉心融解","utTitle":null,"artist":"iroha(sasaki)/kuma(alfred)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":165,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":280,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":136,"tap":113,"hold":14,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":280,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":233,"tap":183,"hold":8,"slide":36,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":280,"level_id":2,"level":"11","level_value":11.4,"note_designer":"Jack","romVersion":0,"notes":{"total":324,"tap":243,"hold":25,"slide":49,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":280,"level_id":3,"level":"13","level_value":13.2,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":416,"tap":278,"hold":44,"slide":75,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":477,"long":false},{"id":284,"players":4,"title":"むかしむかしのきょうのぼく","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":130,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":284,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":160,"tap":142,"hold":12,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":284,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":256,"tap":230,"hold":9,"slide":8,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":284,"level_id":2,"level":"10","level_value":10.1,"note_designer":"mai-Star","romVersion":0,"notes":{"total":443,"tap":379,"hold":30,"slide":27,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":284,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":516,"tap":394,"hold":39,"slide":75,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":293,"players":153,"title":"Our Fighting","utTitle":null,"artist":"クーナ(CV 喜多村英梨)「PHANTASY STAR ONLINE 2」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":165,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":293,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":203,"tap":176,"hold":13,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":293,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":0,"notes":{"total":335,"tap":295,"hold":18,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":293,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Jack","romVersion":0,"notes":{"total":472,"tap":374,"hold":31,"slide":58,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":293,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":639,"tap":511,"hold":31,"slide":73,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":485,"long":false},{"id":300,"players":0,"title":"Sweet Devil","utTitle":null,"artist":"八王子P","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":132,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":300,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":163,"tap":156,"hold":2,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":300,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":241,"hold":12,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":300,"level_id":2,"level":"11","level_value":11.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":391,"tap":305,"hold":37,"slide":37,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":300,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":599,"tap":434,"hold":59,"slide":63,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":114,"long":false},{"id":332,"players":0,"title":"アゲアゲアゲイン","utTitle":null,"artist":"Mitchie M","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":332,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":109,"tap":94,"hold":8,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":332,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":248,"tap":213,"hold":24,"slide":3,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":332,"level_id":2,"level":"10","level_value":10.3,"note_designer":"某S氏","romVersion":0,"notes":{"total":260,"tap":209,"hold":22,"slide":21,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":332,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":405,"tap":299,"hold":19,"slide":73,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":333,"players":3,"title":"GO MY WAY!!","utTitle":null,"artist":"ナムコエンジェル「アイドルマスター」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":333,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":112,"tap":83,"hold":22,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":333,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":206,"tap":169,"hold":5,"slide":29,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":333,"level_id":2,"level":"8","level_value":8.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":315,"tap":233,"hold":28,"slide":41,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":333,"level_id":3,"level":"10+","level_value":10.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":577,"tap":469,"hold":10,"slide":90,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":334,"players":3,"title":"THE IDOLM@STER 2nd-mix","utTitle":null,"artist":"ナムコエンジェル「アイドルマスター」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":168,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":334,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":129,"hold":10,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":334,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":364,"tap":332,"hold":12,"slide":15,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":334,"level_id":2,"level":"9","level_value":9.1,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":589,"tap":473,"hold":6,"slide":24,"touch":0,"break_":86},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":334,"level_id":3,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":520,"tap":407,"hold":20,"slide":85,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":335,"players":1,"title":"The world is all one !!","utTitle":null,"artist":"ナムコエンジェル「アイドルマスター」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":167,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":335,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":121,"tap":92,"hold":19,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":335,"level_id":1,"level":"5+","level_value":5.7,"note_designer":"-","romVersion":0,"notes":{"total":181,"tap":150,"hold":10,"slide":15,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":335,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":337,"tap":275,"hold":6,"slide":43,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":335,"level_id":3,"level":"9+","level_value":9.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":449,"tap":344,"hold":26,"slide":60,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":336,"players":13,"title":"紅蓮の弓矢","utTitle":null,"artist":"Linked Horizon「進撃の巨人」 [アニメPV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":180,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":336,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":175,"tap":155,"hold":10,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":336,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":237,"hold":18,"slide":11,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":336,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":426,"tap":314,"hold":30,"slide":77,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":336,"level_id":3,"level":"11","level_value":11.1,"note_designer":"mai-Star","romVersion":0,"notes":{"total":451,"tap":325,"hold":21,"slide":74,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":338,"players":0,"title":"リクライム","utTitle":null,"artist":"ROOKiEZ is PUNK'D「弱虫ペダル」 [アニメPV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":188,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":338,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":110,"tap":97,"hold":2,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":338,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":180,"hold":5,"slide":13,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":338,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":322,"tap":266,"hold":5,"slide":42,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":338,"level_id":3,"level":"10+","level_value":10.9,"note_designer":"mai-Star","romVersion":0,"notes":{"total":468,"tap":398,"hold":0,"slide":54,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":340,"players":0,"title":"恋のヒメヒメぺったんこ","utTitle":null,"artist":"姫野湖鳥(CV 田村ゆかり)「弱虫ペダル」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20190711","from":"maimai GreeN PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":340,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":106,"tap":81,"hold":19,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":340,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":195,"hold":14,"slide":17,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":340,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"某S氏","romVersion":0,"notes":{"total":320,"tap":258,"hold":29,"slide":10,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":340,"level_id":3,"level":"10","level_value":10.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":384,"tap":232,"hold":16,"slide":114,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":356,"players":5,"title":"1/3の純情な感情","utTitle":null,"artist":"SIAM SHADE [covered by 湯毛]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":152,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":356,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":160,"tap":150,"hold":3,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":356,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":221,"tap":208,"hold":2,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":356,"level_id":2,"level":"10","level_value":10.4,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":343,"tap":249,"hold":46,"slide":25,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":356,"level_id":3,"level":"12","level_value":12.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":467,"tap":340,"hold":65,"slide":46,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":357,"players":0,"title":"みかんのうた","utTitle":null,"artist":"SEX MACHINEGUNS [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":288,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":357,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":143,"hold":18,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":357,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":354,"tap":327,"hold":4,"slide":7,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":357,"level_id":2,"level":"9","level_value":9.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":503,"tap":387,"hold":24,"slide":16,"touch":0,"break_":76},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":357,"level_id":3,"level":"12","level_value":12.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":749,"tap":571,"hold":4,"slide":106,"touch":0,"break_":68},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":358,"players":128,"title":"毒占欲","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":117,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":358,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":127,"tap":116,"hold":3,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":358,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":316,"tap":287,"hold":16,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":358,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"rioN","romVersion":0,"notes":{"total":390,"tap":310,"hold":42,"slide":27,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":358,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"mai-Star","romVersion":0,"notes":{"total":617,"tap":502,"hold":46,"slide":58,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":368,"players":1,"title":"シリウス","utTitle":null,"artist":"藍井エイル「キルラキル」 [アニメPV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":176,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":368,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":126,"tap":111,"hold":6,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":368,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":175,"hold":13,"slide":18,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":368,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"Jack","romVersion":0,"notes":{"total":353,"tap":292,"hold":20,"slide":32,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":368,"level_id":3,"level":"10+","level_value":10.6,"note_designer":"rioN","romVersion":0,"notes":{"total":456,"tap":371,"hold":18,"slide":56,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":369,"players":0,"title":"ほとんど違法行為","utTitle":null,"artist":"ネコネコカワイイ「ニンジャスレイヤー」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":128,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":369,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":125,"tap":111,"hold":6,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":369,"level_id":1,"level":"6","level_value":6.3,"note_designer":"-","romVersion":0,"notes":{"total":346,"tap":327,"hold":8,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":369,"level_id":2,"level":"8","level_value":8.2,"note_designer":"rioN","romVersion":0,"notes":{"total":351,"tap":259,"hold":23,"slide":57,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":369,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"mai-Star","romVersion":0,"notes":{"total":424,"tap":322,"hold":27,"slide":56,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":370,"players":2,"title":"naraku within","utTitle":null,"artist":"藤澤健至(Team-MAX)「ニンジャスレイヤー」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":370,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":138,"hold":4,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":370,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":334,"tap":294,"hold":16,"slide":16,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":370,"level_id":2,"level":"9","level_value":9.1,"note_designer":"Jack","romVersion":0,"notes":{"total":426,"tap":364,"hold":40,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":370,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":546,"tap":421,"hold":31,"slide":64,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":371,"players":4,"title":"Stand Up!!!!","utTitle":null,"artist":"鈴木結愛(CV:西 明日香)/佐藤陽菜(CV:明坂聡美)/高橋 葵(CV:荻野可鈴)/田中心春(CV:大橋彩香)/「てさぐれ!部活もの」 [アニメPV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":371,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":158,"tap":125,"hold":11,"slide":15,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":371,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":266,"tap":234,"hold":6,"slide":8,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":371,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"mai-Star","romVersion":0,"notes":{"total":400,"tap":314,"hold":18,"slide":42,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":371,"level_id":3,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":527,"tap":327,"hold":10,"slide":151,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":372,"players":0,"title":"ファミリーパーティー","utTitle":null,"artist":"きゃりーぱみゅぱみゅ [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":142,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":372,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":156,"tap":135,"hold":13,"slide":3,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":372,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":266,"tap":230,"hold":27,"slide":8,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":372,"level_id":2,"level":"7","level_value":7.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":247,"tap":199,"hold":29,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":372,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":460,"tap":371,"hold":13,"slide":68,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":377,"players":1,"title":"おいでよ!妖精の森","utTitle":null,"artist":"「gdgd妖精s」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":220,"releaseDate":"20190711","from":"maimai ORANGE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":377,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":149,"tap":127,"hold":12,"slide":5,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":377,"level_id":1,"level":"6+","level_value":6.6,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":239,"hold":18,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":377,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":380,"tap":324,"hold":29,"slide":15,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":377,"level_id":3,"level":"11","level_value":11.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":582,"tap":417,"hold":8,"slide":105,"touch":0,"break_":52},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":397,"players":0,"title":"Can Do","utTitle":null,"artist":"GRANRODEO [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":200,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":397,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":151,"tap":135,"hold":6,"slide":3,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":397,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":299,"tap":273,"hold":9,"slide":5,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":397,"level_id":2,"level":"9","level_value":9.0,"note_designer":"Jack","romVersion":0,"notes":{"total":423,"tap":368,"hold":14,"slide":19,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":397,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"mai-Star","romVersion":0,"notes":{"total":581,"tap":446,"hold":37,"slide":64,"touch":0,"break_":34},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":398,"players":0,"title":"The Other self","utTitle":null,"artist":"GRANRODEO [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":398,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":112,"tap":100,"hold":8,"slide":2,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":398,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":253,"tap":224,"hold":6,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":398,"level_id":2,"level":"9","level_value":9.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":380,"tap":285,"hold":63,"slide":16,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":398,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"mai-Star","romVersion":0,"notes":{"total":490,"tap":375,"hold":33,"slide":51,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":402,"players":3,"title":"ニブンノイチ","utTitle":null,"artist":"BACK-ON [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":125,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":402,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":105,"tap":96,"hold":3,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":402,"level_id":1,"level":"5","level_value":5.5,"note_designer":"-","romVersion":0,"notes":{"total":206,"tap":193,"hold":3,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":402,"level_id":2,"level":"7+","level_value":7.9,"note_designer":"Jack","romVersion":0,"notes":{"total":277,"tap":238,"hold":13,"slide":22,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":402,"level_id":3,"level":"10","level_value":10.1,"note_designer":"mai-Star","romVersion":0,"notes":{"total":387,"tap":306,"hold":30,"slide":33,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":405,"players":0,"title":"カノン","utTitle":null,"artist":"宮野真守 [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":208,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":405,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":149,"tap":137,"hold":4,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":405,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":294,"tap":257,"hold":14,"slide":16,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":405,"level_id":2,"level":"9","level_value":9.2,"note_designer":"Jack","romVersion":0,"notes":{"total":408,"tap":335,"hold":31,"slide":32,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":405,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":0,"notes":{"total":525,"tap":426,"hold":22,"slide":69,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2434,"long":false},{"id":406,"players":0,"title":"オルフェ","utTitle":null,"artist":"宮野真守 [PV]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":184,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":406,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":109,"hold":17,"slide":7,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":406,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":302,"tap":258,"hold":24,"slide":16,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":406,"level_id":2,"level":"9","level_value":9.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":402,"tap":319,"hold":50,"slide":15,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":406,"level_id":3,"level":"10","level_value":10.4,"note_designer":"Jack","romVersion":0,"notes":{"total":427,"tap":305,"hold":36,"slide":77,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":407,"players":1,"title":"LOL -lots of laugh-","utTitle":null,"artist":"KeN/エンドケイプ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":138,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":407,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":194,"tap":178,"hold":6,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":407,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":333,"tap":304,"hold":10,"slide":16,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":407,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"Jack","romVersion":0,"notes":{"total":443,"tap":318,"hold":53,"slide":67,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":407,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"rioN","romVersion":0,"notes":{"total":589,"tap":428,"hold":24,"slide":130,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":408,"players":0,"title":"クローバー♣クラブ","utTitle":null,"artist":"ゆうゆ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":408,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":155,"tap":123,"hold":22,"slide":7,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":408,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":291,"hold":5,"slide":23,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":408,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Jack","romVersion":0,"notes":{"total":429,"tap":352,"hold":31,"slide":39,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":408,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":569,"tap":380,"hold":23,"slide":146,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":409,"players":7,"title":"妄想税","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":134,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":409,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":191,"tap":174,"hold":11,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":409,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":296,"tap":258,"hold":21,"slide":13,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":409,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":0,"notes":{"total":476,"tap":399,"hold":51,"slide":12,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":409,"level_id":3,"level":"12","level_value":12.0,"note_designer":"mai-Star","romVersion":0,"notes":{"total":527,"tap":402,"hold":49,"slide":63,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":410,"players":0,"title":"どういうことなの!?","utTitle":null,"artist":"くちばしP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":410,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":178,"hold":6,"slide":1,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":410,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":307,"tap":231,"hold":45,"slide":19,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":410,"level_id":2,"level":"11","level_value":11.3,"note_designer":"rioN","romVersion":0,"notes":{"total":489,"tap":417,"hold":24,"slide":39,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":410,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":594,"tap":452,"hold":65,"slide":69,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":416,"players":5,"title":"ココロオドル","utTitle":null,"artist":"nobodyknows+ [cover]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":226,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":416,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":171,"tap":159,"hold":5,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":416,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":340,"tap":316,"hold":4,"slide":12,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":416,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":423,"tap":246,"hold":78,"slide":30,"touch":0,"break_":69},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":416,"level_id":3,"level":"11","level_value":11.5,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":682,"tap":463,"hold":9,"slide":110,"touch":0,"break_":100},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":423,"players":7,"title":"SAVIOR OF SONG","utTitle":null,"artist":"ナノ feat.MY FIRST STORY","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":192,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":423,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":124,"tap":114,"hold":4,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":423,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":259,"tap":239,"hold":8,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":423,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Jack","romVersion":0,"notes":{"total":339,"tap":291,"hold":20,"slide":23,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":423,"level_id":3,"level":"13","level_value":13.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":590,"tap":472,"hold":2,"slide":109,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":436,"players":7,"title":"おじゃま虫","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":143,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":436,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":136,"tap":127,"hold":2,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":436,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":352,"tap":304,"hold":24,"slide":12,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":436,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":0,"notes":{"total":389,"tap":323,"hold":32,"slide":25,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":436,"level_id":3,"level":"12","level_value":12.3,"note_designer":"mai-Star","romVersion":0,"notes":{"total":689,"tap":563,"hold":34,"slide":77,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":440,"players":0,"title":"はじめまして地球人さん","utTitle":null,"artist":"ピノキオピー","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":175,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":440,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":147,"tap":127,"hold":13,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":440,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":239,"tap":201,"hold":13,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":440,"level_id":2,"level":"10","level_value":10.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":362,"tap":289,"hold":45,"slide":20,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":440,"level_id":3,"level":"13","level_value":13.0,"note_designer":"某S氏","romVersion":0,"notes":{"total":532,"tap":461,"hold":11,"slide":46,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":441,"players":0,"title":"Pursuing My True Self","utTitle":null,"artist":"目黒 将司","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":119,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":441,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":197,"tap":187,"hold":4,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":441,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":392,"tap":354,"hold":8,"slide":18,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":441,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"rioN","romVersion":0,"notes":{"total":475,"tap":380,"hold":33,"slide":48,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":441,"level_id":3,"level":"11","level_value":11.4,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":685,"tap":547,"hold":40,"slide":92,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":442,"players":0,"title":"Signs Of Love (“Never More” ver.)","utTitle":null,"artist":"目黒 将司","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":109,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":442,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":138,"hold":12,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":442,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":379,"tap":338,"hold":29,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":442,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Jack","romVersion":0,"notes":{"total":567,"tap":483,"hold":46,"slide":23,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":442,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":656,"tap":567,"hold":31,"slide":35,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":443,"players":7,"title":"specialist (“Never More” ver.)","utTitle":null,"artist":"目黒 将司","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":128,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":443,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":164,"hold":1,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":443,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":337,"tap":285,"hold":29,"slide":22,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":443,"level_id":2,"level":"9","level_value":9.2,"note_designer":"mai-Star","romVersion":0,"notes":{"total":500,"tap":402,"hold":37,"slide":46,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":443,"level_id":3,"level":"11","level_value":11.4,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":611,"tap":473,"hold":63,"slide":67,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":444,"players":3,"title":"Time To Make History (AKIRA YAMAOKA Remix)","utTitle":null,"artist":"目黒 将司 Remixed by 山岡 晃","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":190,"releaseDate":"20190711","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":444,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":213,"tap":198,"hold":6,"slide":3,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":444,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":402,"tap":349,"hold":32,"slide":15,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":444,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"rioN","romVersion":0,"notes":{"total":518,"tap":416,"hold":50,"slide":44,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":444,"level_id":3,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":0,"notes":{"total":844,"tap":667,"hold":31,"slide":142,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":449,"players":2,"title":"すろぉもぉしょん","utTitle":null,"artist":"ピノキオピー","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":449,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":143,"hold":19,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":449,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":363,"tap":325,"hold":12,"slide":19,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":449,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":473,"tap":402,"hold":35,"slide":22,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":449,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":788,"tap":689,"hold":8,"slide":62,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":179,"long":false},{"id":450,"players":0,"title":"絵の上手かった友達","utTitle":null,"artist":"ピノキオピー","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":128,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":450,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":125,"hold":8,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":450,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":349,"tap":295,"hold":34,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":450,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"mai-Star","romVersion":0,"notes":{"total":454,"tap":383,"hold":22,"slide":40,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":450,"level_id":3,"level":"12","level_value":12.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":676,"tap":576,"hold":12,"slide":82,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":469,"players":0,"title":"ひみつをちょーだい","utTitle":null,"artist":"アルスマグナ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":469,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":97,"hold":33,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":469,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":262,"tap":232,"hold":24,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":469,"level_id":2,"level":"7+","level_value":7.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":372,"tap":306,"hold":28,"slide":26,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":469,"level_id":3,"level":"9+","level_value":9.8,"note_designer":"某S氏","romVersion":0,"notes":{"total":423,"tap":292,"hold":42,"slide":65,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":470,"players":3,"title":"Touch Tap Baby","utTitle":null,"artist":"ハッカドール","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":162,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":470,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":115,"tap":103,"hold":5,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":470,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":282,"tap":253,"hold":9,"slide":14,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":470,"level_id":2,"level":"7+","level_value":7.7,"note_designer":"rioN","romVersion":0,"notes":{"total":329,"tap":257,"hold":28,"slide":26,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":470,"level_id":3,"level":"10","level_value":10.5,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":403,"tap":326,"hold":14,"slide":43,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":473,"players":3,"title":"ゲラゲラポーのうた","utTitle":null,"artist":"キング・クリームソーダ「妖怪ウォッチ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":120,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":473,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":120,"tap":102,"hold":10,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":473,"level_id":1,"level":"5+","level_value":5.8,"note_designer":"-","romVersion":0,"notes":{"total":181,"tap":162,"hold":12,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":473,"level_id":2,"level":"7","level_value":7.4,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":234,"tap":177,"hold":24,"slide":5,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":473,"level_id":3,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":369,"tap":275,"hold":27,"slide":57,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":474,"players":3,"title":"秘密の扉から会いにきて","utTitle":null,"artist":"田村 ゆかり「のうりん」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":184,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":474,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":114,"tap":91,"hold":14,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":474,"level_id":1,"level":"6+","level_value":6.9,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":210,"hold":16,"slide":3,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":474,"level_id":2,"level":"8","level_value":8.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":347,"tap":290,"hold":10,"slide":18,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":474,"level_id":3,"level":"11","level_value":11.0,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":448,"tap":265,"hold":42,"slide":120,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":475,"players":183,"title":"かくしん的☆めたまるふぉ~ぜっ!","utTitle":null,"artist":"土間うまる [CV.田中あいみ]「干物妹!うまるちゃん」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":139,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":475,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":119,"tap":104,"hold":12,"slide":2,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":475,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":230,"tap":202,"hold":16,"slide":3,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":475,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":332,"tap":257,"hold":28,"slide":28,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":475,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"mai-Star","romVersion":0,"notes":{"total":517,"tap":426,"hold":10,"slide":37,"touch":0,"break_":44},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":475,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":555,"tap":374,"hold":24,"slide":84,"touch":0,"break_":73},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":476,"players":3,"title":"極上スマイル","utTitle":null,"artist":"Wake Up, Girls!","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":143,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":476,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":128,"tap":112,"hold":8,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":476,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":232,"tap":201,"hold":12,"slide":7,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":476,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"rioN","romVersion":0,"notes":{"total":293,"tap":239,"hold":19,"slide":8,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":476,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":372,"tap":247,"hold":17,"slide":73,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":477,"players":51,"title":"厨病激発ボーイ","utTitle":null,"artist":"れるりり","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":190,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":477,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":251,"tap":230,"hold":10,"slide":2,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":477,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":417,"tap":345,"hold":38,"slide":11,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":477,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":533,"tap":395,"hold":32,"slide":85,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":477,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":928,"tap":725,"hold":25,"slide":162,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":592,"long":false},{"id":479,"players":1,"title":"Dragon Night","utTitle":null,"artist":"SEKAI NO OWARI","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":124,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":479,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":156,"tap":147,"hold":3,"slide":5,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":479,"level_id":1,"level":"5+","level_value":5.8,"note_designer":"-","romVersion":0,"notes":{"total":281,"tap":264,"hold":11,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":479,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":323,"tap":260,"hold":14,"slide":34,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":479,"level_id":3,"level":"10","level_value":10.2,"note_designer":"rioN","romVersion":0,"notes":{"total":609,"tap":459,"hold":104,"slide":29,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":481,"players":0,"title":"でんでんぱっしょん","utTitle":null,"artist":"でんぱ組.Inc","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":186,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":481,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":115,"tap":88,"hold":19,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":481,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":260,"hold":8,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":481,"level_id":2,"level":"8","level_value":8.2,"note_designer":"Jack","romVersion":0,"notes":{"total":340,"tap":265,"hold":18,"slide":47,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":481,"level_id":3,"level":"11","level_value":11.2,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":488,"tap":342,"hold":38,"slide":71,"touch":0,"break_":37},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":484,"players":0,"title":"Luminize","utTitle":null,"artist":"fripSide「フューチャーカード バディファイト ハンドレッド」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":484,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":134,"tap":118,"hold":8,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":484,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":238,"tap":204,"hold":11,"slide":13,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":484,"level_id":2,"level":"8","level_value":8.5,"note_designer":"mai-Star","romVersion":0,"notes":{"total":281,"tap":201,"hold":34,"slide":24,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":484,"level_id":3,"level":"10","level_value":10.1,"note_designer":"mai-Star","romVersion":0,"notes":{"total":421,"tap":336,"hold":30,"slide":26,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":485,"players":0,"title":"Falling Roses","utTitle":null,"artist":"シンガンクリムゾンズ「SHOW BY ROCK!!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":200,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":485,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":136,"hold":5,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":485,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":283,"hold":14,"slide":15,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":485,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":422,"tap":323,"hold":57,"slide":38,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":485,"level_id":3,"level":"12","level_value":12.3,"note_designer":"Jack","romVersion":0,"notes":{"total":592,"tap":484,"hold":20,"slide":53,"touch":0,"break_":35},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":486,"players":1,"title":"青春はNon-Stop!","utTitle":null,"artist":"プラズマジカ「SHOW BY ROCK!!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":172,"releaseDate":"20190711","from":"maimai PiNK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":486,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":138,"hold":9,"slide":1,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":486,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":233,"hold":19,"slide":10,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":486,"level_id":2,"level":"9","level_value":9.3,"note_designer":"Jack","romVersion":0,"notes":{"total":401,"tap":321,"hold":28,"slide":28,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":486,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":645,"tap":499,"hold":32,"slide":75,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":487,"players":0,"title":"ようかい体操第一","utTitle":null,"artist":"Dream5「妖怪ウォッチ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":125,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":487,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":83,"tap":64,"hold":14,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":487,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":194,"tap":172,"hold":12,"slide":8,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":487,"level_id":2,"level":"7+","level_value":7.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":246,"tap":207,"hold":29,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":487,"level_id":3,"level":"8+","level_value":8.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":293,"tap":211,"hold":19,"slide":55,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":491,"players":0,"title":"ヘタリアン☆ジェット","utTitle":null,"artist":"イタリア (CV.浪川大輔)「ヘタリア The World Twinkle」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":132,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":491,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":158,"tap":136,"hold":10,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":491,"level_id":1,"level":"6","level_value":6.1,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":159,"hold":6,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":491,"level_id":2,"level":"8","level_value":8.2,"note_designer":"しろいろ","romVersion":0,"notes":{"total":371,"tap":289,"hold":26,"slide":36,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":491,"level_id":3,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":364,"tap":241,"hold":60,"slide":59,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":498,"players":0,"title":"夏にキスしていいですか?","utTitle":null,"artist":"アルスマグナ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":498,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":295,"tap":274,"hold":8,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":498,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":357,"tap":311,"hold":24,"slide":16,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":498,"level_id":2,"level":"7+","level_value":7.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":524,"tap":435,"hold":29,"slide":44,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":498,"level_id":3,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":645,"tap":438,"hold":59,"slide":130,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":499,"players":120,"title":"夏祭り","utTitle":null,"artist":"Jitterin' Jinn [covered by ろん]","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":141,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":499,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":153,"tap":136,"hold":5,"slide":10,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":499,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":274,"tap":249,"hold":13,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":499,"level_id":2,"level":"7","level_value":7.5,"note_designer":"如月 ゆかり","romVersion":0,"notes":{"total":433,"tap":375,"hold":6,"slide":26,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":499,"level_id":3,"level":"11","level_value":11.1,"note_designer":"しろいろ","romVersion":0,"notes":{"total":626,"tap":517,"hold":30,"slide":59,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":500,"players":134,"title":"シュガーソングとビターステップ","utTitle":null,"artist":"UNISON SQUARE GARDEN","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":132,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":500,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":210,"hold":3,"slide":4,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":500,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":352,"tap":288,"hold":46,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":500,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":554,"tap":449,"hold":43,"slide":40,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":500,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":0,"notes":{"total":887,"tap":771,"hold":28,"slide":67,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":501,"players":3,"title":"Daydream café","utTitle":null,"artist":"Petit Rabbit's「ご注文はうさぎですか?」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":501,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":122,"tap":99,"hold":11,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":501,"level_id":1,"level":"6","level_value":6.1,"note_designer":"-","romVersion":0,"notes":{"total":273,"tap":244,"hold":14,"slide":13,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":501,"level_id":2,"level":"8","level_value":8.4,"note_designer":"しろいろ","romVersion":0,"notes":{"total":333,"tap":259,"hold":46,"slide":24,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":501,"level_id":3,"level":"12","level_value":12.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":525,"tap":399,"hold":22,"slide":76,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":502,"players":2,"title":"Scatman (Ski Ba Bop Ba Dop Bop)","utTitle":null,"artist":"Scatman John","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":136,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":502,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":154,"hold":4,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":502,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":188,"hold":10,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":502,"level_id":2,"level":"10","level_value":10.2,"note_designer":"rioN","romVersion":0,"notes":{"total":471,"tap":380,"hold":52,"slide":16,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":502,"level_id":3,"level":"11+","level_value":11.6,"note_designer":"Techno Kitchen","romVersion":0,"notes":{"total":665,"tap":572,"hold":25,"slide":48,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":503,"players":4,"title":"イチズレシピ","utTitle":null,"artist":"アイドルカレッジ「俺がお嬢様学校に「庶民サンプル」としてゲッツされた件」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":170,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":503,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":131,"hold":9,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":503,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":265,"tap":234,"hold":14,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":503,"level_id":2,"level":"8","level_value":8.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":355,"tap":268,"hold":55,"slide":23,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":503,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":503,"tap":357,"hold":24,"slide":90,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":504,"players":5,"title":"ふ・れ・ん・ど・し・た・い","utTitle":null,"artist":"学園生活部「がっこうぐらし!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":148,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":504,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":174,"tap":154,"hold":10,"slide":2,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":504,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":189,"hold":32,"slide":14,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":504,"level_id":2,"level":"7","level_value":7.3,"note_designer":"某S氏","romVersion":0,"notes":{"total":339,"tap":245,"hold":60,"slide":16,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":504,"level_id":3,"level":"10","level_value":10.3,"note_designer":"しろいろ","romVersion":0,"notes":{"total":496,"tap":418,"hold":6,"slide":50,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":504,"level_id":4,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":510,"tap":393,"hold":5,"slide":89,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":505,"players":4,"title":"ちょちょちょ!ゆるゆり☆かぷりっちょ!!!","utTitle":null,"artist":"七森中☆ごらく部「ゆるゆり さん☆ハイ!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":190,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":505,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":135,"hold":8,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":505,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":309,"tap":279,"hold":11,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":505,"level_id":2,"level":"9","level_value":9.4,"note_designer":"しろいろ","romVersion":0,"notes":{"total":422,"tap":340,"hold":37,"slide":20,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":505,"level_id":3,"level":"11","level_value":11.4,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":575,"tap":424,"hold":8,"slide":100,"touch":0,"break_":43},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":509,"players":1,"title":"Just Be Friends","utTitle":null,"artist":"Dixie Flatline","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":128,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":509,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":199,"tap":183,"hold":6,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":509,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":383,"tap":317,"hold":42,"slide":18,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":509,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":454,"tap":342,"hold":50,"slide":60,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":509,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":812,"tap":652,"hold":45,"slide":107,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":476,"long":false},{"id":510,"players":2269,"title":"ヒビカセ","utTitle":null,"artist":"GigaReol","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":510,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":214,"tap":189,"hold":11,"slide":4,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":510,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":420,"tap":386,"hold":15,"slide":6,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":510,"level_id":2,"level":"11+","level_value":11.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":490,"tap":381,"hold":43,"slide":54,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":510,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":767,"tap":615,"hold":67,"slide":71,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":515,"long":false},{"id":515,"players":3,"title":"クノイチでも恋がしたい","utTitle":null,"artist":"みきとP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":515,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":266,"tap":225,"hold":21,"slide":10,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":515,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":0,"notes":{"total":363,"tap":331,"hold":10,"slide":15,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":515,"level_id":2,"level":"11","level_value":11.0,"note_designer":"如月 ゆかり","romVersion":0,"notes":{"total":626,"tap":536,"hold":32,"slide":34,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":515,"level_id":3,"level":"13","level_value":13.4,"note_designer":"しろいろ","romVersion":0,"notes":{"total":855,"tap":678,"hold":9,"slide":148,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":516,"players":2,"title":"ココロ","utTitle":null,"artist":"トラボルタ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":516,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":206,"tap":178,"hold":15,"slide":5,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":516,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":327,"tap":264,"hold":38,"slide":19,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":516,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":416,"tap":295,"hold":58,"slide":58,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":516,"level_id":3,"level":"12","level_value":12.5,"note_designer":"rioN","romVersion":0,"notes":{"total":566,"tap":366,"hold":48,"slide":142,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":519,"players":1,"title":"ゆっくりしていってね!!!","utTitle":null,"artist":"今日犬","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":221,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":519,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":160,"hold":16,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":519,"level_id":1,"level":"8","level_value":8.3,"note_designer":"-","romVersion":0,"notes":{"total":408,"tap":358,"hold":28,"slide":19,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":519,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":580,"tap":437,"hold":105,"slide":30,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":519,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":797,"tap":675,"hold":22,"slide":80,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":522,"players":85,"title":"Mr. Wonderland","utTitle":null,"artist":"sasakure.UK","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":522,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":210,"tap":176,"hold":14,"slide":16,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":522,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":278,"tap":209,"hold":46,"slide":18,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":522,"level_id":2,"level":"9","level_value":9.1,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":472,"tap":337,"hold":62,"slide":56,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":522,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":0,"notes":{"total":740,"tap":586,"hold":61,"slide":89,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":222,"long":false},{"id":523,"players":3,"title":"しんでしまうとはなさけない!","utTitle":null,"artist":"ワンダフル☆オポチュニティ!","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":174,"releaseDate":"20190711","from":"maimai PiNK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":523,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":247,"tap":230,"hold":4,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":523,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":342,"tap":311,"hold":12,"slide":13,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":523,"level_id":2,"level":"10","level_value":10.1,"note_designer":"しろいろ","romVersion":0,"notes":{"total":526,"tap":416,"hold":33,"slide":51,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":523,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"rioN","romVersion":0,"notes":{"total":754,"tap":588,"hold":68,"slide":70,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":525,"players":14,"title":"ブリキノダンス","utTitle":null,"artist":"日向電工","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":172,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":525,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":202,"hold":12,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":525,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":460,"tap":418,"hold":25,"slide":6,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":525,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":575,"tap":480,"hold":53,"slide":22,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":525,"level_id":3,"level":"12","level_value":12.5,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":752,"tap":625,"hold":5,"slide":116,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":525,"level_id":4,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":900,"tap":763,"hold":32,"slide":93,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":654,"long":false},{"id":544,"players":2,"title":"ゆりゆららららゆるゆり大事件","utTitle":null,"artist":"七森中☆ごらく部「ゆるゆり」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":544,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":148,"tap":122,"hold":17,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":544,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":235,"hold":7,"slide":20,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":544,"level_id":2,"level":"7","level_value":7.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":365,"tap":296,"hold":31,"slide":27,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":544,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"rioN","romVersion":0,"notes":{"total":470,"tap":338,"hold":9,"slide":93,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":550,"players":4,"title":"PERFECT HUMAN","utTitle":null,"artist":"RADIO FISH","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":128,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":550,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":123,"hold":8,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":550,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":216,"tap":164,"hold":32,"slide":8,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":550,"level_id":2,"level":"8","level_value":8.5,"note_designer":"畳返し","romVersion":0,"notes":{"total":331,"tap":212,"hold":95,"slide":8,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":550,"level_id":3,"level":"11","level_value":11.2,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":523,"tap":397,"hold":58,"slide":30,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":551,"players":4,"title":"ファッとして桃源郷","utTitle":null,"artist":"新庄かなえ(CV:三森すずこ)「てーきゅう」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":551,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":169,"hold":15,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":551,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":286,"tap":251,"hold":10,"slide":16,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":551,"level_id":2,"level":"10","level_value":10.4,"note_designer":"rioN","romVersion":0,"notes":{"total":405,"tap":322,"hold":28,"slide":39,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":551,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":631,"tap":452,"hold":34,"slide":98,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":560,"players":303,"title":"回レ!雪月花","utTitle":null,"artist":"歌組雪月花 夜々(原田ひとみ)/いろり(茅野愛衣)/小紫(小倉唯)「機巧少女は傷つかない」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":560,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":151,"hold":6,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":560,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":232,"hold":20,"slide":7,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":560,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":386,"tap":316,"hold":24,"slide":34,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":560,"level_id":3,"level":"13","level_value":13.3,"note_designer":"rioN","romVersion":0,"notes":{"total":665,"tap":555,"hold":30,"slide":41,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":244,"long":false},{"id":562,"players":1,"title":"いぇす!ゆゆゆ☆ゆるゆり♪♪","utTitle":null,"artist":"七森中☆ごらく部「ゆるゆり♪♪」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":182,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":562,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":162,"tap":141,"hold":14,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":562,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":296,"tap":266,"hold":14,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":562,"level_id":2,"level":"9","level_value":9.2,"note_designer":"如月 ゆかり","romVersion":0,"notes":{"total":394,"tap":318,"hold":26,"slide":30,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":562,"level_id":3,"level":"11","level_value":11.2,"note_designer":"某S氏","romVersion":0,"notes":{"total":539,"tap":364,"hold":24,"slide":102,"touch":0,"break_":49},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":575,"players":0,"title":"Star☆Glitter","utTitle":null,"artist":"セブンスシスターズ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":171,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":575,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":130,"hold":20,"slide":6,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":575,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":312,"tap":266,"hold":22,"slide":19,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":575,"level_id":2,"level":"9","level_value":9.5,"note_designer":"Jack","romVersion":0,"notes":{"total":423,"tap":349,"hold":31,"slide":36,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":575,"level_id":3,"level":"11","level_value":11.3,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":605,"tap":462,"hold":16,"slide":109,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":576,"players":3,"title":"H-A-J-I-M-A-R-I-U-T-A-!!","utTitle":null,"artist":"777☆SISTERS","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":576,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":133,"hold":5,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":576,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":266,"tap":230,"hold":12,"slide":17,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":576,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":369,"tap":262,"hold":46,"slide":53,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":576,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":587,"tap":422,"hold":18,"slide":109,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":600,"players":4,"title":"SUSHI食べたい feat.ソイソース","utTitle":null,"artist":"ORANGE RANGE","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":600,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":211,"tap":191,"hold":10,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":600,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":358,"tap":304,"hold":28,"slide":18,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":600,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":463,"tap":265,"hold":149,"slide":38,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":600,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":734,"tap":551,"hold":72,"slide":92,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":604,"players":4,"title":"Jumping!!","utTitle":null,"artist":"Rhodanthe*","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":175,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":604,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":148,"tap":127,"hold":10,"slide":3,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":604,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":312,"tap":282,"hold":12,"slide":8,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":604,"level_id":2,"level":"8","level_value":8.4,"note_designer":"rioN","romVersion":0,"notes":{"total":363,"tap":284,"hold":42,"slide":18,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":604,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":451,"tap":345,"hold":18,"slide":80,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":605,"players":3,"title":"7 Girls War","utTitle":null,"artist":"Wake Up, Girls!","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":180,"releaseDate":"20190711","from":"maimai MURASAKi","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":605,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":137,"tap":114,"hold":12,"slide":6,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":605,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":222,"hold":22,"slide":23,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":605,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"某S氏","romVersion":0,"notes":{"total":365,"tap":292,"hold":27,"slide":36,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":605,"level_id":3,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":395,"tap":282,"hold":35,"slide":58,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":609,"players":1,"title":"SAKURAスキップ","utTitle":null,"artist":"fourfolium「NEW GAME!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":165,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":609,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":135,"tap":116,"hold":7,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":609,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":251,"tap":224,"hold":14,"slide":9,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":609,"level_id":2,"level":"7+","level_value":7.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":338,"tap":256,"hold":35,"slide":29,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":609,"level_id":3,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":492,"tap":347,"hold":10,"slide":103,"touch":0,"break_":32},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":615,"players":17,"title":"Paradisus-Paradoxum","utTitle":null,"artist":"MYTH & ROID「Re:ゼロから始める異世界生活」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":201,"releaseDate":"20200724","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":615,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":145,"tap":121,"hold":11,"slide":4,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":615,"level_id":1,"level":"8","level_value":8.1,"note_designer":"-","romVersion":0,"notes":{"total":234,"tap":188,"hold":27,"slide":9,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":615,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":320,"tap":254,"hold":27,"slide":33,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":615,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":522,"tap":381,"hold":16,"slide":113,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":525,"long":false},{"id":620,"players":3,"title":"東京レトロ","utTitle":null,"artist":"すこっぷ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":126,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":620,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":145,"tap":127,"hold":6,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":620,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":190,"hold":15,"slide":15,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":620,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":280,"tap":173,"hold":53,"slide":45,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":620,"level_id":3,"level":"11+","level_value":11.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":470,"tap":331,"hold":38,"slide":90,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":645,"players":3,"title":"ホシトハナ","utTitle":null,"artist":"讃州中学勇者部「結城友奈は勇者である」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":158,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":645,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":76,"hold":11,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":645,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":181,"tap":137,"hold":25,"slide":17,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":645,"level_id":2,"level":"9","level_value":9.2,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":248,"tap":191,"hold":19,"slide":30,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":645,"level_id":3,"level":"11","level_value":11.0,"note_designer":"rioN","romVersion":0,"notes":{"total":351,"tap":245,"hold":45,"slide":49,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":475,"long":false},{"id":646,"players":208,"title":"名探偵連続殺人事件","utTitle":null,"artist":"てにをは","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":646,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":187,"hold":9,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":646,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":322,"tap":256,"hold":33,"slide":16,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":646,"level_id":2,"level":"11","level_value":11.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":443,"tap":269,"hold":98,"slide":51,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":646,"level_id":3,"level":"12","level_value":12.5,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":672,"tap":500,"hold":75,"slide":67,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":653,"players":3,"title":"Now Loading!!!!","utTitle":null,"artist":"fourfolium「NEW GAME!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":193,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":653,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":140,"tap":120,"hold":11,"slide":5,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":653,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":250,"tap":208,"hold":25,"slide":14,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":653,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"rioN","romVersion":0,"notes":{"total":349,"tap":259,"hold":41,"slide":37,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":653,"level_id":3,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":461,"tap":326,"hold":21,"slide":106,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":656,"players":1,"title":"未来(ソラ)の歌","utTitle":null,"artist":"Questy「ポッピンQ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":153,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":656,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":156,"tap":137,"hold":4,"slide":9,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":656,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":247,"tap":208,"hold":15,"slide":12,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":656,"level_id":2,"level":"8+","level_value":8.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":326,"tap":253,"hold":33,"slide":32,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":656,"level_id":3,"level":"11","level_value":11.4,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":518,"tap":384,"hold":27,"slide":81,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":659,"players":7,"title":"ギリギリ最強あいまいみー!","utTitle":null,"artist":"愛(C.V.大坪由佳) 麻衣(C.V.内田彩) ミイ(C.V.内田真礼)「あいまいみー」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":659,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":188,"tap":166,"hold":14,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":659,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":313,"tap":249,"hold":28,"slide":10,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":659,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":414,"tap":297,"hold":47,"slide":44,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":659,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Revo@LC","romVersion":0,"notes":{"total":755,"tap":531,"hold":49,"slide":127,"touch":0,"break_":48},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":661,"players":0,"title":"CALL HEAVEN!!","utTitle":null,"artist":"夢色キャスト","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":123,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":661,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":152,"tap":134,"hold":6,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":661,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":264,"tap":219,"hold":24,"slide":11,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":661,"level_id":2,"level":"9","level_value":9.2,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":372,"tap":242,"hold":55,"slide":61,"touch":0,"break_":14},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":661,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":481,"tap":322,"hold":35,"slide":82,"touch":0,"break_":42},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":662,"players":0,"title":"Sunshine world tour","utTitle":null,"artist":"夢色キャスト","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":140,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":662,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":158,"tap":142,"hold":8,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":662,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":256,"tap":212,"hold":22,"slide":14,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":662,"level_id":2,"level":"9","level_value":9.3,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":406,"tap":312,"hold":43,"slide":41,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":662,"level_id":3,"level":"11","level_value":11.4,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":601,"tap":474,"hold":8,"slide":81,"touch":0,"break_":38},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":663,"players":0,"title":"ちがう!!!","utTitle":null,"artist":"カルロス袴田(サイゼP)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":181,"releaseDate":"20190711","from":"maimai MURASAKi PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":663,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":255,"tap":233,"hold":8,"slide":5,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":663,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":371,"tap":286,"hold":72,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":663,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":515,"tap":431,"hold":27,"slide":31,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":663,"level_id":3,"level":"13","level_value":13.4,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":790,"tap":553,"hold":16,"slide":151,"touch":0,"break_":70},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":739,"long":false},{"id":668,"players":2,"title":"ようこそジャパリパークへ","utTitle":null,"artist":"どうぶつビスケッツ×PPP「けものフレンズ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":170,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":668,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":170,"tap":154,"hold":6,"slide":4,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":668,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":0,"notes":{"total":282,"tap":229,"hold":24,"slide":13,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":668,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":391,"tap":284,"hold":33,"slide":47,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":668,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":512,"tap":371,"hold":21,"slide":79,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":668,"level_id":4,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":505,"tap":342,"hold":24,"slide":109,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":669,"players":10,"title":"あ・え・い・う・え・お・あお!!","utTitle":null,"artist":"劇団ひととせ「ひなこのーと」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":145,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":669,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":138,"tap":116,"hold":14,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":669,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":263,"tap":193,"hold":40,"slide":17,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":669,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"rioN","romVersion":0,"notes":{"total":370,"tap":287,"hold":50,"slide":22,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":669,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":540,"tap":418,"hold":38,"slide":53,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":675,"players":0,"title":"白い雪のプリンセスは","utTitle":null,"artist":"のぼる↑","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":200,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":675,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":255,"tap":239,"hold":5,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":675,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":359,"tap":329,"hold":12,"slide":15,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":675,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":605,"tap":501,"hold":60,"slide":28,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":675,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":721,"tap":504,"hold":39,"slide":137,"touch":0,"break_":41},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":301,"long":false},{"id":676,"players":5,"title":"好き!雪!本気マジック","utTitle":null,"artist":"Mitchie M","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":167,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":676,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":205,"tap":186,"hold":8,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":676,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":395,"tap":349,"hold":21,"slide":21,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":676,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":524,"tap":416,"hold":65,"slide":31,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":676,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":686,"tap":494,"hold":53,"slide":122,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":677,"players":2,"title":"スターナイトスノウ","utTitle":null,"artist":"n-buna × Orangestar","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":180,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":677,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":204,"hold":4,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":677,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":381,"tap":356,"hold":7,"slide":14,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":677,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":475,"tap":404,"hold":54,"slide":12,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":677,"level_id":3,"level":"11","level_value":11.5,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":505,"tap":364,"hold":39,"slide":93,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":1021,"long":false},{"id":678,"players":12,"title":"This game","utTitle":null,"artist":"鈴木このみ「ノーゲーム・ノーライフ」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":147,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":678,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":116,"tap":100,"hold":8,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":678,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":188,"tap":162,"hold":8,"slide":14,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":678,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":346,"tap":239,"hold":35,"slide":53,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":678,"level_id":3,"level":"13","level_value":13.3,"note_designer":"某S氏","romVersion":0,"notes":{"total":528,"tap":346,"hold":53,"slide":69,"touch":0,"break_":60},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":679,"players":3,"title":"Los! Los! Los!","utTitle":null,"artist":"ターニャ・デグレチャフ(CV.悠木碧)「幼女戦記」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":240,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":679,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":107,"tap":89,"hold":10,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":679,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":265,"tap":234,"hold":17,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":679,"level_id":2,"level":"11","level_value":11.3,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":361,"tap":287,"hold":41,"slide":18,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":679,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"rioN","romVersion":0,"notes":{"total":473,"tap":353,"hold":50,"slide":60,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":697,"players":6,"title":"ガヴリールドロップキック","utTitle":null,"artist":"ガヴリール(富田美憂),ヴィーネ(大西沙織),サターニャ(大空直美),ラフィエル(花澤香菜)「ガヴリールドロップアウト」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":697,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":126,"tap":112,"hold":6,"slide":4,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":697,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":155,"hold":29,"slide":13,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":697,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":312,"tap":250,"hold":40,"slide":11,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":697,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":447,"tap":293,"hold":54,"slide":71,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":698,"players":10,"title":"fantastic dreamer","utTitle":null,"artist":"Machico「この素晴らしい世界に祝福を!」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":698,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":156,"tap":145,"hold":4,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":698,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":229,"tap":197,"hold":11,"slide":13,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":698,"level_id":2,"level":"10","level_value":10.2,"note_designer":"ミストルティン","romVersion":0,"notes":{"total":340,"tap":257,"hold":37,"slide":31,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":698,"level_id":3,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":456,"tap":302,"hold":39,"slide":91,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":718,"players":5,"title":"ヤバい○○","utTitle":null,"artist":"上坂すみれ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":133,"releaseDate":"20190711","from":"maimai MiLK","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":718,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":145,"tap":124,"hold":4,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":718,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":237,"tap":189,"hold":21,"slide":19,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":718,"level_id":2,"level":"9","level_value":9.0,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":402,"tap":284,"hold":34,"slide":53,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":718,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":576,"tap":389,"hold":28,"slide":71,"touch":0,"break_":88},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":728,"players":8,"title":"POP TEAM EPIC","utTitle":null,"artist":"上坂すみれ「ポプテピピック」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":142,"releaseDate":"20190906","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":728,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":123,"tap":112,"hold":4,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":728,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":203,"hold":11,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":728,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":314,"tap":228,"hold":60,"slide":19,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":728,"level_id":3,"level":"11","level_value":11.2,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":383,"tap":267,"hold":15,"slide":93,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":728,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":630,"tap":480,"hold":37,"slide":89,"touch":0,"break_":24},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":729,"players":78,"title":"にめんせい☆ウラオモテライフ!","utTitle":null,"artist":"土間うまる(田中あいみ)「干物妹!うまるちゃんR」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":170,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":729,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":113,"tap":98,"hold":4,"slide":5,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":729,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":203,"hold":25,"slide":23,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":729,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"サファ太","romVersion":0,"notes":{"total":378,"tap":255,"hold":48,"slide":30,"touch":0,"break_":45},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":729,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":480,"tap":362,"hold":23,"slide":69,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":729,"level_id":4,"level":"11+","level_value":11.7,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":493,"tap":324,"hold":38,"slide":72,"touch":0,"break_":59},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":730,"players":127,"title":"うまるん体操","utTitle":null,"artist":"妹S「干物妹!うまるちゃんR」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":170,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":730,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":124,"tap":108,"hold":8,"slide":5,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":730,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":234,"tap":196,"hold":22,"slide":9,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":730,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"某S氏","romVersion":0,"notes":{"total":335,"tap":272,"hold":42,"slide":9,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":730,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":423,"tap":303,"hold":19,"slide":89,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":730,"level_id":4,"level":"12","level_value":12.2,"note_designer":"チャン@DP皆伝","romVersion":0,"notes":{"total":375,"tap":227,"hold":7,"slide":116,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":743,"players":0,"title":"アンチクロックワイズ","utTitle":null,"artist":"After the Rain(そらる×まふまふ)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":186,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":743,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":140,"hold":10,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":743,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":247,"tap":221,"hold":9,"slide":15,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":743,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":291,"tap":229,"hold":30,"slide":24,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":743,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":387,"tap":293,"hold":13,"slide":68,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":743,"level_id":4,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":495,"tap":377,"hold":17,"slide":82,"touch":0,"break_":19},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":744,"players":4,"title":"全力☆Summer!","utTitle":null,"artist":"angela「アホガール」","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":158,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":744,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":197,"tap":162,"hold":24,"slide":9,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":744,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":341,"tap":256,"hold":47,"slide":11,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":744,"level_id":2,"level":"9","level_value":9.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":487,"tap":409,"hold":57,"slide":17,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":744,"level_id":3,"level":"10+","level_value":10.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":582,"tap":429,"hold":39,"slide":106,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":744,"level_id":4,"level":"12","level_value":12.0,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":663,"tap":425,"hold":22,"slide":131,"touch":0,"break_":85},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":747,"players":1,"title":"えれくとりっく・えんじぇぅ","utTitle":null,"artist":"ヤスオ","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":150,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":747,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":191,"hold":16,"slide":3,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":747,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":325,"tap":261,"hold":51,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":747,"level_id":2,"level":"10","level_value":10.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":424,"tap":318,"hold":71,"slide":17,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":747,"level_id":3,"level":"11+","level_value":11.6,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":594,"tap":469,"hold":41,"slide":74,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":748,"players":2,"title":"ミラクルペイント","utTitle":null,"artist":"OSTER project","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":215,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":748,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":231,"tap":189,"hold":19,"slide":14,"touch":0,"break_":9},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":748,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":348,"tap":292,"hold":34,"slide":9,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":748,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":531,"tap":447,"hold":46,"slide":30,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":748,"level_id":3,"level":"13","level_value":13.2,"note_designer":"某S氏","romVersion":0,"notes":{"total":671,"tap":494,"hold":64,"slide":98,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":2518,"long":false},{"id":749,"players":30,"title":"Ievan Polkka","utTitle":null,"artist":"Otomania feat. 初音ミク","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":119,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":749,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":226,"tap":208,"hold":10,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":749,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":374,"tap":312,"hold":29,"slide":4,"touch":0,"break_":29},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":749,"level_id":2,"level":"11","level_value":11.2,"note_designer":"合作だよ","romVersion":0,"notes":{"total":349,"tap":112,"hold":197,"slide":1,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":749,"level_id":3,"level":"13","level_value":13.1,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":802,"tap":666,"hold":66,"slide":31,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":751,"players":7,"title":"ガチャガチャきゅ~と・ふぃぎゅ@メイト","utTitle":null,"artist":"MOSAIC.WAV","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":751,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":227,"hold":8,"slide":6,"touch":0,"break_":27},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":751,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":388,"tap":346,"hold":10,"slide":16,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":751,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":518,"tap":394,"hold":58,"slide":36,"touch":0,"break_":30},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":751,"level_id":3,"level":"13","level_value":13.2,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":690,"tap":433,"hold":35,"slide":112,"touch":0,"break_":110},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":754,"players":34,"title":"Arrival of Tears","utTitle":null,"artist":"彩音","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":200,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":754,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":137,"tap":122,"hold":6,"slide":7,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":754,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":293,"tap":247,"hold":34,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":754,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":0,"notes":{"total":440,"tap":332,"hold":33,"slide":44,"touch":0,"break_":31},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":754,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":0,"notes":{"total":703,"tap":494,"hold":33,"slide":122,"touch":0,"break_":54},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":761,"players":3,"title":"このふざけた素晴らしき世界は、僕の為にある","utTitle":null,"artist":"n.k","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":152,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":761,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":199,"tap":177,"hold":13,"slide":4,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":761,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":0,"notes":{"total":348,"tap":292,"hold":30,"slide":16,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":761,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":476,"tap":358,"hold":85,"slide":28,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":761,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Jack","romVersion":0,"notes":{"total":786,"tap":637,"hold":82,"slide":60,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":228,"long":false},{"id":774,"players":5,"title":"甲賀忍法帖","utTitle":null,"artist":"陰陽座","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20190711","from":"MiLK PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":774,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":173,"tap":149,"hold":10,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":774,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":307,"tap":225,"hold":35,"slide":32,"touch":0,"break_":15},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":774,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":492,"tap":369,"hold":30,"slide":67,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":774,"level_id":3,"level":"11","level_value":11.3,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":651,"tap":476,"hold":42,"slide":122,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":774,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"華火職人","romVersion":0,"notes":{"total":668,"tap":490,"hold":48,"slide":112,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":787,"players":71,"title":"SHINY DAYS","utTitle":null,"artist":"亜咲花","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":110,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":787,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":98,"tap":86,"hold":7,"slide":2,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":787,"level_id":1,"level":"6+","level_value":6.6,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":177,"hold":18,"slide":11,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":787,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":215,"tap":176,"hold":17,"slide":17,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":787,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":359,"tap":287,"hold":10,"slide":59,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":788,"players":9,"title":"NOISY LOVE POWER☆","utTitle":null,"artist":"大橋彩香","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":788,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":155,"tap":146,"hold":4,"slide":4,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":788,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":209,"hold":11,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":788,"level_id":2,"level":"10","level_value":10.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":399,"tap":340,"hold":22,"slide":24,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":788,"level_id":3,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":455,"tap":356,"hold":30,"slide":63,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":788,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":681,"tap":561,"hold":12,"slide":96,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":790,"players":234,"title":"only my railgun","utTitle":null,"artist":"fripSide","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":143,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":790,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":138,"hold":10,"slide":2,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":790,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":252,"tap":220,"hold":19,"slide":7,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":790,"level_id":2,"level":"10","level_value":10.5,"note_designer":"華火職人","romVersion":0,"notes":{"total":347,"tap":249,"hold":44,"slide":34,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":790,"level_id":3,"level":"11","level_value":11.3,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":459,"tap":352,"hold":12,"slide":91,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":790,"level_id":4,"level":"12+","level_value":12.6,"note_designer":"LabiLabi","romVersion":0,"notes":{"total":552,"tap":465,"hold":3,"slide":62,"touch":0,"break_":22},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":801,"players":1,"title":"金の聖夜霜雪に朽ちて","utTitle":null,"artist":"デッドボールP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":801,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":283,"tap":259,"hold":14,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":801,"level_id":1,"level":"8+","level_value":8.6,"note_designer":"-","romVersion":0,"notes":{"total":446,"tap":391,"hold":20,"slide":15,"touch":0,"break_":20},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":801,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":600,"tap":495,"hold":77,"slide":26,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":801,"level_id":3,"level":"13","level_value":13.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":780,"tap":568,"hold":70,"slide":125,"touch":0,"break_":17},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":804,"players":0,"title":"Magical Sound Shower","utTitle":null,"artist":"HIRO/曲者P","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":120,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":804,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":197,"hold":20,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":804,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":320,"tap":272,"hold":30,"slide":6,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":804,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":423,"tap":304,"hold":48,"slide":32,"touch":0,"break_":39},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":804,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":662,"tap":585,"hold":26,"slide":43,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":805,"players":1,"title":"片想いサンバ","utTitle":null,"artist":"オワタP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":150,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":805,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":296,"tap":280,"hold":4,"slide":4,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":805,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":380,"tap":316,"hold":34,"slide":4,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":805,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":535,"tap":361,"hold":98,"slide":48,"touch":0,"break_":28},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":805,"level_id":3,"level":"13","level_value":13.2,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":816,"tap":658,"hold":40,"slide":71,"touch":0,"break_":47},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":807,"players":4,"title":"フキゲンワルツ","utTitle":null,"artist":"OSTER project","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":210,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":807,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":289,"tap":278,"hold":2,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":807,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":318,"tap":283,"hold":19,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":807,"level_id":2,"level":"10","level_value":10.4,"note_designer":"玉子豆腐","romVersion":0,"notes":{"total":462,"tap":357,"hold":68,"slide":31,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":807,"level_id":3,"level":"13","level_value":13.2,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":776,"tap":593,"hold":64,"slide":96,"touch":0,"break_":23},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":810,"players":1,"title":"サウンド","utTitle":null,"artist":"baker","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":160,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":810,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":222,"tap":209,"hold":1,"slide":5,"touch":0,"break_":7},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":810,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":298,"tap":260,"hold":16,"slide":12,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":810,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":392,"tap":320,"hold":57,"slide":14,"touch":0,"break_":1},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":810,"level_id":3,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":0,"notes":{"total":642,"tap":501,"hold":21,"slide":108,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":811,"players":2,"title":"右肩の蝶","utTitle":null,"artist":"のりP","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":811,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":242,"tap":224,"hold":8,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":811,"level_id":1,"level":"7","level_value":7.3,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":282,"hold":18,"slide":12,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":811,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":449,"tap":312,"hold":72,"slide":52,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":811,"level_id":3,"level":"13","level_value":13.1,"note_designer":"ものくろっく","romVersion":0,"notes":{"total":757,"tap":545,"hold":66,"slide":130,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":824,"players":11,"title":"Deep in Abyss","utTitle":null,"artist":"リコ(CV:富田美憂)、レグ(CV:伊瀬茉莉也)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":824,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":118,"tap":93,"hold":12,"slide":8,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":824,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":192,"tap":172,"hold":6,"slide":12,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":824,"level_id":2,"level":"9","level_value":9.0,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":296,"tap":223,"hold":40,"slide":27,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":824,"level_id":3,"level":"12","level_value":12.3,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":434,"tap":310,"hold":44,"slide":55,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":826,"players":5,"title":"キミとボクのミライ","utTitle":null,"artist":"ジータ(CV:金元寿子)、ルリア(CV:東山奈央)、ヴィーラ(CV:今井麻美)、マリー(CV:長谷川明子)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":178,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":826,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":146,"tap":132,"hold":7,"slide":5,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":826,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":294,"tap":263,"hold":8,"slide":17,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":826,"level_id":2,"level":"10","level_value":10.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":378,"tap":285,"hold":33,"slide":50,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":826,"level_id":3,"level":"11","level_value":11.2,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":517,"tap":414,"hold":12,"slide":87,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":826,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":0,"notes":{"total":603,"tap":455,"hold":34,"slide":96,"touch":0,"break_":18},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":827,"players":10,"title":"Lost Princess","utTitle":null,"artist":"ペコリーヌ(CV:M・A・O)、コッコロ(CV:伊藤美来)、キャル(CV:立花理香)","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":150,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":827,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":109,"tap":87,"hold":14,"slide":6,"touch":0,"break_":2},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":827,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":196,"tap":152,"hold":17,"slide":15,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":827,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":0,"notes":{"total":314,"tap":247,"hold":16,"slide":40,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":827,"level_id":3,"level":"11","level_value":11.3,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":372,"tap":276,"hold":15,"slide":75,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":827,"level_id":4,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":368,"tap":249,"hold":36,"slide":70,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":828,"players":18,"title":"アリサのテーマ","utTitle":null,"artist":"池頼広","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":129,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":828,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":225,"tap":203,"hold":14,"slide":2,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":828,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":353,"tap":278,"hold":55,"slide":8,"touch":0,"break_":12},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":828,"level_id":2,"level":"10","level_value":10.3,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":417,"tap":351,"hold":52,"slide":8,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":828,"level_id":3,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":461,"tap":229,"hold":0,"slide":229,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":831,"players":105,"title":"お気に召すまま","utTitle":null,"artist":"Eve","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":143,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":831,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":197,"hold":7,"slide":8,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":831,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":393,"tap":356,"hold":23,"slide":9,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":831,"level_id":2,"level":"10","level_value":10.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":497,"tap":386,"hold":69,"slide":32,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":831,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":679,"tap":512,"hold":33,"slide":129,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"4":{"id":831,"level_id":4,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":783,"tap":612,"hold":23,"slide":144,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":843,"players":53,"title":"ワンダーラスト","utTitle":null,"artist":"sasakure.UK","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":230,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":843,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":128,"hold":22,"slide":3,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":843,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":290,"tap":234,"hold":24,"slide":19,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":843,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":672,"tap":471,"hold":121,"slide":70,"touch":0,"break_":10},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":843,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":787,"tap":597,"hold":73,"slide":101,"touch":0,"break_":16},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":847,"players":0,"title":"カラフル×メロディ","utTitle":null,"artist":"ちーむMOER","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":185,"releaseDate":"20190711","from":"maimai FiNALE","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":847,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":161,"hold":8,"slide":7,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":847,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":306,"tap":274,"hold":18,"slide":10,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":847,"level_id":2,"level":"11","level_value":11.4,"note_designer":"華火職人","romVersion":0,"notes":{"total":427,"tap":335,"hold":34,"slide":32,"touch":0,"break_":26},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":847,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":562,"tap":423,"hold":39,"slide":96,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":854,"players":12,"title":"全世界共通リズム感テスト","utTitle":null,"artist":"☆リズムに合わせてボタンを叩き達成率を競うゲームです☆","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":120,"releaseDate":"20210730","from":"maimai ORANGE PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":854,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":65,"tap":32,"hold":0,"slide":0,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":854,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":129,"tap":96,"hold":0,"slide":0,"touch":0,"break_":33},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":854,"level_id":2,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":129,"tap":0,"hold":0,"slide":0,"touch":0,"break_":129},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":854,"level_id":3,"level":"12","level_value":12.0,"note_designer":"-","romVersion":0,"notes":{"total":129,"tap":0,"hold":0,"slide":0,"touch":0,"break_":129},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":902,"players":0,"title":"麻煩下一位","utTitle":null,"artist":"A-Lin","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":132,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":902,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":137,"hold":18,"slide":6,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":902,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":250,"tap":215,"hold":18,"slide":9,"touch":0,"break_":8},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":902,"level_id":2,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":291,"tap":191,"hold":66,"slide":13,"touch":0,"break_":21},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":902,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":413,"tap":281,"hold":77,"slide":42,"touch":0,"break_":13},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":903,"players":0,"title":"回马枪","utTitle":null,"artist":"唐禹哲","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":126,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":903,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":112,"tap":93,"hold":13,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":903,"level_id":1,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":133,"tap":98,"hold":19,"slide":10,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":903,"level_id":2,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":207,"tap":144,"hold":46,"slide":13,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":903,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":246,"tap":147,"hold":38,"slide":55,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":904,"players":1,"title":"远得要命的爱情","utTitle":null,"artist":"信","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":67,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":904,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":87,"tap":70,"hold":10,"slide":4,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":904,"level_id":1,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":98,"tap":57,"hold":28,"slide":10,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":904,"level_id":2,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":177,"tap":121,"hold":39,"slide":12,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":904,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":72,"hold":20,"slide":72,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":906,"players":0,"title":"So long","utTitle":null,"artist":"Roomie","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":124,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":906,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":147,"tap":137,"hold":0,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":906,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":255,"tap":218,"hold":30,"slide":2,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":906,"level_id":2,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":410,"tap":315,"hold":26,"slide":58,"touch":0,"break_":11},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":906,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":439,"tap":343,"hold":32,"slide":60,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":907,"players":6,"title":"飞行志","utTitle":null,"artist":"阿蘭","albums":null,"hasDx":false,"hasSd":true,"hasUt":false,"genre":"POPS & アニメ","bpm":104,"releaseDate":"20190711","from":"maimai","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":907,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":112,"tap":100,"hold":6,"slide":3,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":907,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":139,"hold":20,"slide":6,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":907,"level_id":2,"level":"9","level_value":9.0,"note_designer":"-","romVersion":0,"notes":{"total":267,"tap":242,"hold":9,"slide":12,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":907,"level_id":3,"level":"10","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":289,"tap":194,"hold":50,"slide":42,"touch":0,"break_":3},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1819,"players":46,"title":"AFTER PANDORA","utTitle":null,"artist":"削除","albums":["后潘"],"hasDx":false,"hasSd":true,"hasUt":false,"genre":"maimai","bpm":85,"releaseDate":"20250712","from":"maimai でらっくす PRiSM PLUS","dxfrom":null,"cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{"0":{"id":1819,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":183,"tap":165,"hold":6,"slide":8,"touch":0,"break_":4},"notesPath":null,"dx":false,"sd":true,"ot":false},"1":{"id":1819,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":298,"tap":275,"hold":11,"slide":6,"touch":0,"break_":6},"notesPath":null,"dx":false,"sd":true,"ot":false},"2":{"id":1819,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":0,"notes":{"total":333,"tap":255,"hold":44,"slide":29,"touch":0,"break_":5},"notesPath":null,"dx":false,"sd":true,"ot":false},"3":{"id":1819,"level_id":3,"level":"14","level_value":14.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":576,"tap":428,"hold":21,"slide":102,"touch":0,"break_":25},"notesPath":null,"dx":false,"sd":true,"ot":false}},"ut":{},"aboutChu_id":0,"long":false},{"id":1035,"players":655,"title":"LOSER","utTitle":null,"artist":"米津玄師","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":121,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11035,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":127,"tap":96,"hold":11,"slide":4,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11035,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":283,"tap":217,"hold":25,"slide":16,"touch":12,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11035,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":465,"tap":336,"hold":66,"slide":26,"touch":23,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11035,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"Jack","romVersion":0,"notes":{"total":705,"tap":515,"hold":67,"slide":59,"touch":6,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1036,"players":467,"title":"U.S.A.","utTitle":null,"artist":"DA PUMP","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":139,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11036,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":147,"tap":111,"hold":15,"slide":2,"touch":4,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11036,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":291,"tap":223,"hold":26,"slide":12,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11036,"level_id":2,"level":"9","level_value":9.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":475,"tap":313,"hold":80,"slide":53,"touch":8,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11036,"level_id":3,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":574,"tap":336,"hold":53,"slide":54,"touch":7,"break_":124},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11036,"level_id":4,"level":"12+","level_value":12.8,"note_designer":"譜面-100号","romVersion":0,"notes":{"total":761,"tap":554,"hold":56,"slide":68,"touch":24,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1038,"players":540,"title":"新宝島","utTitle":null,"artist":"サカナクション","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":158,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11038,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":114,"tap":96,"hold":7,"slide":1,"touch":2,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11038,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":256,"tap":194,"hold":27,"slide":6,"touch":16,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11038,"level_id":2,"level":"9","level_value":9.1,"note_designer":"華火職人","romVersion":0,"notes":{"total":398,"tap":297,"hold":45,"slide":14,"touch":3,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11038,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"Moon Strix","romVersion":0,"notes":{"total":497,"tap":307,"hold":42,"slide":81,"touch":6,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1039,"players":2,"title":"UNION","utTitle":null,"artist":"OxT","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20190719","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11039,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":94,"tap":74,"hold":6,"slide":3,"touch":5,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11039,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":232,"tap":193,"hold":11,"slide":6,"touch":12,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11039,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":0,"notes":{"total":336,"tap":250,"hold":25,"slide":16,"touch":10,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11039,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":451,"tap":308,"hold":15,"slide":74,"touch":6,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":810,"long":false},{"id":1041,"players":0,"title":"乗ってけ!ジャパリビート","utTitle":null,"artist":"どうぶつビスケッツ×PPP「けものフレンズ2」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":134,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11041,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":76,"hold":8,"slide":4,"touch":3,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11041,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":194,"tap":158,"hold":16,"slide":1,"touch":13,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11041,"level_id":2,"level":"9","level_value":9.2,"note_designer":"華火職人","romVersion":0,"notes":{"total":292,"tap":184,"hold":28,"slide":24,"touch":12,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11041,"level_id":3,"level":"12","level_value":12.4,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":460,"tap":330,"hold":36,"slide":29,"touch":19,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1042,"players":1,"title":"フレ!フレ!ベストフレンズ","utTitle":null,"artist":"どうぶつビスケッツ×PPP「けものフレンズ」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":166,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11042,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":73,"hold":7,"slide":2,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11042,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":237,"tap":190,"hold":17,"slide":3,"touch":19,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11042,"level_id":2,"level":"9","level_value":9.2,"note_designer":"華火職人","romVersion":0,"notes":{"total":292,"tap":213,"hold":29,"slide":11,"touch":15,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11042,"level_id":3,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":474,"tap":339,"hold":31,"slide":68,"touch":12,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1045,"players":216,"title":"アウトサイダー","utTitle":null,"artist":"Eve","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":172,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11045,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":114,"hold":16,"slide":3,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11045,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":336,"tap":279,"hold":19,"slide":12,"touch":6,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11045,"level_id":2,"level":"9","level_value":9.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":486,"tap":351,"hold":59,"slide":22,"touch":12,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11045,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":794,"tap":523,"hold":9,"slide":128,"touch":7,"break_":127},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1047,"players":193,"title":"ジャガーノート","utTitle":null,"artist":"夏代孝明 feat. 初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":190,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11047,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":130,"tap":90,"hold":16,"slide":7,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11047,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":289,"tap":237,"hold":18,"slide":14,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11047,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":396,"tap":237,"hold":64,"slide":28,"touch":10,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11047,"level_id":3,"level":"12","level_value":12.4,"note_designer":"華火職人","romVersion":0,"notes":{"total":709,"tap":489,"hold":19,"slide":107,"touch":17,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1055,"players":0,"title":"POPPY PAPPY DAY","utTitle":null,"artist":"ポプ子(CV:五十嵐裕美)&ピピ美(CV:松嵜麗)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":157,"releaseDate":"20190906","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11055,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":153,"tap":119,"hold":15,"slide":5,"touch":5,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11055,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":292,"tap":227,"hold":24,"slide":11,"touch":16,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11055,"level_id":2,"level":"9","level_value":9.1,"note_designer":"Jack","romVersion":0,"notes":{"total":418,"tap":254,"hold":65,"slide":53,"touch":14,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11055,"level_id":3,"level":"12","level_value":12.5,"note_designer":"某S氏","romVersion":0,"notes":{"total":559,"tap":372,"hold":49,"slide":91,"touch":15,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1056,"players":3,"title":"Clattanoia","utTitle":null,"artist":"OxT","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":190,"releaseDate":"20190906","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11056,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":101,"tap":76,"hold":9,"slide":7,"touch":2,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11056,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":180,"hold":23,"slide":11,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11056,"level_id":2,"level":"10","level_value":10.5,"note_designer":"華火職人","romVersion":0,"notes":{"total":377,"tap":258,"hold":33,"slide":14,"touch":13,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11056,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":562,"tap":355,"hold":17,"slide":96,"touch":18,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1057,"players":0,"title":"The Gong of Knockout","utTitle":null,"artist":"Fear, and Loathing in Las Vegas","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":180,"releaseDate":"20190906","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11057,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":99,"tap":77,"hold":7,"slide":2,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11057,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":238,"tap":194,"hold":11,"slide":10,"touch":10,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11057,"level_id":2,"level":"11","level_value":11.2,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":428,"tap":220,"hold":50,"slide":42,"touch":11,"break_":105},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11057,"level_id":3,"level":"13","level_value":13.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":708,"tap":493,"hold":51,"slide":48,"touch":23,"break_":93},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1062,"players":4,"title":"徒花ネクロマンシー","utTitle":null,"artist":"フランシュシュ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":172,"releaseDate":"20191004","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11062,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":100,"tap":73,"hold":17,"slide":2,"touch":2,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11062,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":218,"tap":181,"hold":12,"slide":8,"touch":5,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11062,"level_id":2,"level":"10","level_value":10.2,"note_designer":"Jack","romVersion":0,"notes":{"total":362,"tap":251,"hold":26,"slide":45,"touch":18,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11062,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":455,"tap":295,"hold":44,"slide":68,"touch":15,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1063,"players":1,"title":"目覚めRETURNER","utTitle":null,"artist":"フランシュシュ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":145,"releaseDate":"20191004","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11063,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":171,"tap":138,"hold":11,"slide":2,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11063,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":276,"tap":224,"hold":24,"slide":6,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11063,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":363,"tap":264,"hold":50,"slide":16,"touch":12,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11063,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"Jack","romVersion":0,"notes":{"total":550,"tap":356,"hold":65,"slide":81,"touch":10,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1071,"players":3,"title":"東奔西走行進曲","utTitle":null,"artist":"BLACK STARS(ブラック指令・ペガッサ星人・シルバーブルーメ・ノーバ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":165,"releaseDate":"20191220","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11071,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":194,"tap":145,"hold":21,"slide":6,"touch":8,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11071,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":311,"tap":227,"hold":10,"slide":24,"touch":18,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11071,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":0,"notes":{"total":523,"tap":325,"hold":43,"slide":49,"touch":39,"break_":67},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11071,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":649,"tap":402,"hold":69,"slide":80,"touch":15,"break_":83},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1072,"players":4,"title":"Soul-ride ON!","utTitle":null,"artist":"アギラ・キングジョー・ガッツ星人(CV:飯田里穂・三森すずこ・松田利冴)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":146,"releaseDate":"20191220","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11072,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":102,"tap":73,"hold":16,"slide":3,"touch":2,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11072,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":202,"tap":144,"hold":16,"slide":17,"touch":6,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11072,"level_id":2,"level":"9","level_value":9.5,"note_designer":"華火職人","romVersion":0,"notes":{"total":354,"tap":214,"hold":31,"slide":19,"touch":32,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11072,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":452,"tap":258,"hold":82,"slide":35,"touch":31,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1076,"players":0,"title":"未完成人","utTitle":null,"artist":"ンダホ&ぺけたん from Fischer's","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":148,"releaseDate":"20190711","from":"maimai でらっくす","dxfrom":"maimai でらっくす","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11076,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":129,"hold":8,"slide":4,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11076,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":273,"tap":212,"hold":22,"slide":7,"touch":18,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11076,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":369,"tap":265,"hold":24,"slide":37,"touch":11,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11076,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":659,"tap":469,"hold":37,"slide":113,"touch":7,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1114,"players":438,"title":"青空のラプソディ","utTitle":null,"artist":"fhána","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11114,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":80,"tap":55,"hold":9,"slide":2,"touch":3,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11114,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":179,"tap":140,"hold":5,"slide":7,"touch":6,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11114,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":336,"tap":245,"hold":47,"slide":22,"touch":6,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11114,"level_id":3,"level":"12","level_value":12.5,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":481,"tap":351,"hold":23,"slide":44,"touch":18,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1116,"players":227,"title":"ラブ・ドラマティック feat. 伊原六花","utTitle":null,"artist":"鈴木雅之","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":129,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11116,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":86,"tap":51,"hold":18,"slide":4,"touch":3,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11116,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":137,"hold":12,"slide":3,"touch":2,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11116,"level_id":2,"level":"9","level_value":9.2,"note_designer":"すきやき奉行","romVersion":0,"notes":{"total":302,"tap":208,"hold":23,"slide":53,"touch":6,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11116,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":347,"tap":230,"hold":23,"slide":68,"touch":16,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1117,"players":0,"title":"異世界かるてっと","utTitle":null,"artist":"アインズ(日野聡)、カズマ(福島潤)、スバル(小林裕介)、ターニャ(悠木碧)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":148,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11117,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":96,"tap":63,"hold":8,"slide":3,"touch":11,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11117,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":181,"tap":123,"hold":10,"slide":3,"touch":16,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11117,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":0,"notes":{"total":355,"tap":292,"hold":25,"slide":22,"touch":7,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11117,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":462,"tap":306,"hold":32,"slide":73,"touch":19,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1080,"long":false},{"id":1118,"players":56,"title":"いつかいい感じにアレしよう","utTitle":null,"artist":"カクとイムラ(CV:松本慶祐)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":144,"releaseDate":"20200710","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11118,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":154,"tap":113,"hold":17,"slide":9,"touch":3,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11118,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":269,"tap":205,"hold":12,"slide":22,"touch":10,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11118,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":481,"tap":351,"hold":78,"slide":26,"touch":17,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11118,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":769,"tap":451,"hold":122,"slide":43,"touch":10,"break_":143},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1119,"players":4,"title":"I'm with you","utTitle":null,"artist":"ラティナ(CV:高尾奏音)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":181,"releaseDate":"20200724","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11119,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":84,"tap":61,"hold":10,"slide":2,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11119,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":193,"tap":145,"hold":15,"slide":9,"touch":6,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11119,"level_id":2,"level":"9+","level_value":9.6,"note_designer":"華火職人","romVersion":0,"notes":{"total":306,"tap":194,"hold":32,"slide":30,"touch":22,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11119,"level_id":3,"level":"11","level_value":11.2,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":375,"tap":233,"hold":26,"slide":50,"touch":22,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1120,"players":4,"title":"オトモダチフィルム","utTitle":null,"artist":"オーイシマサヨシ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":158,"releaseDate":"20200724","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11120,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":102,"tap":81,"hold":7,"slide":2,"touch":2,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11120,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":202,"tap":155,"hold":16,"slide":6,"touch":14,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11120,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":323,"tap":268,"hold":14,"slide":12,"touch":18,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11120,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":377,"tap":231,"hold":34,"slide":20,"touch":4,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1144,"players":1,"title":"六厘歌","utTitle":null,"artist":"六厘舎","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20200612","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11144,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":132,"tap":96,"hold":14,"slide":4,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11144,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":242,"tap":209,"hold":6,"slide":8,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11144,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":393,"tap":244,"hold":24,"slide":32,"touch":6,"break_":87},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11144,"level_id":3,"level":"12","level_value":12.4,"note_designer":"チャン@DP皆伝","romVersion":0,"notes":{"total":471,"tap":96,"hold":75,"slide":154,"touch":130,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1145,"players":24,"title":"Entrance","utTitle":null,"artist":"Ice","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20200605","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11145,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":150,"tap":127,"hold":9,"slide":2,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11145,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":267,"tap":199,"hold":22,"slide":8,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11145,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"某S氏","romVersion":0,"notes":{"total":466,"tap":356,"hold":41,"slide":25,"touch":9,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11145,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":683,"tap":493,"hold":48,"slide":37,"touch":42,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1146,"players":259,"title":"Lunar Mare","utTitle":null,"artist":"xi vs sakuzyo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":165,"releaseDate":"20200605","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11146,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":202,"tap":141,"hold":24,"slide":12,"touch":9,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11146,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":352,"tap":273,"hold":35,"slide":19,"touch":10,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11146,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":550,"tap":358,"hold":75,"slide":51,"touch":23,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11146,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":896,"tap":630,"hold":65,"slide":75,"touch":46,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1147,"players":433,"title":"Saika","utTitle":null,"artist":"Rabpit","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":145,"releaseDate":"20200605","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11147,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":136,"tap":113,"hold":9,"slide":6,"touch":2,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11147,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":234,"tap":167,"hold":21,"slide":4,"touch":4,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11147,"level_id":2,"level":"10","level_value":10.2,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":343,"tap":235,"hold":36,"slide":18,"touch":14,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11147,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"すきやき奉行","romVersion":0,"notes":{"total":467,"tap":332,"hold":31,"slide":62,"touch":8,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1148,"players":471,"title":"CHAOS","utTitle":null,"artist":"Æsir","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":150,"releaseDate":"20200605","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11148,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":209,"hold":12,"slide":5,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11148,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":313,"tap":230,"hold":43,"slide":16,"touch":7,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11148,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":0,"notes":{"total":590,"tap":425,"hold":63,"slide":54,"touch":13,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11148,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":823,"tap":531,"hold":98,"slide":59,"touch":29,"break_":106},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2036,"long":false},{"id":1149,"players":290,"title":"Maboroshi","utTitle":null,"artist":"かめりあ(EDP)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":190,"releaseDate":"20200605","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11149,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":229,"tap":188,"hold":19,"slide":6,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11149,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":326,"tap":235,"hold":50,"slide":6,"touch":12,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11149,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":512,"tap":347,"hold":88,"slide":32,"touch":7,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11149,"level_id":3,"level":"14","level_value":14.2,"note_designer":"華火職人","romVersion":0,"notes":{"total":944,"tap":660,"hold":61,"slide":78,"touch":19,"break_":126},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1150,"players":896,"title":"ウマイネームイズうまみちゃん","utTitle":null,"artist":"UMAINA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":184,"releaseDate":"20200904","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11150,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":89,"tap":60,"hold":11,"slide":3,"touch":3,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11150,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":241,"tap":200,"hold":15,"slide":13,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11150,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":361,"tap":241,"hold":47,"slide":36,"touch":16,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11150,"level_id":3,"level":"12","level_value":12.0,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":544,"tap":380,"hold":14,"slide":109,"touch":19,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1151,"players":288,"title":"馬と鹿","utTitle":null,"artist":"米津玄師","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":91,"releaseDate":"20200123","from":"maimai でらっくす PLUS","dxfrom":"maimai でらっくす PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11151,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":60,"tap":43,"hold":5,"slide":2,"touch":2,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11151,"level_id":1,"level":"5+","level_value":5.8,"note_designer":"-","romVersion":0,"notes":{"total":115,"tap":81,"hold":17,"slide":3,"touch":4,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11151,"level_id":2,"level":"8","level_value":8.5,"note_designer":"Jack","romVersion":0,"notes":{"total":196,"tap":122,"hold":40,"slide":14,"touch":4,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11151,"level_id":3,"level":"12","level_value":12.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":275,"tap":181,"hold":15,"slide":40,"touch":19,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1156,"players":8,"title":"マイオドレ!舞舞タイム","utTitle":null,"artist":"キノシタ feat. そらみこ (ホロライブ ときのそら&さくらみこ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":183,"releaseDate":"20241122","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11156,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":131,"hold":18,"slide":4,"touch":8,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11156,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":370,"tap":285,"hold":38,"slide":14,"touch":11,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11156,"level_id":2,"level":"11","level_value":11.0,"note_designer":"華火職人","romVersion":0,"notes":{"total":591,"tap":386,"hold":49,"slide":51,"touch":68,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11156,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ものくろっく","romVersion":0,"notes":{"total":748,"tap":498,"hold":45,"slide":148,"touch":28,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1178,"players":472,"title":"ノーポイッ!","utTitle":null,"artist":"Petit Rabbit's","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":158,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11178,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":85,"tap":69,"hold":6,"slide":2,"touch":1,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11178,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":188,"tap":149,"hold":17,"slide":5,"touch":2,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11178,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":346,"tap":232,"hold":34,"slide":17,"touch":16,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11178,"level_id":3,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":484,"tap":329,"hold":38,"slide":66,"touch":28,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1179,"players":241,"title":"町かどタンジェント","utTitle":null,"artist":"shami momo(吉田優子・千代田桃)/CV:小原好美・鬼頭明里","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":165,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11179,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":81,"tap":59,"hold":10,"slide":1,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11179,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":173,"hold":16,"slide":6,"touch":4,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11179,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"華火職人","romVersion":0,"notes":{"total":339,"tap":263,"hold":21,"slide":20,"touch":15,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11179,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":399,"tap":295,"hold":16,"slide":56,"touch":15,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1180,"players":1151,"title":"紅蓮華","utTitle":null,"artist":"LiSA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11180,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":162,"tap":126,"hold":10,"slide":5,"touch":12,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11180,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":159,"hold":28,"slide":18,"touch":5,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11180,"level_id":2,"level":"9","level_value":9.0,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":476,"tap":349,"hold":42,"slide":25,"touch":12,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11180,"level_id":3,"level":"11","level_value":11.5,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":560,"tap":361,"hold":84,"slide":53,"touch":26,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11180,"level_id":4,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":0,"notes":{"total":707,"tap":430,"hold":112,"slide":99,"touch":23,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1182,"players":8,"title":"MIRACLE RUSH","utTitle":null,"artist":"StylipS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20201030","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11182,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":107,"tap":82,"hold":13,"slide":1,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11182,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":191,"tap":158,"hold":14,"slide":9,"touch":2,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11182,"level_id":2,"level":"9","level_value":9.5,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":340,"tap":233,"hold":45,"slide":24,"touch":20,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11182,"level_id":3,"level":"12","level_value":12.0,"note_designer":"譜面男子学院 中堅 小鳥 遊","romVersion":0,"notes":{"total":494,"tap":339,"hold":26,"slide":58,"touch":29,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1183,"players":4,"title":"お願いマッスル","utTitle":null,"artist":"紗倉ひびき(CV:ファイルーズあい)&街雄鳴造(CV:石川界人)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":132,"releaseDate":"20201030","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11183,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":116,"tap":95,"hold":3,"slide":2,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11183,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":187,"tap":150,"hold":18,"slide":2,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11183,"level_id":2,"level":"8+","level_value":8.9,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":362,"tap":234,"hold":13,"slide":19,"touch":20,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11183,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":510,"tap":289,"hold":47,"slide":96,"touch":50,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1217,"players":519,"title":"Pretender","utTitle":null,"artist":"Official髭男dism","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":92,"releaseDate":"20200917","from":"maimai でらっくす Splash","dxfrom":"maimai でらっくす Splash","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11217,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":120,"tap":91,"hold":10,"slide":5,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11217,"level_id":1,"level":"5+","level_value":5.8,"note_designer":"-","romVersion":0,"notes":{"total":219,"tap":166,"hold":29,"slide":7,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11217,"level_id":2,"level":"9","level_value":9.0,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":399,"tap":321,"hold":37,"slide":15,"touch":21,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11217,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":502,"tap":404,"hold":34,"slide":52,"touch":7,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1250,"players":14,"title":"インフェルノ","utTitle":null,"artist":"Mrs. GREEN APPLE","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11250,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":89,"tap":77,"hold":3,"slide":2,"touch":4,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11250,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":219,"tap":176,"hold":22,"slide":8,"touch":3,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11250,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"華火職人","romVersion":0,"notes":{"total":357,"tap":219,"hold":38,"slide":54,"touch":28,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11250,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":442,"tap":278,"hold":34,"slide":85,"touch":32,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11250,"level_id":4,"level":"13","level_value":13.0,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":487,"tap":348,"hold":16,"slide":80,"touch":8,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1251,"players":578,"title":"冬のこもりうた","utTitle":null,"artist":"原田知世","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":118,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11251,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":65,"tap":50,"hold":5,"slide":4,"touch":1,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11251,"level_id":1,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":124,"tap":62,"hold":20,"slide":10,"touch":2,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11251,"level_id":2,"level":"7+","level_value":7.9,"note_designer":"Jack","romVersion":0,"notes":{"total":197,"tap":92,"hold":55,"slide":25,"touch":1,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11251,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":252,"tap":162,"hold":21,"slide":38,"touch":2,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11251,"level_id":4,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":0,"notes":{"total":388,"tap":237,"hold":35,"slide":62,"touch":3,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1252,"players":14,"title":"God knows...","utTitle":null,"artist":"涼宮ハルヒ(CV.平野 綾) TVアニメ「涼宮ハルヒの憂鬱」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11252,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":155,"hold":9,"slide":8,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11252,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":300,"tap":243,"hold":24,"slide":11,"touch":7,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11252,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"華火職人","romVersion":0,"notes":{"total":486,"tap":296,"hold":84,"slide":63,"touch":17,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11252,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":719,"tap":511,"hold":47,"slide":90,"touch":29,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11252,"level_id":4,"level":"13","level_value":13.0,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":831,"tap":582,"hold":86,"slide":87,"touch":37,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1254,"players":1083,"title":"秒針を噛む","utTitle":null,"artist":"ずっと真夜中でいいのに。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20210318","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11254,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":149,"tap":124,"hold":7,"slide":5,"touch":2,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11254,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":300,"tap":250,"hold":16,"slide":13,"touch":6,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11254,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":426,"tap":322,"hold":27,"slide":42,"touch":14,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11254,"level_id":3,"level":"11","level_value":11.0,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":641,"tap":476,"hold":54,"slide":73,"touch":20,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11254,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":778,"tap":556,"hold":49,"slide":101,"touch":13,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1256,"players":4,"title":"乙女のルートはひとつじゃない!","utTitle":null,"artist":"angela","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":192,"releaseDate":"20210709","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11256,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":85,"tap":68,"hold":9,"slide":2,"touch":2,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11256,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":222,"tap":166,"hold":26,"slide":16,"touch":5,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11256,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":326,"tap":217,"hold":17,"slide":46,"touch":24,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11256,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":507,"tap":341,"hold":35,"slide":91,"touch":27,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1257,"players":4,"title":"ビックカメラのテーマソング","utTitle":null,"artist":"ビックカメラ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20210709","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11257,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":134,"tap":90,"hold":6,"slide":3,"touch":18,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11257,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":310,"tap":224,"hold":25,"slide":11,"touch":22,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11257,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":357,"tap":223,"hold":68,"slide":18,"touch":22,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11257,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":677,"tap":248,"hold":92,"slide":79,"touch":82,"break_":176},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1258,"players":0,"title":"電話革命ナイセン","utTitle":null,"artist":"ナイセン - momoco-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":145,"releaseDate":"20210709","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11258,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":140,"tap":116,"hold":4,"slide":3,"touch":3,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11258,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":292,"tap":209,"hold":34,"slide":16,"touch":10,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11258,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":370,"tap":258,"hold":37,"slide":37,"touch":12,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11258,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":551,"tap":354,"hold":27,"slide":121,"touch":16,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1259,"players":3,"title":"Shiny Smily Story","utTitle":null,"artist":"hololive IDOL PROJECT","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20210805","from":"maimai でらっくす Splash PLUS","dxfrom":"maimai でらっくす Splash PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11259,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":85,"tap":65,"hold":7,"slide":4,"touch":2,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11259,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":203,"tap":150,"hold":21,"slide":16,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11259,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":408,"tap":318,"hold":19,"slide":36,"touch":10,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11259,"level_id":3,"level":"12","level_value":12.5,"note_designer":"ものくろっく","romVersion":0,"notes":{"total":499,"tap":327,"hold":36,"slide":64,"touch":21,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1023,"long":false},{"id":1321,"players":4644,"title":"夜に駆ける","utTitle":null,"artist":"YOASOBI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11321,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":120,"tap":95,"hold":6,"slide":8,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11321,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":323,"tap":280,"hold":15,"slide":15,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11321,"level_id":2,"level":"8","level_value":8.5,"note_designer":"みそかつ侍","romVersion":0,"notes":{"total":464,"tap":303,"hold":62,"slide":36,"touch":20,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11321,"level_id":3,"level":"11","level_value":11.2,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":684,"tap":512,"hold":51,"slide":88,"touch":13,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11321,"level_id":4,"level":"13","level_value":13.0,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":824,"tap":632,"hold":61,"slide":87,"touch":17,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2010,"long":false},{"id":1322,"players":3739,"title":"うっせぇわ","utTitle":null,"artist":"Ado","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":178,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11322,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":133,"tap":89,"hold":17,"slide":4,"touch":6,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11322,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":342,"tap":272,"hold":28,"slide":19,"touch":17,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11322,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":510,"tap":320,"hold":56,"slide":40,"touch":26,"break_":68},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11322,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":747,"tap":537,"hold":40,"slide":115,"touch":19,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11322,"level_id":4,"level":"13","level_value":13.2,"note_designer":"あまくちジンジャー@やべー新人","romVersion":0,"notes":{"total":791,"tap":438,"hold":60,"slide":115,"touch":76,"break_":102},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1323,"players":807,"title":"Shooting Stars","utTitle":null,"artist":"クレシェンドブルー [最上静香 (CV.田所あずさ)、北上麗花 (CV.平山笑美)、北沢志保 (CV.雨宮 天)、野々原 茜 (CV.小笠原早紀)、箱崎星梨花 (CV.麻倉もも)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11323,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":69,"hold":12,"slide":4,"touch":2,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11323,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":263,"tap":205,"hold":21,"slide":22,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11323,"level_id":2,"level":"8","level_value":8.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":336,"tap":216,"hold":59,"slide":37,"touch":6,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11323,"level_id":3,"level":"12","level_value":12.5,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":642,"tap":481,"hold":49,"slide":81,"touch":26,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1324,"players":576,"title":"MOON NIGHTのせいにして","utTitle":null,"artist":"DRAMATIC STARS [天道 輝 (CV.仲村宗悟), 桜庭 薫 (CV.内田雄馬), 柏木 翼 (CV.八代 拓)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":141,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11324,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":97,"tap":76,"hold":9,"slide":3,"touch":1,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11324,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":211,"hold":16,"slide":6,"touch":14,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11324,"level_id":2,"level":"8","level_value":8.5,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":346,"tap":242,"hold":53,"slide":25,"touch":12,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11324,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":568,"tap":406,"hold":47,"slide":95,"touch":6,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1329,"players":11,"title":"イヤホンロマンス","utTitle":null,"artist":"COOL&CREATE × 宝鐘マリン","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":132,"releaseDate":"20210916","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11329,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":127,"tap":96,"hold":20,"slide":6,"touch":3,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11329,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":193,"hold":21,"slide":28,"touch":5,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11329,"level_id":2,"level":"9","level_value":9.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":446,"tap":321,"hold":59,"slide":36,"touch":23,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11329,"level_id":3,"level":"13","level_value":13.1,"note_designer":"ものくろっく","romVersion":0,"notes":{"total":759,"tap":547,"hold":107,"slide":46,"touch":22,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1347,"players":3353,"title":"泥の分際で私だけの大切を奪おうだなんて","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":225,"releaseDate":"20211126","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11347,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":121,"tap":101,"hold":7,"slide":2,"touch":5,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11347,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":355,"tap":279,"hold":37,"slide":19,"touch":7,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11347,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":590,"tap":482,"hold":32,"slide":36,"touch":37,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11347,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":824,"tap":522,"hold":76,"slide":137,"touch":37,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1348,"players":1157,"title":"VOLTAGE","utTitle":null,"artist":"Rain Drops","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":194,"releaseDate":"20211224","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11348,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":196,"hold":6,"slide":4,"touch":2,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11348,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":414,"tap":370,"hold":18,"slide":11,"touch":2,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11348,"level_id":2,"level":"11","level_value":11.0,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":645,"tap":481,"hold":72,"slide":42,"touch":19,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11348,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":842,"tap":573,"hold":70,"slide":161,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1352,"players":6,"title":"Seize The Day","utTitle":null,"artist":"亜咲花","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":122,"releaseDate":"20220107","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11352,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":43,"tap":30,"hold":5,"slide":2,"touch":1,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11352,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":112,"hold":10,"slide":10,"touch":6,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11352,"level_id":2,"level":"8","level_value":8.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":238,"tap":185,"hold":24,"slide":13,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11352,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"すきやき奉行","romVersion":0,"notes":{"total":377,"tap":247,"hold":40,"slide":38,"touch":15,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1356,"players":5,"title":"なだめスかし Negotiation(TVsize)","utTitle":null,"artist":"鹿乃と宇崎ちゃん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20220128","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11356,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":72,"hold":11,"slide":3,"touch":1,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11356,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":189,"tap":145,"hold":16,"slide":8,"touch":5,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11356,"level_id":2,"level":"8","level_value":8.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":312,"tap":221,"hold":49,"slide":15,"touch":8,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11356,"level_id":3,"level":"12","level_value":12.5,"note_designer":"アマリリス","romVersion":0,"notes":{"total":522,"tap":393,"hold":30,"slide":56,"touch":16,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1367,"players":1074,"title":"veil","utTitle":null,"artist":"須田景凪","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20211126","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11367,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":127,"tap":98,"hold":2,"slide":5,"touch":2,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11367,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":248,"tap":186,"hold":20,"slide":13,"touch":8,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11367,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":364,"tap":262,"hold":35,"slide":24,"touch":13,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11367,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Jack","romVersion":0,"notes":{"total":576,"tap":352,"hold":66,"slide":116,"touch":20,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1370,"players":678,"title":"さんさーら!","utTitle":null,"artist":"ARuFa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":140,"releaseDate":"20210922","from":"maimai でらっくす UNiVERSE","dxfrom":"maimai でらっくす UNiVERSE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11370,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":148,"tap":120,"hold":13,"slide":4,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11370,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":269,"hold":16,"slide":15,"touch":4,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11370,"level_id":2,"level":"8+","level_value":8.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":430,"tap":286,"hold":107,"slide":15,"touch":13,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11370,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":793,"tap":519,"hold":47,"slide":107,"touch":68,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2176,"long":false},{"id":1396,"players":3008,"title":"テリトリーバトル","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":140,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11396,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":209,"tap":170,"hold":5,"slide":3,"touch":15,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11396,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":316,"tap":258,"hold":21,"slide":16,"touch":10,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11396,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Jack","romVersion":0,"notes":{"total":542,"tap":427,"hold":50,"slide":43,"touch":12,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11396,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"アミノハバキリ","romVersion":0,"notes":{"total":868,"tap":671,"hold":36,"slide":98,"touch":26,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1406,"players":14,"title":"愛のシュプリーム!","utTitle":null,"artist":"fhána","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":135,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11406,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":65,"tap":50,"hold":5,"slide":3,"touch":1,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11406,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":195,"tap":158,"hold":20,"slide":4,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11406,"level_id":2,"level":"8","level_value":8.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":324,"tap":227,"hold":56,"slide":8,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11406,"level_id":3,"level":"12+","level_value":12.6,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":533,"tap":372,"hold":18,"slide":63,"touch":35,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1407,"players":4939,"title":"くらべられっ子","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":194,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11407,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":110,"tap":81,"hold":18,"slide":3,"touch":2,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11407,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":307,"tap":241,"hold":27,"slide":20,"touch":3,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11407,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":379,"tap":269,"hold":53,"slide":20,"touch":21,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11407,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":527,"tap":376,"hold":43,"slide":85,"touch":11,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11407,"level_id":4,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":628,"tap":416,"hold":64,"slide":116,"touch":15,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1408,"players":3489,"title":"あの世行きのバスに乗ってさらば。","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":240,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11408,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":120,"tap":84,"hold":16,"slide":7,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11408,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":332,"tap":240,"hold":37,"slide":12,"touch":11,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11408,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":486,"tap":380,"hold":41,"slide":24,"touch":28,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11408,"level_id":3,"level":"13","level_value":13.2,"note_designer":"すきやき奉行","romVersion":0,"notes":{"total":698,"tap":462,"hold":63,"slide":71,"touch":64,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1409,"players":25,"title":"うまぴょい伝説","utTitle":null,"artist":"スペシャルウィーク (CV.和氣あず未)、サイレンススズカ (CV.高野麻里佳)、トウカイテイオー (CV.Machico)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":170,"releaseDate":"20220324","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11409,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":167,"hold":14,"slide":3,"touch":16,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11409,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":288,"tap":230,"hold":17,"slide":19,"touch":13,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11409,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":448,"tap":292,"hold":85,"slide":15,"touch":21,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11409,"level_id":3,"level":"11","level_value":11.0,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":560,"tap":353,"hold":65,"slide":61,"touch":46,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11409,"level_id":4,"level":"13","level_value":13.5,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":830,"tap":515,"hold":58,"slide":138,"touch":93,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1420,"players":1659,"title":"Photon Melodies","utTitle":null,"artist":"Photon Maiden","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":128,"releaseDate":"20220922","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11420,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":120,"tap":106,"hold":8,"slide":3,"touch":3,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11420,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":183,"tap":116,"hold":16,"slide":14,"touch":10,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11420,"level_id":2,"level":"10","level_value":10.5,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":361,"tap":222,"hold":86,"slide":23,"touch":12,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11420,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":575,"tap":359,"hold":26,"slide":121,"touch":15,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1421,"players":1321,"title":"吾輩よ猫であれ","utTitle":null,"artist":"Lyrical Lily","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":136,"releaseDate":"20220922","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11421,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":121,"tap":103,"hold":7,"slide":3,"touch":1,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11421,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":231,"tap":169,"hold":23,"slide":10,"touch":4,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11421,"level_id":2,"level":"8+","level_value":8.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":348,"tap":223,"hold":72,"slide":22,"touch":6,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11421,"level_id":3,"level":"12","level_value":12.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":558,"tap":377,"hold":56,"slide":90,"touch":8,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1430,"players":1610,"title":"オントロジー","utTitle":null,"artist":"Rain Drops","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":192,"releaseDate":"20221104","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11430,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":131,"tap":103,"hold":4,"slide":6,"touch":3,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11430,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":382,"tap":329,"hold":15,"slide":13,"touch":10,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11430,"level_id":2,"level":"10","level_value":10.2,"note_designer":"Jack","romVersion":0,"notes":{"total":542,"tap":449,"hold":39,"slide":24,"touch":14,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11430,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":702,"tap":479,"hold":30,"slide":149,"touch":24,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1431,"players":968,"title":"剣を抜け!GCCX MAX","utTitle":null,"artist":"メッセメッセクラブ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20221028","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11431,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":170,"tap":143,"hold":5,"slide":5,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11431,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":291,"tap":181,"hold":20,"slide":8,"touch":16,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11431,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":425,"tap":218,"hold":114,"slide":44,"touch":32,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11431,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":788,"tap":359,"hold":96,"slide":101,"touch":64,"break_":168},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1450,"players":1830,"title":"YONA YONA DANCE","utTitle":null,"artist":"和田アキ子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":145,"releaseDate":"20220728","from":"maimai でらっくす UNiVERSE PLUS","dxfrom":"maimai でらっくす UNiVERSE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11450,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":98,"tap":72,"hold":8,"slide":7,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11450,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":318,"tap":260,"hold":26,"slide":9,"touch":12,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11450,"level_id":2,"level":"9","level_value":9.0,"note_designer":"隅田川星人","romVersion":0,"notes":{"total":504,"tap":280,"hold":93,"slide":23,"touch":12,"break_":96},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11450,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":667,"tap":404,"hold":67,"slide":116,"touch":27,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1480,"players":15,"title":"アノーイング!さんさんウィーク!","utTitle":null,"artist":"五十嵐双葉(CV:楠木ともり)、桜井桃子(CV:早見沙織)、黒部夏美(CV:青山玲菜)、月城モナ(CV:古賀葵)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":140,"releaseDate":"20220915","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11480,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":84,"tap":71,"hold":1,"slide":3,"touch":3,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11480,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":174,"tap":132,"hold":10,"slide":9,"touch":12,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11480,"level_id":2,"level":"8","level_value":8.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":331,"tap":273,"hold":13,"slide":11,"touch":10,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11480,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":548,"tap":373,"hold":42,"slide":28,"touch":33,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1501,"players":9,"title":"Dive into the ZONe","utTitle":null,"artist":"ぞん子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":160,"releaseDate":"20221202","from":"maimai でらっくす FESTiVAL","dxfrom":"maimai でらっくす FESTiVAL","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11501,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":153,"tap":115,"hold":19,"slide":4,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11501,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":349,"tap":281,"hold":13,"slide":6,"touch":20,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11501,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":493,"tap":367,"hold":39,"slide":18,"touch":55,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11501,"level_id":3,"level":"13","level_value":13.3,"note_designer":"小鳥遊さん","romVersion":0,"notes":{"total":751,"tap":542,"hold":54,"slide":88,"touch":50,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1634,"players":54,"title":"青春コンプレックス","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":190,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11634,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":182,"tap":143,"hold":13,"slide":6,"touch":7,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11634,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":325,"tap":278,"hold":12,"slide":14,"touch":5,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11634,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":626,"tap":414,"hold":76,"slide":84,"touch":27,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11634,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":823,"tap":532,"hold":49,"slide":121,"touch":98,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11634,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":961,"tap":708,"hold":45,"slide":119,"touch":54,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1635,"players":40,"title":"アンダーキッズ","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":225,"releaseDate":"20230914","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11635,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":249,"tap":189,"hold":11,"slide":5,"touch":14,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11635,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":349,"tap":306,"hold":9,"slide":6,"touch":6,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11635,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"翠楼屋","romVersion":0,"notes":{"total":689,"tap":499,"hold":103,"slide":28,"touch":46,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11635,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":986,"tap":597,"hold":77,"slide":174,"touch":64,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1644,"players":10,"title":"story","utTitle":null,"artist":"前島麻由","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":220,"releaseDate":"20231124","from":"maimai でらっくす BUDDiES","dxfrom":"maimai でらっくす BUDDiES","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11644,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":95,"tap":73,"hold":12,"slide":2,"touch":1,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11644,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":218,"tap":174,"hold":20,"slide":6,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11644,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":372,"tap":258,"hold":34,"slide":44,"touch":27,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11644,"level_id":3,"level":"12","level_value":12.2,"note_designer":"PG-NAKAGAWA","romVersion":0,"notes":{"total":491,"tap":352,"hold":19,"slide":66,"touch":24,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1708,"players":7,"title":"カーニバルハッピー","utTitle":null,"artist":"かいりきベア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":208,"releaseDate":"20240426","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11708,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":182,"hold":12,"slide":7,"touch":14,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11708,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":371,"tap":305,"hold":10,"slide":15,"touch":10,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11708,"level_id":2,"level":"11","level_value":11.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":750,"tap":595,"hold":88,"slide":28,"touch":26,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11708,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Jack","romVersion":0,"notes":{"total":1049,"tap":697,"hold":79,"slide":125,"touch":26,"break_":122},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1709,"players":1,"title":"つづみぐさ","utTitle":null,"artist":"いよわ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":170,"releaseDate":"20240426","from":"maimai でらっくす BUDDiES PLUS","dxfrom":"maimai でらっくす BUDDiES PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11709,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":152,"tap":103,"hold":16,"slide":7,"touch":5,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11709,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":303,"tap":240,"hold":24,"slide":9,"touch":2,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11709,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":480,"tap":318,"hold":82,"slide":37,"touch":15,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11709,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":781,"tap":487,"hold":61,"slide":126,"touch":17,"break_":90},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1750,"players":16,"title":"Flashback","utTitle":null,"artist":"RiraN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20250227","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11750,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":209,"tap":175,"hold":14,"slide":4,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11750,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":323,"tap":263,"hold":20,"slide":6,"touch":5,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11750,"level_id":2,"level":"11","level_value":11.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":515,"tap":276,"hold":49,"slide":45,"touch":110,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11750,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":813,"tap":599,"hold":44,"slide":79,"touch":32,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1751,"players":18,"title":"Colorfull:Encounter","utTitle":null,"artist":"Reku Mochizuki","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20250227","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11751,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":202,"tap":151,"hold":14,"slide":4,"touch":9,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11751,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":305,"tap":247,"hold":18,"slide":9,"touch":5,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11751,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":526,"tap":433,"hold":36,"slide":39,"touch":9,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11751,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":725,"tap":533,"hold":53,"slide":86,"touch":23,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1752,"players":93,"title":"雨露霜雪","utTitle":null,"artist":"かねこちはる vs t+pazolite","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":250,"releaseDate":"20250227","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11752,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":337,"tap":281,"hold":12,"slide":6,"touch":11,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11752,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":0,"notes":{"total":532,"tap":479,"hold":24,"slide":10,"touch":5,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11752,"level_id":2,"level":"13","level_value":13.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":915,"tap":705,"hold":54,"slide":42,"touch":66,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11752,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"サファ太 vs Luxizhel","romVersion":0,"notes":{"total":1211,"tap":744,"hold":95,"slide":102,"touch":146,"break_":124},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1753,"players":70,"title":"宙天","utTitle":null,"artist":"t+pazolite vs かねこちはる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":125,"releaseDate":"20250227","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11753,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":320,"tap":263,"hold":16,"slide":6,"touch":22,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11753,"level_id":1,"level":"8+","level_value":8.9,"note_designer":"-","romVersion":0,"notes":{"total":478,"tap":416,"hold":17,"slide":11,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11753,"level_id":2,"level":"13","level_value":13.5,"note_designer":"Jack","romVersion":0,"notes":{"total":660,"tap":397,"hold":84,"slide":43,"touch":29,"break_":107},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11753,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"BELiZHEL vs Safari","romVersion":0,"notes":{"total":1058,"tap":725,"hold":55,"slide":89,"touch":107,"break_":82},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1756,"players":24,"title":"Resolution","utTitle":null,"artist":"曲:ANCHOR/歌:皇城 セツナ(CV:八巻 アンナ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":190,"releaseDate":"20250207","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11756,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":294,"tap":255,"hold":14,"slide":8,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11756,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":423,"tap":377,"hold":14,"slide":6,"touch":2,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11756,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":629,"tap":461,"hold":52,"slide":43,"touch":54,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11756,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"りんご Full Set","romVersion":0,"notes":{"total":902,"tap":634,"hold":65,"slide":110,"touch":29,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2366,"long":false},{"id":1757,"players":16,"title":"いちげき!のテーマ","utTitle":null,"artist":"曲:ヒゲドライバー/歌:いちげきしゅーたーず!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":175,"releaseDate":"20250207","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11757,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":270,"tap":231,"hold":13,"slide":4,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11757,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":401,"tap":343,"hold":20,"slide":11,"touch":12,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11757,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":637,"tap":434,"hold":64,"slide":53,"touch":66,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11757,"level_id":3,"level":"13","level_value":13.4,"note_designer":"ロシェ@ペンギン と はっぴー","romVersion":0,"notes":{"total":1010,"tap":615,"hold":64,"slide":118,"touch":99,"break_":114},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1758,"players":29,"title":"Radiance","utTitle":null,"artist":"Nhato","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":155,"releaseDate":"20250207","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11758,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":205,"tap":170,"hold":13,"slide":7,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11758,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":320,"tap":273,"hold":19,"slide":4,"touch":3,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11758,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":514,"tap":386,"hold":77,"slide":28,"touch":7,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11758,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":825,"tap":584,"hold":81,"slide":55,"touch":58,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2111,"long":false},{"id":1759,"players":34,"title":"R'N'R Monsta","utTitle":null,"artist":"Lite Show Magic","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":220,"releaseDate":"20250207","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11759,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":254,"tap":207,"hold":15,"slide":8,"touch":9,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11759,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":397,"tap":336,"hold":18,"slide":12,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11759,"level_id":2,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":584,"tap":451,"hold":36,"slide":35,"touch":36,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11759,"level_id":3,"level":"14","level_value":14.1,"note_designer":"メロンポップ vs Luxizhel","romVersion":0,"notes":{"total":805,"tap":626,"hold":22,"slide":87,"touch":48,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1775,"players":10,"title":"モンスターカミング","utTitle":null,"artist":"おめがシスターズ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":210,"releaseDate":"20250124","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11775,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":185,"tap":141,"hold":13,"slide":8,"touch":8,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11775,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":375,"tap":316,"hold":24,"slide":13,"touch":4,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11775,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":485,"tap":341,"hold":62,"slide":19,"touch":52,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11775,"level_id":3,"level":"13","level_value":13.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":657,"tap":392,"hold":49,"slide":103,"touch":64,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1798,"players":14,"title":"お願い!コンコンお稲荷さま","utTitle":null,"artist":"ARM×狐夢想 feat. ななひら","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":175,"releaseDate":"20250214","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11798,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":225,"tap":181,"hold":19,"slide":4,"touch":5,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11798,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":381,"tap":326,"hold":24,"slide":10,"touch":6,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11798,"level_id":2,"level":"10","level_value":10.5,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":488,"tap":262,"hold":63,"slide":47,"touch":76,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11798,"level_id":3,"level":"13","level_value":13.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":830,"tap":444,"hold":52,"slide":133,"touch":144,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1799,"players":9,"title":"いっぱい食べる君が好きだよ","utTitle":null,"artist":"ななひら","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":224,"releaseDate":"20250214","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11799,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":235,"tap":205,"hold":15,"slide":4,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11799,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":410,"tap":347,"hold":12,"slide":6,"touch":2,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11799,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":619,"tap":434,"hold":76,"slide":38,"touch":32,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11799,"level_id":3,"level":"13","level_value":13.2,"note_designer":"アマリリス","romVersion":0,"notes":{"total":798,"tap":549,"hold":52,"slide":90,"touch":53,"break_":54},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1800,"players":23,"title":"ピポピポ -People People- feat. ななひら","utTitle":null,"artist":"Neko Hacker","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":230,"releaseDate":"20250214","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11800,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":243,"tap":201,"hold":18,"slide":7,"touch":1,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11800,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":440,"tap":376,"hold":31,"slide":4,"touch":5,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11800,"level_id":2,"level":"11","level_value":11.2,"note_designer":"アマリリス","romVersion":0,"notes":{"total":643,"tap":495,"hold":69,"slide":33,"touch":40,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11800,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":1030,"tap":530,"hold":142,"slide":100,"touch":170,"break_":88},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1802,"players":10,"title":"ワールドワイドワンダー","utTitle":null,"artist":"TOKOTOKO(西沢さんP)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":142,"releaseDate":"20250124","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11802,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":153,"tap":123,"hold":17,"slide":4,"touch":5,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11802,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":311,"tap":268,"hold":6,"slide":7,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11802,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":488,"tap":349,"hold":63,"slide":47,"touch":17,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11802,"level_id":3,"level":"13","level_value":13.0,"note_designer":"きょむりん","romVersion":0,"notes":{"total":760,"tap":522,"hold":88,"slide":64,"touch":68,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1803,"players":24,"title":"MORNINGLOOM","utTitle":null,"artist":"saaa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":102,"releaseDate":"20250124","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11803,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":237,"tap":209,"hold":15,"slide":2,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11803,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":388,"tap":330,"hold":22,"slide":6,"touch":6,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11803,"level_id":2,"level":"11","level_value":11.5,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":524,"tap":388,"hold":50,"slide":36,"touch":24,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11803,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":0,"notes":{"total":716,"tap":418,"hold":78,"slide":77,"touch":83,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1804,"players":41,"title":"How To Make 音ゲ~曲!","utTitle":null,"artist":"F Rabbeat feat.マスタード","albums":["如何做音游曲"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":185,"releaseDate":"20250124","from":"maimai でらっくす PRiSM","dxfrom":"maimai でらっくす PRiSM","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11804,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":252,"tap":206,"hold":25,"slide":4,"touch":10,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11804,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":395,"tap":341,"hold":16,"slide":7,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11804,"level_id":2,"level":"12","level_value":12.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":649,"tap":267,"hold":100,"slide":79,"touch":180,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11804,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":854,"tap":589,"hold":54,"slide":72,"touch":63,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1806,"players":28,"title":"Fraq","utTitle":null,"artist":"owl*tree feat. べんざ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":221,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11806,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":229,"tap":171,"hold":19,"slide":6,"touch":9,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11806,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":427,"tap":358,"hold":26,"slide":8,"touch":7,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11806,"level_id":2,"level":"12","level_value":12.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":677,"tap":466,"hold":90,"slide":31,"touch":35,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11806,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":806,"tap":521,"hold":83,"slide":110,"touch":66,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1807,"players":13,"title":"ウタヒメナイトストーム","utTitle":null,"artist":"yowanecity feat.Eye","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":164,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11807,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":157,"hold":18,"slide":4,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11807,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":313,"tap":260,"hold":12,"slide":12,"touch":3,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11807,"level_id":2,"level":"11","level_value":11.5,"note_designer":"Jack","romVersion":0,"notes":{"total":552,"tap":406,"hold":46,"slide":55,"touch":29,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11807,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":856,"tap":631,"hold":43,"slide":142,"touch":26,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1808,"players":15,"title":"Feel The Luv","utTitle":null,"artist":"EmoCosine","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":155,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11808,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":211,"tap":170,"hold":9,"slide":8,"touch":10,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11808,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":352,"tap":300,"hold":18,"slide":4,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11808,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":594,"tap":413,"hold":86,"slide":48,"touch":36,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11808,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"アマリリス","romVersion":0,"notes":{"total":927,"tap":611,"hold":42,"slide":90,"touch":57,"break_":127},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1809,"players":51,"title":"Åntinomiε","utTitle":null,"artist":"ああ…翡翠茶漬け…","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":242,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11809,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":308,"tap":254,"hold":18,"slide":8,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11809,"level_id":1,"level":"9","level_value":9.5,"note_designer":"-","romVersion":0,"notes":{"total":494,"tap":433,"hold":21,"slide":14,"touch":2,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11809,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":688,"tap":471,"hold":87,"slide":58,"touch":53,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11809,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"SAFARi☆CAT","romVersion":0,"notes":{"total":1039,"tap":631,"hold":98,"slide":114,"touch":124,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1810,"players":53,"title":"ATLAS RUSH","utTitle":null,"artist":"kanone","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":156,"releaseDate":"20250411","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11810,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":236,"tap":193,"hold":13,"slide":6,"touch":10,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11810,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":368,"tap":304,"hold":23,"slide":7,"touch":13,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11810,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"サファ太","romVersion":0,"notes":{"total":592,"tap":403,"hold":61,"slide":48,"touch":59,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11810,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"BELiZHEL","romVersion":0,"notes":{"total":1045,"tap":763,"hold":42,"slide":103,"touch":109,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1811,"players":13,"title":"概して過誤","utTitle":null,"artist":"isonosuke feat.知声","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":170,"releaseDate":"20250509","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11811,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":181,"hold":13,"slide":5,"touch":8,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11811,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":371,"tap":306,"hold":16,"slide":14,"touch":6,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11811,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":501,"tap":318,"hold":69,"slide":43,"touch":53,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11811,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":800,"tap":608,"hold":52,"slide":78,"touch":43,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1812,"players":8,"title":"Unfinished Epic","utTitle":null,"artist":"SLAVE.V-V-R feat.Sor△","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20250509","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11812,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":278,"tap":247,"hold":11,"slide":4,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11812,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":0,"notes":{"total":457,"tap":405,"hold":14,"slide":12,"touch":6,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11812,"level_id":2,"level":"11","level_value":11.5,"note_designer":"Jack","romVersion":0,"notes":{"total":655,"tap":427,"hold":63,"slide":77,"touch":50,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11812,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":903,"tap":584,"hold":46,"slide":126,"touch":76,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1813,"players":34,"title":"忙シー日","utTitle":null,"artist":"原口沙輔, 式部めぐり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":150,"releaseDate":"20250509","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11813,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":194,"tap":139,"hold":12,"slide":7,"touch":28,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11813,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":0,"notes":{"total":356,"tap":298,"hold":16,"slide":14,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11813,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":529,"tap":280,"hold":112,"slide":47,"touch":77,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11813,"level_id":3,"level":"14","level_value":14.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":962,"tap":683,"hold":36,"slide":140,"touch":54,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1814,"players":52,"title":"FLΛME/FRΦST","utTitle":null,"artist":"FANTAGIRAFF","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":174,"releaseDate":"20250509","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11814,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":243,"tap":203,"hold":12,"slide":6,"touch":14,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11814,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":358,"tap":297,"hold":20,"slide":10,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11814,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":599,"tap":424,"hold":31,"slide":63,"touch":62,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11814,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"SΛFΛRI/RΦCHER","romVersion":0,"notes":{"total":1046,"tap":687,"hold":46,"slide":73,"touch":122,"break_":118},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1815,"players":20,"title":"IMBRUED:FLUX","utTitle":null,"artist":"qfeileadh feat.のあ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":176,"releaseDate":"20250711","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11815,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":177,"hold":8,"slide":10,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11815,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":341,"tap":302,"hold":10,"slide":11,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11815,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":578,"tap":377,"hold":66,"slide":39,"touch":43,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11815,"level_id":3,"level":"14","level_value":14.1,"note_designer":"きょむりん vs Luxizhel","romVersion":0,"notes":{"total":943,"tap":661,"hold":60,"slide":101,"touch":39,"break_":82},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1816,"players":16,"title":"砂の函","utTitle":null,"artist":"Nego_tiator","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20250711","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11816,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":213,"tap":171,"hold":10,"slide":4,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11816,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":283,"tap":237,"hold":30,"slide":8,"touch":2,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11816,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":505,"tap":276,"hold":106,"slide":63,"touch":40,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11816,"level_id":3,"level":"14","level_value":14.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":781,"tap":512,"hold":56,"slide":75,"touch":78,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1817,"players":46,"title":"Amereistr","utTitle":null,"artist":"rN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":147,"releaseDate":"20250711","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11817,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":261,"tap":231,"hold":13,"slide":4,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11817,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":436,"tap":366,"hold":18,"slide":10,"touch":8,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11817,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":263,"tap":122,"hold":53,"slide":12,"touch":45,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11817,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":0,"notes":{"total":738,"tap":466,"hold":102,"slide":31,"touch":72,"break_":67},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1818,"players":70,"title":"World's end BLACKBOX","utTitle":null,"artist":"打打だいず","albums":["世终孤独2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20250711","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11818,"level_id":0,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":406,"tap":340,"hold":27,"slide":8,"touch":6,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11818,"level_id":1,"level":"10","level_value":10.5,"note_designer":"-","romVersion":0,"notes":{"total":640,"tap":576,"hold":20,"slide":14,"touch":8,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11818,"level_id":2,"level":"13","level_value":13.1,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":879,"tap":671,"hold":34,"slide":54,"touch":50,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11818,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"7sRef -DOVE-","romVersion":0,"notes":{"total":1322,"tap":831,"hold":137,"slide":116,"touch":123,"break_":115},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1820,"players":147,"title":"Xaleid◆scopiX","utTitle":null,"artist":"xi","albums":["xx","完结曲","起床战争","hypixel"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20250712","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11820,"level_id":0,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":0,"notes":{"total":600,"tap":517,"hold":26,"slide":12,"touch":9,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11820,"level_id":1,"level":"11","level_value":11.0,"note_designer":"-","romVersion":0,"notes":{"total":1000,"tap":865,"hold":51,"slide":20,"touch":4,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11820,"level_id":2,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":1357,"tap":1017,"hold":103,"slide":90,"touch":72,"break_":75},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11820,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"KALEIDXSCOPE","romVersion":0,"notes":{"total":2181,"tap":1556,"hold":143,"slide":168,"touch":221,"break_":93},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11820,"level_id":4,"level":"15","level_value":15.0,"note_designer":"Xaleid◆scopiX","romVersion":0,"notes":{"total":2222,"tap":1590,"hold":173,"slide":103,"touch":222,"break_":134},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":true},{"id":1821,"players":47,"title":"Ref:rain (for 7th Heaven)","utTitle":null,"artist":"カモメサノエレクトリックオーケストラ include Limonène","albums":["refrain"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":188,"releaseDate":"20250712","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11821,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":356,"tap":279,"hold":28,"slide":14,"touch":3,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11821,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":621,"tap":523,"hold":20,"slide":19,"touch":28,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11821,"level_id":2,"level":"12","level_value":12.5,"note_designer":"きょむりん & Luxizhel","romVersion":0,"notes":{"total":1041,"tap":762,"hold":58,"slide":69,"touch":56,"break_":96},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11821,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Jack + Soma","romVersion":0,"notes":{"total":1225,"tap":777,"hold":107,"slide":147,"touch":47,"break_":147},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":true},{"id":1822,"players":16,"title":"Supersonic Generation","utTitle":null,"artist":"Massive New Krew","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":155,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11822,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":171,"tap":140,"hold":11,"slide":4,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11822,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":311,"tap":251,"hold":22,"slide":7,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11822,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":503,"tap":341,"hold":59,"slide":32,"touch":40,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11822,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":815,"tap":567,"hold":12,"slide":91,"touch":75,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":335,"long":false},{"id":1823,"players":50,"title":"Zitronectar","utTitle":null,"artist":"Reku Mochizuki","albums":["ccb","搓搓比","踩踩背"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":222,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11823,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":198,"tap":168,"hold":8,"slide":8,"touch":5,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11823,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":0,"notes":{"total":340,"tap":300,"hold":14,"slide":6,"touch":4,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11823,"level_id":2,"level":"12","level_value":12.0,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":546,"tap":357,"hold":64,"slide":55,"touch":39,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11823,"level_id":3,"level":"14","level_value":14.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":742,"tap":469,"hold":51,"slide":106,"touch":87,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1824,"players":9,"title":"なんかノイズにきこえる","utTitle":null,"artist":"HaNaMiNa feat.Hana","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":160,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11824,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":236,"tap":210,"hold":9,"slide":4,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11824,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":371,"tap":316,"hold":16,"slide":10,"touch":3,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11824,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":544,"tap":416,"hold":39,"slide":47,"touch":36,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11824,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":893,"tap":661,"hold":37,"slide":135,"touch":49,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1056,"long":false},{"id":1825,"players":10,"title":"JIGOKU STATION CENTRAL GATE","utTitle":null,"artist":"鬱P feat.000","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":160,"releaseDate":"20250627","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11825,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":250,"tap":227,"hold":9,"slide":4,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11825,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":390,"tap":326,"hold":14,"slide":12,"touch":12,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11825,"level_id":2,"level":"11","level_value":11.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":624,"tap":447,"hold":59,"slide":72,"touch":40,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11825,"level_id":3,"level":"14","level_value":14.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":1018,"tap":725,"hold":72,"slide":110,"touch":55,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":435,"long":false},{"id":1826,"players":14,"title":"Lover's Trick","utTitle":null,"artist":"litmus*","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":130,"releaseDate":"20250704","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11826,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":171,"tap":138,"hold":12,"slide":6,"touch":2,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11826,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":261,"tap":212,"hold":16,"slide":5,"touch":7,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11826,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":442,"tap":245,"hold":82,"slide":46,"touch":34,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11826,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":0,"notes":{"total":748,"tap":520,"hold":88,"slide":37,"touch":18,"break_":85},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":838,"long":false},{"id":1827,"players":10,"title":"サウンドプレイヤー","utTitle":null,"artist":"tilt-six feat.バル","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":143,"releaseDate":"20250711","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11827,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":198,"tap":170,"hold":11,"slide":4,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11827,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":314,"tap":261,"hold":13,"slide":9,"touch":4,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11827,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":519,"tap":380,"hold":65,"slide":44,"touch":22,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11827,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":837,"tap":551,"hold":73,"slide":73,"touch":33,"break_":107},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":218,"long":false},{"id":1828,"players":17,"title":"crazy (about you)","utTitle":null,"artist":"kamome sano","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":145,"releaseDate":"20250716","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11828,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":147,"hold":14,"slide":3,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11828,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":274,"tap":225,"hold":10,"slide":10,"touch":3,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11828,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":409,"tap":268,"hold":32,"slide":40,"touch":42,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11828,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":0,"notes":{"total":743,"tap":494,"hold":75,"slide":52,"touch":33,"break_":89},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2580,"long":false},{"id":1829,"players":10,"title":"Drivessover","utTitle":null,"artist":"Taishi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":182,"releaseDate":"20250716","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11829,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":214,"tap":188,"hold":9,"slide":4,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11829,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":376,"tap":319,"hold":18,"slide":6,"touch":3,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11829,"level_id":2,"level":"12","level_value":12.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":565,"tap":402,"hold":64,"slide":55,"touch":16,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11829,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"アマリリス","romVersion":0,"notes":{"total":787,"tap":512,"hold":91,"slide":98,"touch":43,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":616,"long":false},{"id":1830,"players":15,"title":"Tidal Wave","utTitle":null,"artist":"D-Cee","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":175,"releaseDate":"20250716","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11830,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":173,"hold":10,"slide":4,"touch":5,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11830,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":315,"tap":263,"hold":12,"slide":13,"touch":6,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11830,"level_id":2,"level":"12","level_value":12.3,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":453,"tap":342,"hold":44,"slide":34,"touch":16,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11830,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"あまくちジンジャー","romVersion":0,"notes":{"total":608,"tap":426,"hold":30,"slide":111,"touch":16,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":262,"long":false},{"id":1831,"players":12,"title":"きゅびずむ","utTitle":null,"artist":"超てんちゃん","albums":["地雷女3"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11831,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":172,"tap":134,"hold":14,"slide":4,"touch":8,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11831,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":369,"tap":308,"hold":18,"slide":9,"touch":5,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11831,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":469,"tap":315,"hold":53,"slide":33,"touch":49,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11831,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":738,"tap":445,"hold":68,"slide":87,"touch":73,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2864,"long":false},{"id":1832,"players":40,"title":"きゅびびびびずむ","utTitle":null,"artist":"超てんちゃん","albums":["地雷女4"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11832,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":278,"tap":221,"hold":15,"slide":15,"touch":14,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11832,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":463,"tap":404,"hold":18,"slide":13,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11832,"level_id":2,"level":"12","level_value":12.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":666,"tap":323,"hold":129,"slide":41,"touch":124,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11832,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サぴぴぴぴちネファ太太太太コ","romVersion":0,"notes":{"total":994,"tap":424,"hold":98,"slide":103,"touch":248,"break_":121},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2865,"long":false},{"id":1833,"players":9,"title":"ゆりかご","utTitle":null,"artist":"歌:可不/作詞・作曲:MIMI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":120,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11833,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":116,"tap":86,"hold":9,"slide":6,"touch":2,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11833,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":153,"hold":21,"slide":8,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11833,"level_id":2,"level":"9","level_value":9.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":343,"tap":255,"hold":34,"slide":20,"touch":10,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11833,"level_id":3,"level":"13","level_value":13.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":654,"tap":457,"hold":38,"slide":88,"touch":13,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2741,"long":false},{"id":1834,"players":28,"title":"月光","utTitle":null,"artist":"歌:V.I.P/作詞・作曲:廉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":195,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11834,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":211,"tap":176,"hold":16,"slide":6,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11834,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":398,"tap":350,"hold":16,"slide":5,"touch":3,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11834,"level_id":2,"level":"11","level_value":11.2,"note_designer":"アマリリス","romVersion":0,"notes":{"total":641,"tap":514,"hold":44,"slide":44,"touch":27,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11834,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":820,"tap":550,"hold":54,"slide":137,"touch":69,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2740,"long":false},{"id":1835,"players":34,"title":"はいよろこんで","utTitle":null,"artist":"こっちのけんと","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":147,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11835,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":193,"tap":155,"hold":17,"slide":4,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11835,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":346,"tap":305,"hold":20,"slide":6,"touch":2,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11835,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":506,"tap":357,"hold":37,"slide":56,"touch":22,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11835,"level_id":3,"level":"11+","level_value":11.6,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":649,"tap":401,"hold":81,"slide":105,"touch":46,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11835,"level_id":4,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":0,"notes":{"total":838,"tap":588,"hold":78,"slide":95,"touch":40,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2821,"long":false},{"id":1836,"players":34,"title":"ビビデバ","utTitle":null,"artist":"星街すいせい(ホロライブ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":120,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11836,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":173,"tap":143,"hold":13,"slide":6,"touch":4,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11836,"level_id":1,"level":"6","level_value":6.4,"note_designer":"-","romVersion":0,"notes":{"total":316,"tap":277,"hold":14,"slide":7,"touch":5,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11836,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":480,"tap":312,"hold":89,"slide":32,"touch":32,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11836,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":668,"tap":500,"hold":66,"slide":82,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11836,"level_id":4,"level":"13","level_value":13.2,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":825,"tap":616,"hold":40,"slide":107,"touch":18,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2686,"long":false},{"id":1837,"players":19,"title":"シカ色デイズ","utTitle":null,"artist":"シカ部 [鹿乃子のこ (CV.潘めぐみ)、虎視虎子 (CV.藤田 咲)、虎視餡子 (CV.田辺留依)、馬車芽めめ (CV.和泉風花)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":183,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11837,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":122,"tap":99,"hold":7,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11837,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":230,"tap":182,"hold":12,"slide":4,"touch":4,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11837,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":388,"tap":281,"hold":34,"slide":22,"touch":20,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11837,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":495,"tap":275,"hold":24,"slide":113,"touch":31,"break_":52},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1838,"players":60,"title":"メズマライザー","utTitle":null,"artist":"サツキ feat.初音ミク・重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":185,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11838,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":217,"tap":175,"hold":22,"slide":7,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11838,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":412,"tap":357,"hold":22,"slide":13,"touch":5,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11838,"level_id":2,"level":"10","level_value":10.5,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":524,"tap":379,"hold":44,"slide":56,"touch":16,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11838,"level_id":3,"level":"11+","level_value":11.9,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":675,"tap":428,"hold":70,"slide":127,"touch":10,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11838,"level_id":4,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":1000,"tap":613,"hold":38,"slide":83,"touch":155,"break_":111},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2689,"long":false},{"id":1839,"players":15,"title":"ももいろの鍵","utTitle":null,"artist":"いよわ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":165,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11839,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":174,"tap":135,"hold":10,"slide":4,"touch":8,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11839,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":314,"tap":258,"hold":14,"slide":11,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11839,"level_id":2,"level":"9","level_value":9.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":396,"tap":305,"hold":45,"slide":22,"touch":11,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11839,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"アマリリス","romVersion":0,"notes":{"total":640,"tap":395,"hold":90,"slide":89,"touch":30,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2812,"long":false},{"id":1840,"players":17,"title":"のだ","utTitle":null,"artist":"大漠波新","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":142,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11840,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":191,"tap":158,"hold":15,"slide":4,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11840,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":300,"tap":240,"hold":13,"slide":15,"touch":6,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11840,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":443,"tap":273,"hold":62,"slide":41,"touch":56,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11840,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Luxizhel & はっぴー","romVersion":0,"notes":{"total":830,"tap":526,"hold":34,"slide":141,"touch":55,"break_":74},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1841,"players":12,"title":"Idoratrize World","utTitle":null,"artist":"A-One","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":170,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11841,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":179,"tap":149,"hold":11,"slide":4,"touch":8,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11841,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":342,"tap":282,"hold":16,"slide":14,"touch":2,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11841,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":525,"tap":354,"hold":51,"slide":56,"touch":37,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11841,"level_id":3,"level":"13","level_value":13.3,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":761,"tap":487,"hold":51,"slide":130,"touch":52,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2871,"long":false},{"id":1842,"players":54,"title":"Synthesis.","utTitle":null,"artist":"tn-shi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20250313","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11842,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":273,"tap":218,"hold":18,"slide":10,"touch":5,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11842,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":0,"notes":{"total":477,"tap":417,"hold":16,"slide":12,"touch":3,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11842,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"Jack","romVersion":0,"notes":{"total":645,"tap":400,"hold":128,"slide":65,"touch":20,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11842,"level_id":3,"level":"14","level_value":14.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":1103,"tap":738,"hold":84,"slide":72,"touch":82,"break_":127},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2698,"long":false},{"id":1843,"players":5,"title":"もういいよ","utTitle":null,"artist":"こっちのけんと","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":147,"releaseDate":"20250328","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11843,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":124,"hold":15,"slide":4,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11843,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":316,"tap":265,"hold":18,"slide":6,"touch":5,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11843,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":546,"tap":358,"hold":119,"slide":38,"touch":15,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11843,"level_id":3,"level":"13","level_value":13.1,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":806,"tap":526,"hold":65,"slide":107,"touch":38,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1844,"players":40,"title":"モエチャッカファイア","utTitle":null,"artist":"弌誠「ゲーム『ゼンレスゾーンゼロ』エレン・ジョー 同人イメージソング」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":163,"releaseDate":"20250328","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11844,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":198,"tap":164,"hold":11,"slide":6,"touch":11,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11844,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":332,"tap":267,"hold":17,"slide":16,"touch":6,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11844,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":525,"tap":393,"hold":22,"slide":45,"touch":36,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11844,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":984,"tap":675,"hold":54,"slide":131,"touch":54,"break_":70},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2820,"long":false},{"id":1845,"players":13,"title":"マヌルネコのうた","utTitle":null,"artist":"小田朋美","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":137,"releaseDate":"20250401","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11845,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":144,"tap":116,"hold":8,"slide":6,"touch":5,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11845,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":244,"tap":190,"hold":14,"slide":7,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11845,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":398,"tap":258,"hold":54,"slide":33,"touch":21,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11845,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":0,"notes":{"total":503,"tap":322,"hold":8,"slide":153,"touch":15,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1846,"players":25,"title":"スナネコのうた","utTitle":null,"artist":"ぷにぷに電機","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":92,"releaseDate":"20250401","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11846,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":117,"tap":98,"hold":2,"slide":4,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11846,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":192,"tap":159,"hold":12,"slide":4,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11846,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":261,"tap":176,"hold":38,"slide":16,"touch":14,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11846,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":566,"tap":280,"hold":34,"slide":58,"touch":76,"break_":118},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1847,"players":23,"title":"M@GICAL☆CURE! LOVE ♥ SHOT!","utTitle":null,"artist":"SAWTOWNE","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":192,"releaseDate":"20250411","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11847,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":232,"tap":186,"hold":15,"slide":4,"touch":13,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11847,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":405,"tap":343,"hold":18,"slide":11,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11847,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":623,"tap":453,"hold":50,"slide":44,"touch":35,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11847,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":947,"tap":666,"hold":65,"slide":139,"touch":30,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1848,"players":42,"title":"Overjoy ★ OVERDOSE!!","utTitle":null,"artist":"Luna Fozer (BilliumMoto, 黒皇帝, Sobrem feat. vally.exe)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":143,"releaseDate":"20250411","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11848,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":196,"tap":166,"hold":13,"slide":4,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11848,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":363,"tap":313,"hold":14,"slide":6,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11848,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":569,"tap":372,"hold":72,"slide":51,"touch":54,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11848,"level_id":3,"level":"14","level_value":14.2,"note_designer":"Jack","romVersion":0,"notes":{"total":1074,"tap":827,"hold":50,"slide":98,"touch":59,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1849,"players":33,"title":"DATAERR0R","utTitle":null,"artist":"Cosmograph","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20250411","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11849,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":196,"tap":160,"hold":13,"slide":4,"touch":5,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11849,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":346,"tap":289,"hold":18,"slide":10,"touch":3,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11849,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":393,"tap":216,"hold":62,"slide":28,"touch":62,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11849,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":705,"tap":518,"hold":60,"slide":74,"touch":46,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1850,"players":12,"title":"あいたい星人","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":150,"releaseDate":"20250424","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11850,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":207,"tap":175,"hold":11,"slide":4,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11850,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":330,"tap":284,"hold":18,"slide":13,"touch":4,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11850,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":529,"tap":379,"hold":76,"slide":50,"touch":7,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11850,"level_id":3,"level":"13","level_value":13.2,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":752,"tap":519,"hold":62,"slide":103,"touch":57,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2759,"long":false},{"id":1851,"players":21,"title":"ハオ","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":176,"releaseDate":"20250424","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11851,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":190,"tap":155,"hold":11,"slide":4,"touch":13,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11851,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":344,"tap":288,"hold":14,"slide":7,"touch":8,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11851,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":502,"tap":392,"hold":27,"slide":21,"touch":38,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11851,"level_id":3,"level":"13","level_value":13.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":752,"tap":442,"hold":28,"slide":136,"touch":70,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2760,"long":false},{"id":1852,"players":46,"title":"好きな惣菜発表ドラゴン","utTitle":null,"artist":"ンバヂ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":160,"releaseDate":"20250509","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11852,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":131,"hold":11,"slide":6,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11852,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":302,"tap":247,"hold":12,"slide":9,"touch":6,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11852,"level_id":2,"level":"9","level_value":9.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":354,"tap":250,"hold":39,"slide":22,"touch":43,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11852,"level_id":3,"level":"12","level_value":12.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":490,"tap":294,"hold":63,"slide":55,"touch":50,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2691,"long":false},{"id":1853,"players":19,"title":"Help me, ERINNNNNN!!","utTitle":null,"artist":"ビートまりお","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":185,"releaseDate":"20250521","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11853,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":190,"hold":11,"slide":6,"touch":7,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11853,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":361,"tap":297,"hold":12,"slide":8,"touch":2,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11853,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":581,"tap":471,"hold":48,"slide":41,"touch":13,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11853,"level_id":3,"level":"13","level_value":13.3,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":914,"tap":619,"hold":48,"slide":62,"touch":85,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1854,"players":31,"title":"超最終鬼畜妹フランドール・S","utTitle":null,"artist":"ビートまりお×まろん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":210,"releaseDate":"20250521","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11854,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":237,"tap":197,"hold":11,"slide":4,"touch":13,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11854,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":384,"tap":331,"hold":14,"slide":11,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11854,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":632,"tap":394,"hold":76,"slide":60,"touch":46,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11854,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":840,"tap":584,"hold":53,"slide":88,"touch":64,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2787,"long":false},{"id":1855,"players":20,"title":"Destined Marionette","utTitle":null,"artist":"ビートまりお","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":186,"releaseDate":"20250521","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11855,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":190,"hold":18,"slide":3,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11855,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":437,"tap":379,"hold":20,"slide":5,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11855,"level_id":2,"level":"12","level_value":12.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":622,"tap":473,"hold":41,"slide":51,"touch":40,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11855,"level_id":3,"level":"14","level_value":14.3,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":1023,"tap":660,"hold":81,"slide":111,"touch":121,"break_":50},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2801,"long":false},{"id":1856,"players":5,"title":"MIRA","utTitle":null,"artist":"Kanaria","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":148,"releaseDate":"20250808","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11856,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":152,"tap":118,"hold":10,"slide":4,"touch":2,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11856,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":282,"tap":248,"hold":12,"slide":8,"touch":3,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11856,"level_id":2,"level":"9","level_value":9.5,"note_designer":"カマボコ君","romVersion":0,"notes":{"total":334,"tap":236,"hold":43,"slide":39,"touch":8,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11856,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":540,"tap":311,"hold":40,"slide":49,"touch":53,"break_":87},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1857,"players":8,"title":"空回りライブラリ","utTitle":null,"artist":"雪乃イト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":130,"releaseDate":"20250808","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11857,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":180,"tap":152,"hold":9,"slide":4,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11857,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":302,"tap":267,"hold":16,"slide":4,"touch":4,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11857,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":418,"tap":297,"hold":32,"slide":37,"touch":39,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11857,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":667,"tap":484,"hold":55,"slide":87,"touch":24,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1858,"players":8,"title":"お呪い","utTitle":null,"artist":"なきそ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":115,"releaseDate":"20250808","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11858,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":118,"tap":92,"hold":7,"slide":6,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11858,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":228,"tap":205,"hold":8,"slide":6,"touch":3,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11858,"level_id":2,"level":"10","level_value":10.2,"note_designer":"きょむりん","romVersion":0,"notes":{"total":337,"tap":210,"hold":78,"slide":10,"touch":21,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11858,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":0,"notes":{"total":549,"tap":382,"hold":16,"slide":73,"touch":39,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1859,"players":23,"title":"ありきたりな恋の歌","utTitle":null,"artist":"GYARI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":180,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11859,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":244,"tap":208,"hold":8,"slide":4,"touch":6,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11859,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":387,"tap":343,"hold":19,"slide":9,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11859,"level_id":2,"level":"10","level_value":10.5,"note_designer":"はっぴー","romVersion":0,"notes":{"total":577,"tap":411,"hold":89,"slide":25,"touch":24,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11859,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":931,"tap":503,"hold":53,"slide":122,"touch":117,"break_":136},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1860,"players":45,"title":"MYTH Re:LEASE","utTitle":null,"artist":"打打だいず Vs. Tanchiky Vs. uma Vs. モリモリあつし","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":202,"releaseDate":"20250530","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11860,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":275,"tap":221,"hold":25,"slide":8,"touch":9,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11860,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":421,"tap":337,"hold":27,"slide":10,"touch":2,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11860,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":762,"tap":553,"hold":45,"slide":61,"touch":78,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11860,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太 Vs. Safari Vs. Saf Vs. モリモリさふぁた","romVersion":0,"notes":{"total":1111,"tap":627,"hold":63,"slide":57,"touch":300,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1861,"players":19,"title":"∀","utTitle":null,"artist":"ああああ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":245,"releaseDate":"20250801","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11861,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":225,"tap":195,"hold":17,"slide":4,"touch":1,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11861,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":363,"tap":335,"hold":8,"slide":9,"touch":2,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11861,"level_id":2,"level":"11+","level_value":11.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":488,"tap":378,"hold":42,"slide":30,"touch":29,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11861,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":670,"tap":474,"hold":61,"slide":56,"touch":30,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1862,"players":18,"title":"㋰責任集合体","utTitle":null,"artist":"マサラダ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":135,"releaseDate":"20250627","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11862,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":226,"tap":186,"hold":8,"slide":4,"touch":13,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11862,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":380,"tap":338,"hold":14,"slide":7,"touch":10,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11862,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":544,"tap":389,"hold":78,"slide":28,"touch":49,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11862,"level_id":3,"level":"13","level_value":13.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":978,"tap":664,"hold":59,"slide":113,"touch":86,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1863,"players":19,"title":"三日月ステップ 2023","utTitle":null,"artist":"r-906","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":167,"releaseDate":"20250627","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11863,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":213,"tap":185,"hold":9,"slide":4,"touch":9,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11863,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":400,"tap":345,"hold":16,"slide":8,"touch":5,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11863,"level_id":2,"level":"10","level_value":10.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":559,"tap":428,"hold":39,"slide":54,"touch":15,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11863,"level_id":3,"level":"13","level_value":13.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":722,"tap":489,"hold":56,"slide":110,"touch":40,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1864,"players":12,"title":"少女レイ","utTitle":null,"artist":"みきとP","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":150,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11864,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":199,"tap":163,"hold":11,"slide":4,"touch":6,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11864,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":346,"tap":296,"hold":12,"slide":7,"touch":4,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11864,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":443,"tap":324,"hold":33,"slide":62,"touch":11,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11864,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":622,"tap":417,"hold":47,"slide":104,"touch":31,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2361,"long":false},{"id":1865,"players":26,"title":"少女A","utTitle":null,"artist":"椎名もた","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":130,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11865,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":159,"tap":126,"hold":9,"slide":4,"touch":6,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11865,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":238,"hold":12,"slide":12,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11865,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"アマリリス","romVersion":0,"notes":{"total":466,"tap":287,"hold":120,"slide":39,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11865,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":842,"tap":686,"hold":29,"slide":91,"touch":21,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2841,"long":false},{"id":1866,"players":15,"title":"帝国少女","utTitle":null,"artist":"R Sound Design","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":118,"releaseDate":"20250822","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11866,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":141,"tap":114,"hold":10,"slide":4,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11866,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":251,"tap":195,"hold":15,"slide":8,"touch":6,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11866,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":389,"tap":283,"hold":63,"slide":26,"touch":3,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11866,"level_id":3,"level":"13","level_value":13.3,"note_designer":"カマボコホルダー","romVersion":0,"notes":{"total":697,"tap":506,"hold":28,"slide":93,"touch":21,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2152,"long":false},{"id":1867,"players":13,"title":"うぇいびー","utTitle":null,"artist":"三枝明那","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":200,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11867,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":225,"tap":185,"hold":12,"slide":4,"touch":4,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11867,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":400,"tap":355,"hold":10,"slide":16,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11867,"level_id":2,"level":"10","level_value":10.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":545,"tap":370,"hold":72,"slide":37,"touch":37,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11867,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":839,"tap":580,"hold":44,"slide":133,"touch":47,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11867,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"三枝明那とはっぴー","romVersion":0,"notes":{"total":935,"tap":629,"hold":48,"slide":176,"touch":59,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1868,"players":7,"title":"RED","utTitle":null,"artist":"三枝明那","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11868,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":164,"tap":136,"hold":11,"slide":6,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11868,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":308,"tap":253,"hold":12,"slide":12,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11868,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":399,"tap":317,"hold":31,"slide":27,"touch":8,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11868,"level_id":3,"level":"13","level_value":13.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":603,"tap":385,"hold":36,"slide":60,"touch":57,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1869,"players":7,"title":"ホラフキパペット","utTitle":null,"artist":"七次元生徒会!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":205,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11869,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":191,"hold":12,"slide":8,"touch":6,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11869,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":341,"tap":302,"hold":16,"slide":6,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11869,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":530,"tap":390,"hold":49,"slide":28,"touch":37,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11869,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"メロンポップ","romVersion":0,"notes":{"total":756,"tap":457,"hold":54,"slide":126,"touch":39,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1870,"players":12,"title":"BlackFlagBreaker!!","utTitle":null,"artist":"社築 × sasakure.UK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":163,"releaseDate":"20250620","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11870,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":214,"tap":186,"hold":9,"slide":5,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11870,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":404,"tap":349,"hold":12,"slide":15,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11870,"level_id":2,"level":"11","level_value":11.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":589,"tap":406,"hold":50,"slide":50,"touch":42,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11870,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":998,"tap":693,"hold":112,"slide":124,"touch":42,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2252,"long":false},{"id":1871,"players":9,"title":"クーネル・エンゲイザー","utTitle":null,"artist":"電ǂ鯨","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":170,"releaseDate":"20250606","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11871,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":210,"tap":183,"hold":10,"slide":4,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11871,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":350,"tap":310,"hold":14,"slide":8,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11871,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":481,"tap":303,"hold":75,"slide":33,"touch":52,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11871,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":644,"tap":390,"hold":49,"slide":130,"touch":43,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2153,"long":false},{"id":1872,"players":17,"title":"ゼロトーキング","utTitle":null,"artist":"はるまきごはん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":133,"releaseDate":"20250606","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11872,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":167,"tap":138,"hold":10,"slide":4,"touch":1,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11872,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":265,"tap":209,"hold":14,"slide":11,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11872,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":383,"tap":264,"hold":53,"slide":27,"touch":10,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11872,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Jack","romVersion":0,"notes":{"total":678,"tap":461,"hold":69,"slide":69,"touch":22,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1873,"players":15,"title":"抜錨","utTitle":null,"artist":"ナナホシ管弦楽団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":140,"releaseDate":"20250606","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11873,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":193,"tap":158,"hold":10,"slide":5,"touch":6,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11873,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":322,"tap":282,"hold":14,"slide":7,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11873,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"アマリリス","romVersion":0,"notes":{"total":564,"tap":425,"hold":60,"slide":43,"touch":34,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11873,"level_id":3,"level":"13","level_value":13.0,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":765,"tap":554,"hold":42,"slide":106,"touch":40,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1874,"players":30,"title":"NO ONE YES MAN","utTitle":null,"artist":"MYUKKE.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":170,"releaseDate":"20250905","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11874,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":180,"tap":150,"hold":11,"slide":8,"touch":5,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11874,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":310,"tap":260,"hold":14,"slide":7,"touch":1,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11874,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Jack","romVersion":0,"notes":{"total":521,"tap":365,"hold":45,"slide":60,"touch":40,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11874,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"鳩ホルダー & Luxizhel","romVersion":0,"notes":{"total":827,"tap":515,"hold":73,"slide":81,"touch":66,"break_":92},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1875,"players":30,"title":"Leave All Behind","utTitle":null,"artist":"rider","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":150,"releaseDate":"20250905","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11875,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":160,"tap":127,"hold":11,"slide":4,"touch":5,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11875,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":269,"tap":214,"hold":15,"slide":8,"touch":4,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11875,"level_id":2,"level":"11","level_value":11.2,"note_designer":"鳩ホルダー","romVersion":0,"notes":{"total":433,"tap":285,"hold":46,"slide":38,"touch":38,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11875,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":684,"tap":501,"hold":39,"slide":48,"touch":36,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1876,"players":55,"title":"Retribution ~ Cycle of Redemption ~","utTitle":null,"artist":"Ardolf vs. Daily天利 (原曲: nm-y & Kry.exe)","albums":["报应"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":112,"releaseDate":"20250905","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11876,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":372,"tap":336,"hold":6,"slide":8,"touch":5,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11876,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":429,"tap":341,"hold":28,"slide":6,"touch":5,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11876,"level_id":2,"level":"13","level_value":13.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":802,"tap":640,"hold":57,"slide":36,"touch":29,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11876,"level_id":3,"level":"14","level_value":14.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":1088,"tap":726,"hold":100,"slide":93,"touch":105,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1877,"players":49,"title":"Luminescence","utTitle":null,"artist":"米虾Fomiki & 初云CLoudie","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":184,"releaseDate":"20250905","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11877,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":241,"tap":203,"hold":22,"slide":4,"touch":5,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11877,"level_id":1,"level":"7+","level_value":7.6,"note_designer":"-","romVersion":0,"notes":{"total":380,"tap":316,"hold":20,"slide":16,"touch":2,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11877,"level_id":2,"level":"11","level_value":11.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":578,"tap":332,"hold":78,"slide":61,"touch":61,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11877,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":0,"notes":{"total":882,"tap":599,"hold":40,"slide":72,"touch":42,"break_":129},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1878,"players":11,"title":"Pixel Galaxy","utTitle":null,"artist":"Snail's House","albums":["三星","三星手机","谷歌"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":150,"releaseDate":"20250801","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11878,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":167,"tap":130,"hold":10,"slide":8,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11878,"level_id":1,"level":"7","level_value":7.4,"note_designer":"-","romVersion":0,"notes":{"total":334,"tap":285,"hold":13,"slide":12,"touch":3,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11878,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":491,"tap":301,"hold":70,"slide":30,"touch":59,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11878,"level_id":3,"level":"13","level_value":13.1,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":721,"tap":523,"hold":49,"slide":76,"touch":60,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1879,"players":7,"title":"縺セ縺ク縺、縺昴d縺ク繧","utTitle":null,"artist":"縺、縺。縺ウ縺ィ","albums":["乱码","xx2","8k绝赞"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":2147483647,"releaseDate":"繧サ繝シ繧ー","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11879,"level_id":0,"level":"縺ェ縺","level_value":0.0,"note_designer":"-","romVersion":0,"notes":{"total":374,"tap":248,"hold":15,"slide":6,"touch":85,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11879,"level_id":1,"level":"繧上°繧峨↑縺","level_value":0.0,"note_designer":"-","romVersion":0,"notes":{"total":592,"tap":420,"hold":43,"slide":9,"touch":92,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11879,"level_id":2,"level":"繝輔Γ繧、","level_value":0.0,"note_designer":"縺オ繧√s縺帙>縺輔¥縺励c 縺オ繧√","romVersion":0,"notes":{"total":819,"tap":515,"hold":93,"slide":45,"touch":138,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11879,"level_id":3,"level":"縺オ繧√>","level_value":0.0,"note_designer":"縺オ繧√s縺帙>縺輔¥縺励c 縺オ繧√","romVersion":0,"notes":{"total":1408,"tap":917,"hold":89,"slide":105,"touch":250,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1880,"players":15,"title":"CiRCLE CAMPAiGN","utTitle":null,"artist":"サツキ feat.天音かなた","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":182,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11880,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":254,"tap":223,"hold":9,"slide":8,"touch":8,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11880,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":405,"tap":337,"hold":18,"slide":15,"touch":7,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11880,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":619,"tap":418,"hold":65,"slide":54,"touch":63,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11880,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":965,"tap":661,"hold":40,"slide":188,"touch":39,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1881,"players":8,"title":"Magical Paradox","utTitle":null,"artist":"Mr.Asyu","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":192,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11881,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":279,"tap":227,"hold":30,"slide":4,"touch":3,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11881,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":400,"tap":319,"hold":16,"slide":13,"touch":6,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11881,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":0,"notes":{"total":586,"tap":365,"hold":84,"slide":68,"touch":22,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11881,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":1052,"tap":737,"hold":82,"slide":102,"touch":86,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1882,"players":44,"title":"殿ッ!?ご乱心!?","utTitle":null,"artist":"Shu feat. 天羽しろっぷ","albums":["殿心"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11882,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":303,"tap":258,"hold":14,"slide":6,"touch":12,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11882,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":345,"tap":264,"hold":25,"slide":12,"touch":14,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11882,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":633,"tap":434,"hold":62,"slide":53,"touch":69,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11882,"level_id":3,"level":"14","level_value":14.2,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":885,"tap":498,"hold":81,"slide":98,"touch":112,"break_":96},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1883,"players":13,"title":"廃墟にいますキャンペーン","utTitle":null,"artist":"吉田夜世 feat.ちっく。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":215,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11883,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":270,"tap":235,"hold":18,"slide":3,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11883,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":407,"tap":326,"hold":19,"slide":8,"touch":8,"break_":46},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11883,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":583,"tap":415,"hold":51,"slide":52,"touch":30,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11883,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":879,"tap":606,"hold":53,"slide":153,"touch":33,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1884,"players":46,"title":"Customized Justice","utTitle":null,"artist":"Kobaryo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":292,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11884,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":308,"tap":266,"hold":18,"slide":6,"touch":7,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11884,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":0,"notes":{"total":421,"tap":352,"hold":13,"slide":16,"touch":8,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11884,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":703,"tap":571,"hold":52,"slide":33,"touch":25,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11884,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"サファ太 vs じゃこレモン","romVersion":0,"notes":{"total":1076,"tap":758,"hold":93,"slide":62,"touch":92,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1885,"players":63,"title":"False Amber (from the Black Bazaar, Or by A Kervan Trader from the Lands Afar, Or Buried Beneath the Shifting Sands That Lead Everywhere but Nowhere)","utTitle":null,"artist":"かめりあ","albums":["贾宝玉","名字最长"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":132,"releaseDate":"20251030","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11885,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":180,"hold":16,"slide":10,"touch":3,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11885,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":0,"notes":{"total":428,"tap":392,"hold":12,"slide":10,"touch":2,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11885,"level_id":2,"level":"13","level_value":13.2,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":808,"tap":655,"hold":70,"slide":22,"touch":27,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11885,"level_id":3,"level":"14+","level_value":14.8,"note_designer":"Safari","romVersion":0,"notes":{"total":1192,"tap":823,"hold":72,"slide":37,"touch":150,"break_":110},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1886,"players":12,"title":"真空都市","utTitle":null,"artist":"ナナツカゼ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20251107","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11886,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":250,"tap":223,"hold":12,"slide":5,"touch":3,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11886,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":417,"tap":335,"hold":16,"slide":11,"touch":7,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11886,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":554,"tap":392,"hold":77,"slide":35,"touch":14,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11886,"level_id":3,"level":"13","level_value":13.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":752,"tap":592,"hold":27,"slide":66,"touch":29,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1887,"players":15,"title":"Eternal Return","utTitle":null,"artist":"Tatsunoshin & Aira Arere","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20251107","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11887,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":230,"tap":197,"hold":17,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11887,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":345,"tap":289,"hold":16,"slide":12,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11887,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":561,"tap":363,"hold":103,"slide":43,"touch":8,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11887,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"カマボコ君","romVersion":0,"notes":{"total":897,"tap":624,"hold":56,"slide":112,"touch":28,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1888,"players":6,"title":"ぱぱぱらビーチ","utTitle":null,"artist":"ぱぱぱらビーチ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20251107","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11888,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":235,"tap":205,"hold":10,"slide":4,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11888,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":350,"tap":311,"hold":14,"slide":8,"touch":6,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11888,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":553,"tap":394,"hold":37,"slide":62,"touch":49,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11888,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"アマリリス","romVersion":0,"notes":{"total":831,"tap":626,"hold":21,"slide":87,"touch":56,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1889,"players":46,"title":"Get U ♭ack","utTitle":null,"artist":"Ryo Fukuda","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":205,"releaseDate":"20251107","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11889,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":245,"tap":198,"hold":13,"slide":8,"touch":10,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11889,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":0,"notes":{"total":392,"tap":339,"hold":11,"slide":6,"touch":6,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11889,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"きょむりん","romVersion":0,"notes":{"total":588,"tap":402,"hold":60,"slide":56,"touch":55,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11889,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":999,"tap":693,"hold":74,"slide":83,"touch":87,"break_":62},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1890,"players":10,"title":"ミクマリ","utTitle":null,"artist":"テヅカ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":174,"releaseDate":"20251212","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11890,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":171,"hold":11,"slide":9,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11890,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":371,"tap":315,"hold":16,"slide":12,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11890,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":464,"tap":290,"hold":74,"slide":53,"touch":16,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11890,"level_id":3,"level":"13","level_value":13.5,"note_designer":"アマリリス","romVersion":0,"notes":{"total":777,"tap":549,"hold":59,"slide":67,"touch":29,"break_":73},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1891,"players":13,"title":"雲外蒼電 -Dreaming Voltage-","utTitle":null,"artist":"adaptor vs DRIVE.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20251212","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11891,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":223,"tap":184,"hold":13,"slide":5,"touch":7,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11891,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":331,"tap":275,"hold":14,"slide":9,"touch":6,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11891,"level_id":2,"level":"12","level_value":12.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":597,"tap":392,"hold":46,"slide":56,"touch":87,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11891,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":876,"tap":584,"hold":53,"slide":96,"touch":71,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1892,"players":19,"title":"鬼女紅妖","utTitle":null,"artist":"Earliri","albums":["鬼女红妖"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":165,"releaseDate":"20251212","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11892,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":241,"tap":209,"hold":13,"slide":4,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11892,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":338,"tap":282,"hold":14,"slide":12,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11892,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":531,"tap":378,"hold":95,"slide":33,"touch":16,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11892,"level_id":3,"level":"14","level_value":14.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":934,"tap":690,"hold":53,"slide":73,"touch":103,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1893,"players":35,"title":"華天月兎","utTitle":null,"artist":"satella feat.Risa Yuzuki","albums":["华天月兔"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":184,"releaseDate":"20251212","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11893,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":249,"tap":193,"hold":10,"slide":9,"touch":10,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11893,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":390,"tap":320,"hold":10,"slide":13,"touch":6,"break_":41},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11893,"level_id":2,"level":"12","level_value":12.5,"note_designer":"Jack","romVersion":0,"notes":{"total":547,"tap":366,"hold":35,"slide":54,"touch":14,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11893,"level_id":3,"level":"14","level_value":14.4,"note_designer":"はっぴー","romVersion":0,"notes":{"total":888,"tap":593,"hold":55,"slide":100,"touch":14,"break_":126},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1894,"players":7,"title":"スローグロー","utTitle":null,"artist":"nayuta","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":180,"releaseDate":"20260206","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11894,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":203,"tap":161,"hold":15,"slide":8,"touch":4,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11894,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":313,"tap":256,"hold":26,"slide":10,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11894,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":537,"tap":424,"hold":35,"slide":28,"touch":17,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11894,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":710,"tap":487,"hold":32,"slide":60,"touch":31,"break_":100},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1895,"players":12,"title":"ECHO,","utTitle":null,"artist":"棗いつき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":193,"releaseDate":"20260206","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11895,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":248,"tap":214,"hold":12,"slide":8,"touch":5,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11895,"level_id":1,"level":"7+","level_value":7.9,"note_designer":"-","romVersion":0,"notes":{"total":374,"tap":320,"hold":20,"slide":15,"touch":4,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11895,"level_id":2,"level":"11","level_value":11.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":581,"tap":447,"hold":56,"slide":59,"touch":17,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11895,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":839,"tap":608,"hold":27,"slide":135,"touch":45,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1896,"players":10,"title":"Phase: Theatre","utTitle":null,"artist":"藍月なくる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":195,"releaseDate":"20260206","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11896,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":232,"tap":181,"hold":25,"slide":7,"touch":3,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11896,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":398,"tap":351,"hold":19,"slide":11,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11896,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":620,"tap":400,"hold":79,"slide":57,"touch":62,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11896,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Jack","romVersion":0,"notes":{"total":965,"tap":681,"hold":56,"slide":112,"touch":68,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1897,"players":36,"title":"Sky Trails","utTitle":null,"artist":"La prière","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":171,"releaseDate":"20260206","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11897,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":281,"tap":234,"hold":20,"slide":10,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11897,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":410,"tap":364,"hold":11,"slide":16,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11897,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":676,"tap":454,"hold":48,"slide":72,"touch":74,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11897,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Luxizhel+カマボコ君+はっぴー","romVersion":0,"notes":{"total":1052,"tap":651,"hold":65,"slide":165,"touch":21,"break_":150},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1898,"players":54,"title":"7 Wonders","utTitle":null,"artist":"削除","albums":["七感2"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":168,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11898,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":262,"tap":200,"hold":25,"slide":6,"touch":20,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11898,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":356,"tap":298,"hold":25,"slide":13,"touch":2,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11898,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":703,"tap":478,"hold":89,"slide":51,"touch":65,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11898,"level_id":3,"level":"14+","level_value":14.9,"note_designer":"KOP7th -FiNAL BATTLE- by 7.3GHz","romVersion":0,"notes":{"total":1285,"tap":977,"hold":77,"slide":77,"touch":77,"break_":77},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1899,"players":9,"title":"イーヴィルガール","utTitle":null,"artist":"Fushi feat.吉乃","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":180,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11899,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":227,"tap":196,"hold":15,"slide":4,"touch":6,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11899,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":404,"tap":345,"hold":18,"slide":8,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11899,"level_id":2,"level":"11","level_value":11.2,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":642,"tap":438,"hold":99,"slide":62,"touch":25,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11899,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel & 鳩ホルダー","romVersion":0,"notes":{"total":1120,"tap":782,"hold":128,"slide":78,"touch":67,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2603,"long":false},{"id":1900,"players":20,"title":"Dazzle hop","utTitle":null,"artist":"Sampling Masters MEGA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":220,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11900,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":273,"tap":229,"hold":5,"slide":11,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11900,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":0,"notes":{"total":450,"tap":389,"hold":12,"slide":19,"touch":6,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11900,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":734,"tap":470,"hold":98,"slide":79,"touch":75,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11900,"level_id":3,"level":"14","level_value":14.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":853,"tap":593,"hold":58,"slide":111,"touch":13,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1901,"players":62,"title":"ラストピースに祝福と栄光を","utTitle":null,"artist":"cosMo@暴走P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":280,"releaseDate":"20251205","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11901,"level_id":0,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":363,"tap":312,"hold":8,"slide":6,"touch":9,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11901,"level_id":1,"level":"9","level_value":9.0,"note_designer":"-","romVersion":0,"notes":{"total":524,"tap":426,"hold":25,"slide":13,"touch":20,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11901,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"Jack","romVersion":0,"notes":{"total":771,"tap":539,"hold":80,"slide":53,"touch":44,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11901,"level_id":3,"level":"14+","level_value":14.6,"note_designer":"せめんともり","romVersion":0,"notes":{"total":1399,"tap":960,"hold":43,"slide":118,"touch":99,"break_":179},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2579,"long":false},{"id":1902,"players":1,"title":"WakeUP MakeUP FEVER!","utTitle":null,"artist":"曲:アオワイファイ/歌:オンゲキシューターズ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":126,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11902,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":167,"tap":136,"hold":17,"slide":2,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11902,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":294,"tap":236,"hold":12,"slide":10,"touch":10,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11902,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":501,"tap":363,"hold":30,"slide":40,"touch":41,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11902,"level_id":3,"level":"13","level_value":13.3,"note_designer":"アマリリス","romVersion":0,"notes":{"total":887,"tap":549,"hold":73,"slide":96,"touch":73,"break_":96},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1903,"players":3,"title":"give it up to you","utTitle":null,"artist":"曲:中土智博/歌:bitter flavor [桜井 春菜(CV:近藤 玲奈)、早乙女 彩華(CV:中島 唯)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":174,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11903,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":189,"tap":167,"hold":9,"slide":4,"touch":3,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11903,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":294,"tap":248,"hold":12,"slide":6,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11903,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":433,"tap":290,"hold":58,"slide":31,"touch":31,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11903,"level_id":3,"level":"13","level_value":13.2,"note_designer":"せめんともり","romVersion":0,"notes":{"total":634,"tap":454,"hold":37,"slide":88,"touch":24,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1904,"players":2,"title":"ICEBURN","utTitle":null,"artist":"Srav3R","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":190,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11904,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":216,"tap":182,"hold":12,"slide":10,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11904,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":402,"tap":363,"hold":15,"slide":10,"touch":4,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11904,"level_id":2,"level":"11","level_value":11.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":547,"tap":345,"hold":59,"slide":46,"touch":81,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11904,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"カマボコ君","romVersion":0,"notes":{"total":875,"tap":603,"hold":43,"slide":125,"touch":28,"break_":76},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1905,"players":5,"title":"Daredevil Glaive","utTitle":null,"artist":"Artifact","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":185,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11905,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":249,"tap":203,"hold":11,"slide":6,"touch":9,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11905,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":375,"tap":320,"hold":14,"slide":7,"touch":10,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11905,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":592,"tap":371,"hold":72,"slide":70,"touch":31,"break_":48},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11905,"level_id":3,"level":"14","level_value":14.2,"note_designer":"サファ太 & メロンポップ","romVersion":0,"notes":{"total":1004,"tap":690,"hold":69,"slide":68,"touch":99,"break_":78},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1906,"players":57,"title":"Unwelcome School","utTitle":null,"artist":"Mitsukiyo「ブルーアーカイブ -Blue Archive-」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11906,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":204,"tap":172,"hold":9,"slide":4,"touch":9,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11906,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":311,"tap":258,"hold":12,"slide":6,"touch":7,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11906,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":479,"tap":326,"hold":76,"slide":48,"touch":13,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11906,"level_id":3,"level":"12","level_value":12.2,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":745,"tap":566,"hold":29,"slide":95,"touch":22,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11906,"level_id":4,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":960,"tap":706,"hold":17,"slide":152,"touch":48,"break_":37},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2817,"long":false},{"id":1907,"players":9,"title":"彩りキャンバス","utTitle":null,"artist":"SUGAR RUSH「ブルーアーカイブ -Blue Archive-」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11907,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":112,"tap":88,"hold":13,"slide":2,"touch":3,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11907,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":169,"hold":16,"slide":8,"touch":4,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11907,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":328,"tap":235,"hold":28,"slide":30,"touch":15,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11907,"level_id":3,"level":"13","level_value":13.0,"note_designer":"アマリリス","romVersion":0,"notes":{"total":466,"tap":333,"hold":28,"slide":56,"touch":27,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2818,"long":false},{"id":1908,"players":1,"title":"死ぬな!","utTitle":null,"artist":"こっちのけんと","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":220,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11908,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":189,"tap":141,"hold":19,"slide":4,"touch":6,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11908,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":331,"tap":296,"hold":11,"slide":7,"touch":4,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11908,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":375,"tap":269,"hold":48,"slide":43,"touch":15,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11908,"level_id":3,"level":"13","level_value":13.3,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":641,"tap":457,"hold":32,"slide":64,"touch":30,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1909,"players":2,"title":"どんぐりGAME","utTitle":null,"artist":"こっちのけんと","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":130,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11909,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":166,"tap":134,"hold":13,"slide":4,"touch":5,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11909,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":275,"tap":207,"hold":19,"slide":7,"touch":14,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11909,"level_id":2,"level":"10","level_value":10.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":420,"tap":237,"hold":91,"slide":33,"touch":20,"break_":39},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11909,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":608,"tap":326,"hold":13,"slide":189,"touch":23,"break_":57},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1910,"players":2,"title":"君だったから","utTitle":null,"artist":"中野家の五つ子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":125,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11910,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":132,"hold":8,"slide":5,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11910,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":267,"tap":219,"hold":8,"slide":8,"touch":4,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11910,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":414,"tap":300,"hold":43,"slide":27,"touch":25,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11910,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":533,"tap":316,"hold":34,"slide":76,"touch":67,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1911,"players":13,"title":"Overdose","utTitle":null,"artist":"なとり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":118,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11911,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":103,"tap":84,"hold":10,"slide":3,"touch":2,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11911,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":209,"tap":181,"hold":8,"slide":4,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11911,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":284,"tap":214,"hold":12,"slide":32,"touch":14,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11911,"level_id":3,"level":"13","level_value":13.0,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":468,"tap":336,"hold":23,"slide":88,"touch":15,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1912,"players":6,"title":"Bring it on","utTitle":null,"artist":"ROF-MAO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":143,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11912,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":174,"tap":141,"hold":10,"slide":6,"touch":7,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11912,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":287,"tap":233,"hold":10,"slide":10,"touch":6,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11912,"level_id":2,"level":"10","level_value":10.2,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":437,"tap":281,"hold":31,"slide":40,"touch":56,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11912,"level_id":3,"level":"13","level_value":13.4,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":824,"tap":572,"hold":84,"slide":87,"touch":22,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1913,"players":50,"title":"モニタリング","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":132,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11913,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":153,"tap":123,"hold":11,"slide":4,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11913,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":248,"tap":202,"hold":8,"slide":9,"touch":3,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11913,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Jack","romVersion":0,"notes":{"total":473,"tap":330,"hold":49,"slide":60,"touch":17,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11913,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":497,"tap":344,"hold":26,"slide":97,"touch":11,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11913,"level_id":4,"level":"13","level_value":13.4,"note_designer":"カマボコ君","romVersion":0,"notes":{"total":646,"tap":439,"hold":43,"slide":102,"touch":31,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1914,"players":53,"title":"テトリス","utTitle":null,"artist":"柊マグネタイト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":170,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11914,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":246,"tap":218,"hold":7,"slide":4,"touch":8,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11914,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":379,"tap":320,"hold":19,"slide":8,"touch":8,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11914,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":561,"tap":346,"hold":65,"slide":60,"touch":64,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11914,"level_id":3,"level":"12","level_value":12.0,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":741,"tap":545,"hold":20,"slide":142,"touch":21,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11914,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":941,"tap":618,"hold":38,"slide":171,"touch":59,"break_":55},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2823,"long":false},{"id":1915,"players":37,"title":"み む かゥ わ ナ イ ス ト ラ イ","utTitle":null,"artist":"ぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":126,"releaseDate":"20260109","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11915,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":135,"hold":6,"slide":4,"touch":20,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11915,"level_id":1,"level":"6+","level_value":6.8,"note_designer":"-","romVersion":0,"notes":{"total":330,"tap":264,"hold":16,"slide":10,"touch":22,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11915,"level_id":2,"level":"11","level_value":11.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":607,"tap":340,"hold":96,"slide":25,"touch":115,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11915,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":928,"tap":414,"hold":127,"slide":86,"touch":123,"break_":178},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1916,"players":6,"title":"有頂天ドリーマーズ","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":188,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11916,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":163,"tap":135,"hold":13,"slide":4,"touch":4,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11916,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":302,"tap":262,"hold":14,"slide":7,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11916,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":446,"tap":330,"hold":56,"slide":21,"touch":22,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11916,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":0,"notes":{"total":645,"tap":481,"hold":37,"slide":74,"touch":35,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2692,"long":false},{"id":1917,"players":32,"title":"Eureka","utTitle":null,"artist":"sasakure.UK × ArmyTom (w/z Bitplane)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":150,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11917,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":197,"tap":172,"hold":10,"slide":5,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11917,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":328,"tap":262,"hold":28,"slide":8,"touch":6,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11917,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":475,"tap":294,"hold":88,"slide":46,"touch":24,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11917,"level_id":3,"level":"14","level_value":14.1,"note_designer":"Luxizhel vs サファ太","romVersion":0,"notes":{"total":907,"tap":629,"hold":112,"slide":72,"touch":34,"break_":60},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1918,"players":33,"title":"ニルヴの心臓","utTitle":null,"artist":"TJ.hangneil + Atomic Sphere feat.Annabel","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":256,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11918,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":311,"tap":278,"hold":8,"slide":12,"touch":4,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11918,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":394,"tap":340,"hold":15,"slide":8,"touch":3,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11918,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":673,"tap":506,"hold":97,"slide":18,"touch":9,"break_":43},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11918,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":880,"tap":585,"hold":111,"slide":72,"touch":79,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2826,"long":false},{"id":1921,"players":6,"title":"しゅ~しん?変身☆ハカイシンzzZ","utTitle":null,"artist":"YOFUKASHi Sound Team feat.編井うも","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":180,"releaseDate":"20251003","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11921,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":221,"tap":180,"hold":14,"slide":4,"touch":7,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11921,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":365,"tap":305,"hold":26,"slide":12,"touch":4,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11921,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"アマリリス","romVersion":0,"notes":{"total":608,"tap":366,"hold":87,"slide":46,"touch":71,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11921,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":903,"tap":524,"hold":56,"slide":92,"touch":126,"break_":105},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1922,"players":9,"title":"命テステス","utTitle":null,"artist":"ぱりぱりさらうどん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":240,"releaseDate":"20251003","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11922,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":169,"tap":138,"hold":13,"slide":4,"touch":2,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11922,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":284,"hold":10,"slide":12,"touch":2,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11922,"level_id":2,"level":"11","level_value":11.2,"note_designer":"Jack","romVersion":0,"notes":{"total":413,"tap":242,"hold":89,"slide":46,"touch":17,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11922,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":509,"tap":289,"hold":33,"slide":108,"touch":8,"break_":71},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1923,"players":10,"title":"拝啓、最高の思い出たち","utTitle":null,"artist":"ヤレギノ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":124,"releaseDate":"20251003","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11923,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":170,"tap":137,"hold":11,"slide":6,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11923,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":244,"tap":195,"hold":10,"slide":6,"touch":7,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11923,"level_id":2,"level":"9","level_value":9.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":377,"tap":278,"hold":46,"slide":16,"touch":19,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11923,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":0,"notes":{"total":717,"tap":528,"hold":48,"slide":75,"touch":28,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1924,"players":40,"title":"おべんきょうたいむ","utTitle":null,"artist":"litmus*","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":165,"releaseDate":"20251003","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11924,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":252,"tap":211,"hold":13,"slide":7,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11924,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":368,"tap":312,"hold":16,"slide":6,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11924,"level_id":2,"level":"12","level_value":12.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":653,"tap":410,"hold":103,"slide":56,"touch":65,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11924,"level_id":3,"level":"14","level_value":14.1,"note_designer":"はっぴー","romVersion":0,"notes":{"total":1006,"tap":626,"hold":96,"slide":127,"touch":91,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1925,"players":22,"title":"るろうらんる","utTitle":null,"artist":"ちから","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":156,"releaseDate":"20251003","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11925,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":202,"tap":169,"hold":13,"slide":4,"touch":9,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11925,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":300,"tap":251,"hold":8,"slide":7,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11925,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":593,"tap":476,"hold":49,"slide":35,"touch":17,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11925,"level_id":3,"level":"14","level_value":14.3,"note_designer":"るしえる","romVersion":0,"notes":{"total":948,"tap":699,"hold":114,"slide":60,"touch":30,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1926,"players":16,"title":"はじまりの未来","utTitle":null,"artist":"40mP × sasakure.UK / 初音ミク「劇場版プロジェクトセカイ 壊れたセカイと歌えないミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":156,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11926,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":134,"tap":102,"hold":17,"slide":5,"touch":3,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11926,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":280,"tap":224,"hold":18,"slide":8,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11926,"level_id":2,"level":"10","level_value":10.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":433,"tap":332,"hold":39,"slide":27,"touch":27,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11926,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":623,"tap":335,"hold":50,"slide":62,"touch":55,"break_":121},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2874,"long":false},{"id":1927,"players":5,"title":"Worlders","utTitle":null,"artist":"じん / バーチャル・シンガー、Leo/need、MORE MORE JUMP!、Vivid BAD SQUAD、ワンダーランズ×ショウタイム、25時、ナイトコードで。「劇場版プロジェクトセカイ 壊れたセカイと歌えないミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":137,"releaseDate":"20251016","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11927,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":140,"tap":106,"hold":9,"slide":4,"touch":4,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11927,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":240,"tap":181,"hold":16,"slide":6,"touch":5,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11927,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":384,"tap":285,"hold":34,"slide":35,"touch":25,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11927,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"カマボコ君","romVersion":0,"notes":{"total":532,"tap":382,"hold":17,"slide":74,"touch":56,"break_":3},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2875,"long":false},{"id":1928,"players":14,"title":"化けの花","utTitle":null,"artist":"なきそ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":180,"releaseDate":"20260109","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11928,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":173,"tap":135,"hold":11,"slide":4,"touch":4,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11928,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":288,"tap":235,"hold":15,"slide":10,"touch":3,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11928,"level_id":2,"level":"11","level_value":11.0,"note_designer":"アマリリス","romVersion":0,"notes":{"total":485,"tap":349,"hold":38,"slide":52,"touch":16,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11928,"level_id":3,"level":"13","level_value":13.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":742,"tap":484,"hold":59,"slide":87,"touch":48,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1929,"players":25,"title":"ヒアソビ","utTitle":null,"artist":"かめりあ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":134,"releaseDate":"20251030","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11929,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":218,"tap":176,"hold":10,"slide":5,"touch":4,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11929,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":324,"tap":273,"hold":14,"slide":8,"touch":5,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11929,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":519,"tap":332,"hold":101,"slide":35,"touch":25,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11929,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":0,"notes":{"total":924,"tap":605,"hold":85,"slide":99,"touch":106,"break_":29},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2522,"long":false},{"id":1930,"players":14,"title":"電光刹歌","utTitle":null,"artist":"かめりあ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":207,"releaseDate":"20251120","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11930,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":207,"tap":174,"hold":15,"slide":10,"touch":2,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11930,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":361,"tap":317,"hold":19,"slide":8,"touch":5,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11930,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Jack","romVersion":0,"notes":{"total":607,"tap":451,"hold":48,"slide":26,"touch":47,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11930,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":828,"tap":602,"hold":16,"slide":132,"touch":53,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2887,"long":false},{"id":1931,"players":11,"title":"ウィーアーピコピコハンマーズ!!!!","utTitle":null,"artist":"cosMo@暴走P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":202,"releaseDate":"20251120","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11931,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":231,"hold":14,"slide":6,"touch":12,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11931,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":429,"tap":368,"hold":21,"slide":4,"touch":11,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11931,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":580,"tap":444,"hold":34,"slide":24,"touch":44,"break_":34},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11931,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":1038,"tap":692,"hold":76,"slide":119,"touch":129,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2884,"long":false},{"id":1932,"players":10,"title":"ジェットブラック","utTitle":null,"artist":"雄之助","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":170,"releaseDate":"20251120","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11932,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":180,"hold":12,"slide":10,"touch":4,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11932,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":379,"tap":323,"hold":18,"slide":6,"touch":6,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11932,"level_id":2,"level":"10","level_value":10.2,"note_designer":"はっぴー","romVersion":0,"notes":{"total":541,"tap":417,"hold":56,"slide":40,"touch":7,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11932,"level_id":3,"level":"13","level_value":13.2,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":808,"tap":548,"hold":65,"slide":113,"touch":52,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2885,"long":false},{"id":1933,"players":15,"title":"トレジャーガーデン","utTitle":null,"artist":"Ponchi♪","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":268,"releaseDate":"20251120","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11933,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":281,"tap":237,"hold":18,"slide":7,"touch":6,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11933,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":444,"tap":373,"hold":29,"slide":8,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11933,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":592,"tap":434,"hold":52,"slide":42,"touch":34,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11933,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"アマリリス","romVersion":0,"notes":{"total":1051,"tap":697,"hold":80,"slide":113,"touch":108,"break_":53},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2886,"long":false},{"id":1934,"players":22,"title":"最愛人生ランナー","utTitle":null,"artist":"かいりきベア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":180,"releaseDate":"20251120","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11934,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":258,"tap":216,"hold":22,"slide":5,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11934,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":402,"tap":338,"hold":26,"slide":8,"touch":8,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11934,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":736,"tap":496,"hold":99,"slide":62,"touch":70,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11934,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":1054,"tap":735,"hold":61,"slide":151,"touch":63,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2883,"long":false},{"id":1935,"players":16,"title":"初音ミクの暴走","utTitle":null,"artist":"cosMo@暴走P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":310,"releaseDate":"20251205","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11935,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":312,"tap":280,"hold":12,"slide":4,"touch":7,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11935,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":0,"notes":{"total":408,"tap":339,"hold":14,"slide":10,"touch":7,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11935,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"はっぴー","romVersion":0,"notes":{"total":816,"tap":678,"hold":39,"slide":52,"touch":27,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11935,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"サファ太","romVersion":0,"notes":{"total":1091,"tap":671,"hold":159,"slide":75,"touch":121,"break_":65},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1936,"players":10,"title":"Let's ミクササイズ!!","utTitle":null,"artist":"cosMo@暴走P「Fit Boxing feat. 初音ミク -ミクといっしょにエクササイズ-」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":239,"releaseDate":"20251205","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11936,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":287,"tap":244,"hold":17,"slide":8,"touch":4,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11936,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":438,"tap":372,"hold":16,"slide":13,"touch":10,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11936,"level_id":2,"level":"12","level_value":12.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":870,"tap":657,"hold":70,"slide":27,"touch":97,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11936,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":1111,"tap":817,"hold":69,"slide":142,"touch":62,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1937,"players":4,"title":"スノーマン (Rerec)","utTitle":null,"artist":"halyosy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":127,"releaseDate":"20251224","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11937,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":176,"tap":144,"hold":10,"slide":4,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11937,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":265,"tap":200,"hold":18,"slide":7,"touch":10,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11937,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":480,"tap":353,"hold":59,"slide":24,"touch":27,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11937,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Jack","romVersion":0,"notes":{"total":725,"tap":503,"hold":86,"slide":69,"touch":31,"break_":36},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1938,"players":19,"title":"JINGLE DEATH","utTitle":null,"artist":"DJ Myosuke & Gram","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":222,"releaseDate":"20251224","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11938,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":208,"tap":172,"hold":12,"slide":8,"touch":4,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11938,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":418,"tap":372,"hold":18,"slide":7,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11938,"level_id":2,"level":"12","level_value":12.4,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":548,"tap":402,"hold":52,"slide":47,"touch":26,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11938,"level_id":3,"level":"14","level_value":14.1,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":859,"tap":563,"hold":46,"slide":103,"touch":55,"break_":92},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1939,"players":12,"title":"うい麦畑でつかまえて","utTitle":null,"artist":"しぐれうい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":168,"releaseDate":"20260109","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11939,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":224,"tap":187,"hold":19,"slide":5,"touch":5,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11939,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":377,"tap":309,"hold":16,"slide":11,"touch":15,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11939,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"おそろっちーぬ","romVersion":0,"notes":{"total":602,"tap":398,"hold":46,"slide":52,"touch":84,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11939,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":969,"tap":653,"hold":56,"slide":127,"touch":74,"break_":59},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1940,"players":8,"title":"勝手に生きましょ","utTitle":null,"artist":"しぐれうい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":176,"releaseDate":"20260109","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11940,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":222,"tap":179,"hold":22,"slide":5,"touch":6,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11940,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":401,"tap":333,"hold":20,"slide":15,"touch":5,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11940,"level_id":2,"level":"10","level_value":10.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":518,"tap":342,"hold":68,"slide":38,"touch":30,"break_":40},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11940,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Jack","romVersion":0,"notes":{"total":749,"tap":545,"hold":42,"slide":86,"touch":18,"break_":58},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1941,"players":6,"title":"アイアイ傘","utTitle":null,"artist":"ハム feat. 雨衣","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":116,"releaseDate":"20260109","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11941,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":158,"tap":135,"hold":9,"slide":4,"touch":5,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11941,"level_id":1,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":269,"tap":230,"hold":8,"slide":7,"touch":11,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11941,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":417,"tap":296,"hold":50,"slide":26,"touch":22,"break_":23},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11941,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"きょむりん & はっぴー","romVersion":0,"notes":{"total":587,"tap":373,"hold":12,"slide":173,"touch":14,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1942,"players":30,"title":"ヤミナベ!!!!","utTitle":null,"artist":"cosMo@暴走P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":264,"releaseDate":"20251224","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11942,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":0,"notes":{"total":299,"tap":253,"hold":15,"slide":4,"touch":14,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11942,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":372,"tap":322,"hold":10,"slide":12,"touch":8,"break_":20},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11942,"level_id":2,"level":"12+","level_value":12.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":652,"tap":542,"hold":39,"slide":36,"touch":10,"break_":25},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11942,"level_id":3,"level":"14","level_value":14.5,"note_designer":"サファ太","romVersion":0,"notes":{"total":1006,"tap":661,"hold":121,"slide":80,"touch":100,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1943,"players":7,"title":"INTJINTPENTJENTPINFJENFJINFPENFPISTJISFJESTJESFJESTPISTPISFPESFP","utTitle":null,"artist":"3markets[ ]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":150,"releaseDate":"20260116","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11943,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":220,"tap":185,"hold":13,"slide":6,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11943,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":365,"tap":302,"hold":20,"slide":9,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11943,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":496,"tap":334,"hold":94,"slide":41,"touch":21,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11943,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー(INFP)","romVersion":0,"notes":{"total":926,"tap":659,"hold":61,"slide":176,"touch":26,"break_":4},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1947,"players":4,"title":"恋の氷結おてんば湯けむりチルノ温泉","utTitle":null,"artist":"uno×夕野ヨシミ feat. miko","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":188,"releaseDate":"20260220","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11947,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":140,"tap":109,"hold":9,"slide":6,"touch":3,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11947,"level_id":1,"level":"7","level_value":7.2,"note_designer":"-","romVersion":0,"notes":{"total":242,"tap":216,"hold":12,"slide":5,"touch":2,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11947,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":365,"tap":243,"hold":43,"slide":43,"touch":18,"break_":18},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11947,"level_id":3,"level":"13","level_value":13.3,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":620,"tap":411,"hold":58,"slide":73,"touch":34,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1948,"players":7,"title":"イタ電はやめて! ぼくらのスカーレット・コール","utTitle":null,"artist":"七条レタスグループ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":112,"releaseDate":"20260220","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11948,"level_id":0,"level":"1","level_value":1.0,"note_designer":"-","romVersion":0,"notes":{"total":125,"tap":92,"hold":13,"slide":4,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11948,"level_id":1,"level":"5+","level_value":5.8,"note_designer":"-","romVersion":0,"notes":{"total":238,"tap":184,"hold":14,"slide":6,"touch":8,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11948,"level_id":2,"level":"9","level_value":9.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":355,"tap":217,"hold":42,"slide":37,"touch":49,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11948,"level_id":3,"level":"12+","level_value":12.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":1139,"tap":297,"hold":15,"slide":54,"touch":29,"break_":744},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1949,"players":8,"title":"むしみこうにゃーのハッピッピー","utTitle":null,"artist":"ARM×狐夢想 feat. miko×山本椛","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":225,"releaseDate":"20260220","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11949,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":172,"tap":139,"hold":14,"slide":4,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11949,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":281,"tap":239,"hold":17,"slide":8,"touch":6,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11949,"level_id":2,"level":"11","level_value":11.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":511,"tap":315,"hold":75,"slide":16,"touch":95,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11949,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"じゃこレモン","romVersion":0,"notes":{"total":729,"tap":474,"hold":38,"slide":130,"touch":56,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1950,"players":6,"title":"ラプラスショコラ","utTitle":null,"artist":"Kai","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":130,"releaseDate":"20260213","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11950,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":158,"tap":130,"hold":11,"slide":6,"touch":4,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11950,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":254,"tap":211,"hold":18,"slide":8,"touch":6,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11950,"level_id":2,"level":"9+","level_value":9.9,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":403,"tap":276,"hold":37,"slide":54,"touch":20,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11950,"level_id":3,"level":"12+","level_value":12.9,"note_designer":"はっぴー","romVersion":0,"notes":{"total":691,"tap":488,"hold":42,"slide":135,"touch":17,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1951,"players":43,"title":"サイエンス","utTitle":null,"artist":"MIMI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":188,"releaseDate":"20250918","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11951,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":195,"tap":162,"hold":13,"slide":8,"touch":4,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11951,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":404,"tap":356,"hold":12,"slide":6,"touch":4,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11951,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":532,"tap":359,"hold":72,"slide":47,"touch":12,"break_":42},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11951,"level_id":3,"level":"13","level_value":13.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":750,"tap":530,"hold":61,"slide":93,"touch":34,"break_":32},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1952,"players":5,"title":"KNØCK ØUT!!","utTitle":null,"artist":"DIVELA feat.ラングドシャ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11952,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":212,"tap":182,"hold":10,"slide":5,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11952,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":329,"tap":296,"hold":13,"slide":6,"touch":4,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11952,"level_id":2,"level":"11","level_value":11.2,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":554,"tap":424,"hold":30,"slide":36,"touch":26,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11952,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":874,"tap":550,"hold":39,"slide":109,"touch":77,"break_":99},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1953,"players":1,"title":"Aides","utTitle":null,"artist":"tokiwa×むト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11953,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":217,"tap":185,"hold":14,"slide":4,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11953,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":355,"tap":292,"hold":22,"slide":14,"touch":3,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11953,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":572,"tap":399,"hold":73,"slide":35,"touch":52,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11953,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":793,"tap":556,"hold":56,"slide":122,"touch":26,"break_":33},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1954,"players":1,"title":"Treasure Chest Expedition","utTitle":null,"artist":"7mai","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":200,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11954,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":233,"tap":197,"hold":13,"slide":4,"touch":2,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11954,"level_id":1,"level":"8+","level_value":8.7,"note_designer":"-","romVersion":0,"notes":{"total":381,"tap":355,"hold":3,"slide":8,"touch":5,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11954,"level_id":2,"level":"11","level_value":11.5,"note_designer":"アマリリス","romVersion":0,"notes":{"total":616,"tap":467,"hold":56,"slide":37,"touch":28,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11954,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"せめんともり","romVersion":0,"notes":{"total":832,"tap":645,"hold":41,"slide":79,"touch":55,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1955,"players":0,"title":"ソテリア","utTitle":null,"artist":"Rafutsuri feat.桜あおい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":160,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11955,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":219,"tap":190,"hold":11,"slide":6,"touch":3,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11955,"level_id":1,"level":"8","level_value":8.2,"note_designer":"-","romVersion":0,"notes":{"total":343,"tap":277,"hold":24,"slide":10,"touch":8,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11955,"level_id":2,"level":"12","level_value":12.0,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":579,"tap":363,"hold":80,"slide":81,"touch":36,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11955,"level_id":3,"level":"14","level_value":14.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":890,"tap":569,"hold":43,"slide":135,"touch":82,"break_":61},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1956,"players":44,"title":"Break The Speakers","utTitle":null,"artist":"DJ Myosuke","albums":["breakthesega","猫娘挥手"],"hasDx":true,"hasSd":false,"hasUt":false,"genre":"maimai","bpm":185,"releaseDate":"20260305","from":"maimai でらっくす CiRCLE","dxfrom":"maimai でらっくす CiRCLE","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11956,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":275,"tap":238,"hold":3,"slide":6,"touch":14,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11956,"level_id":1,"level":"8+","level_value":8.8,"note_designer":"-","romVersion":0,"notes":{"total":443,"tap":374,"hold":13,"slide":6,"touch":42,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11956,"level_id":2,"level":"12+","level_value":12.9,"note_designer":"ロシェ@ペンギン","romVersion":0,"notes":{"total":705,"tap":313,"hold":84,"slide":89,"touch":112,"break_":107},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11956,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"BELiZHEL","romVersion":0,"notes":{"total":1096,"tap":685,"hold":96,"slide":131,"touch":112,"break_":72},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1969,"players":8,"title":"TECHNOPOLIS 2085","utTitle":null,"artist":"PRASTIK DANCEFLOOR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":134,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11969,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":198,"tap":167,"hold":16,"slide":3,"touch":5,"break_":7},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11969,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":253,"tap":197,"hold":15,"slide":8,"touch":6,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11969,"level_id":2,"level":"10+","level_value":10.9,"note_designer":"アマリリス","romVersion":0,"notes":{"total":460,"tap":311,"hold":41,"slide":63,"touch":35,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11969,"level_id":3,"level":"13+","level_value":13.8,"note_designer":"シチミヘルツ","romVersion":0,"notes":{"total":750,"tap":398,"hold":136,"slide":51,"touch":46,"break_":119},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1100,"long":false},{"id":1970,"players":21,"title":"Galaxy Blaster","utTitle":null,"artist":"ああああ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":208,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11970,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":268,"tap":239,"hold":8,"slide":4,"touch":9,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11970,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":369,"tap":328,"hold":13,"slide":10,"touch":8,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11970,"level_id":2,"level":"11","level_value":11.5,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":571,"tap":413,"hold":75,"slide":50,"touch":7,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11970,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":938,"tap":606,"hold":84,"slide":97,"touch":106,"break_":45},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2805,"long":false},{"id":1971,"players":0,"title":"キミは“見ていたね”?","utTitle":null,"artist":"曲:篠崎あやと、橘亮祐/歌:結城 莉玖(CV:朝日奈 丸佳)、東雲 つむぎ(CV:和泉 風花)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"オンゲキ & CHUNITHM","bpm":168,"releaseDate":"20260401","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11971,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":189,"tap":146,"hold":14,"slide":5,"touch":10,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11971,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":344,"tap":298,"hold":13,"slide":8,"touch":6,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11971,"level_id":2,"level":"10","level_value":10.0,"note_designer":"はっぴー","romVersion":0,"notes":{"total":471,"tap":326,"hold":86,"slide":42,"touch":17,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11971,"level_id":3,"level":"13","level_value":13.1,"note_designer":"サファ太","romVersion":0,"notes":{"total":655,"tap":375,"hold":56,"slide":84,"touch":77,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1975,"players":6,"title":"BOW AND ARROW (アニメ・オープニングver.)","utTitle":null,"artist":"米津玄師","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":180,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11975,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":111,"tap":89,"hold":3,"slide":5,"touch":6,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11975,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":216,"tap":181,"hold":14,"slide":5,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11975,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":328,"tap":243,"hold":28,"slide":20,"touch":16,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11975,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":428,"tap":315,"hold":31,"slide":68,"touch":9,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11975,"level_id":4,"level":"13","level_value":13.2,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":464,"tap":284,"hold":35,"slide":64,"touch":37,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1976,"players":2,"title":"無敵的ハピネス!(SOS団5人Ver.)","utTitle":null,"artist":"涼宮ハルヒ(CV.平野綾),長門有希(CV.茅原実里),朝比奈みくる(CV.後藤邑子)、キョン(CV.杉田智和)、古泉一樹(CV.小野大輔)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":185,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11976,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":179,"tap":148,"hold":11,"slide":9,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11976,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":338,"tap":288,"hold":10,"slide":12,"touch":6,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11976,"level_id":2,"level":"10","level_value":10.5,"note_designer":"せめんともり","romVersion":0,"notes":{"total":558,"tap":395,"hold":43,"slide":23,"touch":73,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11976,"level_id":3,"level":"13","level_value":13.2,"note_designer":"きょむりん","romVersion":0,"notes":{"total":787,"tap":466,"hold":50,"slide":103,"touch":57,"break_":111},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1977,"players":3,"title":"Chasing destiny","utTitle":null,"artist":"涼宮ハルヒ(CV.平野綾)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":186,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11977,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":254,"tap":212,"hold":14,"slide":5,"touch":2,"break_":21},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11977,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":417,"tap":368,"hold":16,"slide":10,"touch":4,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11977,"level_id":2,"level":"10+","level_value":10.8,"note_designer":"はっぴー","romVersion":0,"notes":{"total":645,"tap":506,"hold":57,"slide":54,"touch":12,"break_":16},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11977,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":1002,"tap":679,"hold":63,"slide":139,"touch":57,"break_":64},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1978,"players":1,"title":"Colorful Starting Line","utTitle":null,"artist":"涼宮ハルヒ(CV.平野綾)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":162,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11978,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":215,"tap":183,"hold":10,"slide":6,"touch":2,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11978,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":364,"tap":305,"hold":18,"slide":13,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11978,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":0,"notes":{"total":597,"tap":418,"hold":69,"slide":50,"touch":45,"break_":15},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11978,"level_id":3,"level":"13","level_value":13.0,"note_designer":"せめんともり & カマボコ君","romVersion":0,"notes":{"total":888,"tap":645,"hold":23,"slide":140,"touch":42,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1979,"players":7,"title":"愛♡スクリ~ム!","utTitle":null,"artist":"AiScReam[黒澤ルビィ(CV.降幡 愛)、上原歩夢(CV.大西亜玖璃)、若菜四季(CV.大熊和奏)]","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"POPS & アニメ","bpm":132,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11979,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":168,"tap":141,"hold":8,"slide":4,"touch":6,"break_":9},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11979,"level_id":1,"level":"6","level_value":6.2,"note_designer":"-","romVersion":0,"notes":{"total":307,"tap":252,"hold":20,"slide":7,"touch":11,"break_":17},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11979,"level_id":2,"level":"9","level_value":9.5,"note_designer":"まぐランド","romVersion":0,"notes":{"total":404,"tap":279,"hold":42,"slide":37,"touch":24,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11979,"level_id":3,"level":"11","level_value":11.5,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":540,"tap":328,"hold":36,"slide":86,"touch":43,"break_":47},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11979,"level_id":4,"level":"13","level_value":13.4,"note_designer":"ぴちネコ","romVersion":0,"notes":{"total":752,"tap":418,"hold":38,"slide":114,"touch":74,"break_":108},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1980,"players":3,"title":"テレパシ","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":205,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11980,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":229,"tap":196,"hold":12,"slide":4,"touch":3,"break_":14},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11980,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":396,"tap":344,"hold":17,"slide":12,"touch":10,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11980,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"サファ太","romVersion":0,"notes":{"total":589,"tap":430,"hold":64,"slide":26,"touch":43,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11980,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":893,"tap":550,"hold":51,"slide":182,"touch":30,"break_":80},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1981,"players":7,"title":"ダイダイダイダイダイキライ","utTitle":null,"artist":"雨良 Amala","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":130,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11981,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":205,"tap":176,"hold":10,"slide":4,"touch":7,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11981,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":288,"tap":232,"hold":15,"slide":7,"touch":10,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11981,"level_id":2,"level":"10","level_value":10.5,"note_designer":"Jack","romVersion":0,"notes":{"total":543,"tap":393,"hold":73,"slide":40,"touch":29,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11981,"level_id":3,"level":"11+","level_value":11.8,"note_designer":"緑風 犬三郎","romVersion":0,"notes":{"total":634,"tap":399,"hold":84,"slide":89,"touch":31,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":11981,"level_id":4,"level":"13+","level_value":13.6,"note_designer":"サファ太","romVersion":0,"notes":{"total":852,"tap":489,"hold":76,"slide":93,"touch":93,"break_":101},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1982,"players":3,"title":"オペラ!スペースオペラ!","utTitle":null,"artist":"ナユタン星人","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":198,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11982,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":284,"tap":259,"hold":10,"slide":4,"touch":3,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11982,"level_id":1,"level":"7","level_value":7.0,"note_designer":"-","romVersion":0,"notes":{"total":396,"tap":339,"hold":7,"slide":6,"touch":16,"break_":28},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11982,"level_id":2,"level":"10+","level_value":10.6,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":669,"tap":481,"hold":57,"slide":38,"touch":55,"break_":38},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11982,"level_id":3,"level":"13","level_value":13.3,"note_designer":"はっぴー","romVersion":0,"notes":{"total":983,"tap":679,"hold":46,"slide":149,"touch":82,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1983,"players":3,"title":"T氏の話を信じるな","utTitle":null,"artist":"ピノキオピー","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":143,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11983,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":225,"tap":192,"hold":13,"slide":4,"touch":5,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11983,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":332,"tap":267,"hold":16,"slide":9,"touch":18,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11983,"level_id":2,"level":"9+","level_value":9.8,"note_designer":"サファ太","romVersion":0,"notes":{"total":531,"tap":373,"hold":56,"slide":50,"touch":33,"break_":19},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11983,"level_id":3,"level":"13","level_value":13.2,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":925,"tap":650,"hold":41,"slide":109,"touch":58,"break_":67},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1984,"players":6,"title":"超ナイト・オブ・ナイツ","utTitle":null,"artist":"ビートまりお×まろん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"東方Project","bpm":193,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11984,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":229,"tap":193,"hold":9,"slide":9,"touch":10,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11984,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":0,"notes":{"total":325,"tap":265,"hold":18,"slide":9,"touch":11,"break_":22},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11984,"level_id":2,"level":"11+","level_value":11.8,"note_designer":"せめんともり","romVersion":0,"notes":{"total":591,"tap":424,"hold":71,"slide":36,"touch":25,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11984,"level_id":3,"level":"14","level_value":14.0,"note_designer":"アマリリス","romVersion":0,"notes":{"total":968,"tap":727,"hold":32,"slide":60,"touch":93,"break_":56},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1985,"players":4,"title":"浮世絵横丁","utTitle":null,"artist":"魔界都市ニイガタ(黄泉路テヂーモ×dawn-system×かゆき)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":192,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11985,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":184,"tap":157,"hold":14,"slide":5,"touch":3,"break_":5},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11985,"level_id":1,"level":"7","level_value":7.5,"note_designer":"-","romVersion":0,"notes":{"total":315,"tap":263,"hold":14,"slide":10,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11985,"level_id":2,"level":"11","level_value":11.4,"note_designer":"アマリリス","romVersion":0,"notes":{"total":533,"tap":360,"hold":76,"slide":42,"touch":49,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11985,"level_id":3,"level":"13+","level_value":13.9,"note_designer":"Jack","romVersion":0,"notes":{"total":842,"tap":655,"hold":56,"slide":76,"touch":11,"break_":44},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1986,"players":12,"title":"AiAe","utTitle":null,"artist":"DJ'TEKINA//SOMETHING a.k.a ゆよゆっぺ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11986,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":277,"tap":233,"hold":17,"slide":6,"touch":8,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11986,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":0,"notes":{"total":375,"tap":319,"hold":15,"slide":7,"touch":3,"break_":31},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11986,"level_id":2,"level":"12","level_value":12.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":613,"tap":388,"hold":43,"slide":65,"touch":66,"break_":51},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11986,"level_id":3,"level":"14","level_value":14.4,"note_designer":"サファ太","romVersion":0,"notes":{"total":1049,"tap":749,"hold":43,"slide":124,"touch":67,"break_":66},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1987,"players":0,"title":"奇々解体","utTitle":null,"artist":"MURASAKI feat.かたたかんな","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":148,"releaseDate":"20260401","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11987,"level_id":0,"level":"3","level_value":3.0,"note_designer":"-","romVersion":0,"notes":{"total":162,"tap":130,"hold":10,"slide":4,"touch":7,"break_":11},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11987,"level_id":1,"level":"6","level_value":6.5,"note_designer":"-","romVersion":0,"notes":{"total":271,"tap":231,"hold":10,"slide":10,"touch":10,"break_":10},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11987,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"廻屋渉","romVersion":0,"notes":{"total":398,"tap":255,"hold":42,"slide":46,"touch":29,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11987,"level_id":3,"level":"13","level_value":13.2,"note_designer":"廻屋渉","romVersion":0,"notes":{"total":634,"tap":404,"hold":30,"slide":118,"touch":47,"break_":35},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1988,"players":0,"title":"雑魚","utTitle":null,"artist":"柊マグネタイト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":135,"releaseDate":"20260403","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11988,"level_id":0,"level":"2","level_value":2.0,"note_designer":"-","romVersion":0,"notes":{"total":157,"tap":126,"hold":10,"slide":5,"touch":10,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11988,"level_id":1,"level":"6+","level_value":6.7,"note_designer":"-","romVersion":0,"notes":{"total":276,"tap":226,"hold":11,"slide":6,"touch":6,"break_":27},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11988,"level_id":2,"level":"10","level_value":10.2,"note_designer":"サファ太","romVersion":0,"notes":{"total":419,"tap":206,"hold":88,"slide":17,"touch":59,"break_":49},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11988,"level_id":3,"level":"13","level_value":13.1,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":765,"tap":516,"hold":45,"slide":147,"touch":31,"break_":26},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1989,"players":0,"title":"お返事まだカナ?おじさん構文!","utTitle":null,"artist":"吉本おじさん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"niconico & ボーカロイド","bpm":225,"releaseDate":"20260403","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11989,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":0,"notes":{"total":203,"tap":171,"hold":10,"slide":4,"touch":6,"break_":12},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11989,"level_id":1,"level":"7+","level_value":7.8,"note_designer":"-","romVersion":0,"notes":{"total":315,"tap":276,"hold":10,"slide":6,"touch":10,"break_":13},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11989,"level_id":2,"level":"11","level_value":11.3,"note_designer":"Luxizhel","romVersion":0,"notes":{"total":548,"tap":411,"hold":70,"slide":18,"touch":19,"break_":30},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11989,"level_id":3,"level":"13+","level_value":13.6,"note_designer":"はっぴー","romVersion":0,"notes":{"total":793,"tap":469,"hold":90,"slide":100,"touch":41,"break_":93},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":1990,"players":0,"title":"ZEUS","utTitle":null,"artist":"DÉ DÉ MOUSE & KAJI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"ゲーム & バラエティ","bpm":180,"releaseDate":"20260403","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":11990,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":0,"notes":{"total":321,"tap":281,"hold":8,"slide":8,"touch":18,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":11990,"level_id":1,"level":"8","level_value":8.5,"note_designer":"-","romVersion":0,"notes":{"total":441,"tap":388,"hold":11,"slide":14,"touch":4,"break_":24},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":11990,"level_id":2,"level":"12+","level_value":12.8,"note_designer":"せめんともり","romVersion":0,"notes":{"total":734,"tap":541,"hold":65,"slide":99,"touch":23,"break_":6},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":11990,"level_id":3,"level":"14","level_value":14.3,"note_designer":"サファ太","romVersion":0,"notes":{"total":1238,"tap":831,"hold":86,"slide":111,"touch":147,"break_":63},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":773,"long":false},{"id":851,"players":0,"title":"[幸]犬日和。(はっぴー歌唱Ver)","utTitle":{"100851":"[幸]犬日和。(はっぴー歌唱Ver)"},"artist":"こうのさんとはっぴーちゃん/Hiroの犯行","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":null,"bpm":138,"releaseDate":"20250401","from":"maimai でらっくす PRiSM PLUS","dxfrom":"maimai でらっくす PRiSM PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":10851,"level_id":0,"level":"13?","level_value":13.0,"note_designer":"-","romVersion":0,"notes":{"total":412,"tap":1,"hold":402,"slide":1,"touch":0,"break_":8},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":429,"players":0,"title":"[宴]Wonderland Wars オープニング","utTitle":{"110429":"[宴]Wonderland Wars オープニング"},"artist":"「童話」は、全て「戦記」だった","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":null,"bpm":70,"releaseDate":"20260401","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":10429,"level_id":0,"level":"10?","level_value":10.0,"note_designer":"-","romVersion":0,"notes":{"total":48,"tap":0,"hold":42,"slide":4,"touch":0,"break_":2},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":997,"players":0,"title":"[破]テレパシ","utTitle":{"110997":"[破]テレパシ"},"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":null,"bpm":205,"releaseDate":"20260319","from":"maimai でらっくす CiRCLE PLUS","dxfrom":"maimai でらっくす CiRCLE PLUS","cn":false,"jp":true,"m2l":false,"firstRomVersion":0,"dxRomVersion":0,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":10997,"level_id":0,"level":"14?","level_value":14.0,"note_designer":"-","romVersion":0,"notes":{"total":1065,"tap":731,"hold":56,"slide":111,"touch":88,"break_":79},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16007,"players":18,"title":"Stasis","utTitle":null,"artist":"Maozon","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DAnn1sC","romVersion":10000,"notes":{"total":1215,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16000,"players":1,"title":"a memories for us feat.“Day's” [LONG]","utTitle":null,"artist":"ALcot","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":75,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"3°","romVersion":10000,"notes":{"total":692,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16004,"players":12,"title":"Hurtling Boys","utTitle":null,"artist":"さだきち イシカダス「太鼓の達人」より","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":18,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"サファ太","romVersion":10000,"notes":{"total":609,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"鳩ホルダー","romVersion":10000,"notes":{"total":931,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16002,"players":1,"title":"朝霞与晚霞都消失不见","utTitle":null,"artist":"passthem","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":270,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"3° & AI制谱,请注意甄别","romVersion":10000,"notes":{"total":852,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16001,"players":1,"title":"a memories for us feat.“Day's”","utTitle":null,"artist":"ALcot","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":75,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"3°","romVersion":10000,"notes":{"total":346,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16008,"players":14,"title":"蛙石","utTitle":null,"artist":"舞風-Maikaze","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":60,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Naïvilizer","romVersion":10000,"notes":{"total":414,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16006,"players":9,"title":"Ascension to Heaven","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Chongxi aka. xi","romVersion":10000,"notes":{"total":1158,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":978,"long":false},{"id":16005,"players":2,"title":"Xerulean","utTitle":null,"artist":"ZAQUVA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":182,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Chongxi","romVersion":10000,"notes":{"total":740,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16009,"players":7,"title":"5:20AM(feat.東雪蓮)","utTitle":null,"artist":"东洋雪莲","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"HPjun","romVersion":10000,"notes":{"total":730,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16014,"players":0,"title":"Your Voice","utTitle":null,"artist":"Rhodanthe*","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":232,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Ayaya","romVersion":10000,"notes":{"total":722,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16010,"players":22,"title":"Happy Hare","utTitle":null,"artist":"X Chamber","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":146,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":14,"level_id":3,"level":"10+","level_value":10.7,"note_designer":"守糕","romVersion":10000,"notes":{"total":422,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16013,"players":2,"title":"Ring of Fortune","utTitle":null,"artist":"佐々木恵梨","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"尘落南丘","romVersion":10000,"notes":{"total":414,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16011,"players":8,"title":"midnight cookie (feat. 夕月椿)","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":183,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":7,"level_id":0,"level":"7","level_value":7.0,"note_designer":"mingwen","romVersion":10000,"notes":{"total":370,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":13,"level_id":1,"level":"10","level_value":10.0,"note_designer":"mingwen","romVersion":10000,"notes":{"total":459,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"mingwen","romVersion":10000,"notes":{"total":702,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"mingwen","romVersion":10000,"notes":{"total":887,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16016,"players":0,"title":"Zako (Uncensored Version)","utTitle":null,"artist":"Hiiragi Magnetite","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Aza","romVersion":10000,"notes":{"total":975,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16012,"players":3,"title":"My dream girls","utTitle":null,"artist":"NACHERRY","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"reflectW","romVersion":10000,"notes":{"total":474,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16017,"players":1,"title":"うい麦畑でつかまえて","utTitle":null,"artist":"時雨羽衣Official","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"老吴","romVersion":10000,"notes":{"total":1161,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2850,"long":false},{"id":16019,"players":6,"title":"おどロボ","utTitle":null,"artist":"海茶","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"小white君","romVersion":10000,"notes":{"total":990,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16018,"players":6,"title":"おどロボ","utTitle":null,"artist":"海茶 feat.琴葉姉妹 with ずんだもん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ヤミヨル","romVersion":10000,"notes":{"total":819,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2509,"long":false},{"id":16015,"players":0,"title":"Zako","utTitle":null,"artist":"Hiiragi Magnetite","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Aza","romVersion":10000,"notes":{"total":975,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16025,"players":5,"title":"やっぱり雨は降るんだね","utTitle":null,"artist":"ツユ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"XVvictim","romVersion":10000,"notes":{"total":1000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16020,"players":12,"title":"おべんきょうたいむ","utTitle":null,"artist":"litmus*","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":17,"level_id":2,"level":"12","level_value":12.0,"note_designer":"サファ太","romVersion":10000,"notes":{"total":651,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":1005,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16023,"players":4,"title":"ひめごと*クライシスターズ","utTitle":null,"artist":"高野麻里佳; 石原夏織; 金元寿子; 津田美波","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":183,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"reflectMTF","romVersion":10000,"notes":{"total":571,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16024,"players":16,"title":"みむかゥわナイストライ","utTitle":null,"artist":"ぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"どどどどどどどどどどどどどどどどどどどど","romVersion":10000,"notes":{"total":942,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16021,"players":11,"title":"ちっちゃな私","utTitle":null,"artist":"重音テト; マサラダ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":143,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"61t7","romVersion":10000,"notes":{"total":800,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16026,"players":9,"title":"るろうらんる","utTitle":null,"artist":"ちから","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":156,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":593,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"るしえる","romVersion":10000,"notes":{"total":948,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16027,"players":8,"title":"アイデン貞貞メルトダウン","utTitle":null,"artist":"えなこ feat.P丸様","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ヤミヨル","romVersion":10000,"notes":{"total":515,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2497,"long":false},{"id":16028,"players":12,"title":"ギターと孤独と蒼い惑星","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"-","romVersion":10000,"notes":{"total":883,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16029,"players":4,"title":"ジングルベル(Jingle bell)","utTitle":null,"artist":"A-39; 沙包P; 初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"differ","romVersion":10000,"notes":{"total":1081,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16022,"players":3,"title":"ねこみみスイッチ","utTitle":null,"artist":"daniwellP; 初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":176,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"守糕","romVersion":10000,"notes":{"total":1372,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16033,"players":7,"title":"ネ土会ェ貝南犬☆カゞんIよ″るノDA!!。 [LONG|04:29]","utTitle":null,"artist":"ぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"小white君","romVersion":10000,"notes":{"total":1625,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16030,"players":0,"title":"スタートリップ","utTitle":null,"artist":"保科めぐみ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"WH_Constantinxx","romVersion":10000,"notes":{"total":543,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16032,"players":13,"title":"ニッポン笑顔百景","utTitle":null,"artist":"ももいろクローバーZ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"小妖 vs triage","romVersion":10000,"notes":{"total":538,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"小妖 vs triage","romVersion":10000,"notes":{"total":600,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16034,"players":1,"title":"ノリノリひとり","utTitle":null,"artist":"?","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":90,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Azuki","romVersion":10000,"notes":{"total":358,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16036,"players":3,"title":"モミアゲヲシャカアゲヲ","utTitle":null,"artist":"ぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"日本唐揚協会","romVersion":10000,"notes":{"total":868,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16037,"players":1,"title":"ルカルカ★ナイトフィーバー","utTitle":null,"artist":"SAMFREE","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"乱码","romVersion":10000,"notes":{"total":525,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16031,"players":7,"title":"テトリス (DJ Noriken Remix)(Full) [LONG|04:12]","utTitle":null,"artist":"DJ Noriken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"AmieZz","romVersion":10000,"notes":{"total":2008,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16035,"players":3,"title":"メイドノココロハ アヤツリドール","utTitle":null,"artist":"あよ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"NaOH","romVersion":10000,"notes":{"total":739,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16038,"players":2,"title":"光放て!","utTitle":null,"artist":"柳麻美","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"CH3COOL","romVersion":10000,"notes":{"total":312,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16040,"players":19,"title":"大和撫子 -Wild Dances- ","utTitle":null,"artist":"Adaptor vs DRIVE.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"あかいきつね vs しろいきつね","romVersion":10000,"notes":{"total":814,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"あかいきつね vs しろいきつね","romVersion":10000,"notes":{"total":954,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16039,"players":13,"title":"動く、動く","utTitle":null,"artist":"水濑いのり, 久保ゆりか","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":436,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16042,"players":16,"title":"恭喜发财","utTitle":null,"artist":"刘德华","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"呆铲","romVersion":10000,"notes":{"total":629,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16041,"players":2,"title":"恋は浑沌の隷也","utTitle":null,"artist":"後ろから這いより隊G","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kurage","romVersion":10000,"notes":{"total":606,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16044,"players":2,"title":"春光献祖国","utTitle":null,"artist":"不想被打扰的四季; 恒萃工坊","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"NaOH","romVersion":10000,"notes":{"total":584,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16043,"players":1,"title":"新作のしあわせはこちら!","utTitle":null,"artist":"チノ(水瀬いのり)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"もふもふウサギ","romVersion":10000,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16048,"players":2,"title":"物凄いデコトラでパチュリーが物凄いうた","utTitle":null,"artist":"ななひら","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"NaOH","romVersion":10000,"notes":{"total":886,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16046,"players":0,"title":"朝焼けのスターマイン","utTitle":null,"artist":"今井麻美","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"尘落南丘","romVersion":10000,"notes":{"total":450,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16045,"players":9,"title":"最炫民族风","utTitle":null,"artist":"凤凰传奇","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":127,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"salap","romVersion":10000,"notes":{"total":1005,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16051,"players":0,"title":"稲田姫様に叱られるから(imitation lovers club mix.)","utTitle":null,"artist":"発热巫女~ず","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"KoishiKnight","romVersion":10000,"notes":{"total":538,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16049,"players":3,"title":"物凄い狂っとるフランちゃんが物凄いうた [LONG|04:18]","utTitle":null,"artist":"Halozy(feat.ななひら)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"aba","romVersion":10000,"notes":{"total":2148,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16047,"players":0,"title":"深圳东 [LONG|04:58|!!该谱面无法正常进入结算页面,请开启 TRACK SKIP 再游玩!!]","utTitle":null,"artist":"FFFanwen","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"DDDiffer","romVersion":10000,"notes":{"total":1449,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16054,"players":4,"title":"More One Night","utTitle":null,"artist":"水濑いのり, 久保ゆりか","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":123,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Amatou_Kurage","romVersion":10000,"notes":{"total":479,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16052,"players":16,"title":"粛聖!! ロリ神レクイエム☆ [LONG|04:33]","utTitle":null,"artist":"しぐれうい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":1598,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16057,"players":1,"title":"ウニクラゲ","utTitle":null,"artist":"海茶 feat. ずんだもん、初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Sakurage","romVersion":10000,"notes":{"total":1103,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16055,"players":10,"title":"WACCA ULTRA DREAM MEGAMIX [TOO-LONG|05:58](注意:此谱面存在错误未修复)","utTitle":null,"artist":"USAO & Kobaryo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ホシヤド@Thank you for playing!","romVersion":10000,"notes":{"total":999,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16056,"players":14,"title":"world.execute(me);","utTitle":null,"artist":"Mili","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Aza","romVersion":10000,"notes":{"total":849,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16050,"players":7,"title":"生日祝福歌 (Remix)","utTitle":null,"artist":"格格","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Minepig","romVersion":10000,"notes":{"total":852,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16059,"players":24,"title":"Le Porteur d'Ombre","utTitle":null,"artist":"-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MianTuan feat.xiw","romVersion":10000,"notes":{"total":1058,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"Evernight City","romVersion":10000,"notes":{"total":1250,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16058,"players":6,"title":"Another Day","utTitle":null,"artist":"-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"青八段","romVersion":10000,"notes":{"total":834,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16060,"players":7,"title":"[狂]Theme","utTitle":null,"artist":"Project-G","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":41,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":23,"level_id":0,"level":"15","level_value":15.0,"note_designer":"えども~ん","romVersion":10000,"notes":{"total":943,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16053,"players":2,"title":"輪廻","utTitle":null,"artist":"山本美禰子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"星見@Reincarnation","romVersion":10000,"notes":{"total":567,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16066,"players":2,"title":"绿坝★绿坝 河蟹你全家☆","utTitle":null,"artist":"SAM; 荼荼丸; GreenDAM","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"moying","romVersion":10000,"notes":{"total":775,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16063,"players":2,"title":"さくら、Reincarnation","utTitle":null,"artist":"-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"YECNCN","romVersion":10000,"notes":{"total":686,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16061,"players":16,"title":"你这个人满脑子都是自己呢","utTitle":null,"artist":"丰川祥子/长崎爽世/若叶睦","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"守糕","romVersion":10000,"notes":{"total":276,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16062,"players":13,"title":"いますぐ輪廻","utTitle":null,"artist":"なきそ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"缘雪","romVersion":10000,"notes":{"total":705,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16069,"players":5,"title":"Crossed Fingers","utTitle":null,"artist":"Lifeguardman","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ShaTeng","romVersion":10000,"notes":{"total":1424,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16068,"players":14,"title":"Cherry Pop","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"南らうい","romVersion":10000,"notes":{"total":998,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16067,"players":0,"title":"輪廻","utTitle":null,"artist":"山本美禰子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Azuki","romVersion":10000,"notes":{"total":425,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":18,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"Azuki","romVersion":10000,"notes":{"total":579,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16064,"players":1,"title":"[没]アイドル [!!该谱面无法正常进入结算页面,请开启 TRACK SKIP 再游玩!!]","utTitle":null,"artist":"YOASOBI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":166,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":24,"level_id":3,"level":"15+","level_value":15.7,"note_designer":"ぶっ壊れAHアイドル(Hisui & ANNET)","romVersion":10000,"notes":{"total":36691,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16065,"players":16,"title":"挖掘机技术哪家强?","utTitle":null,"artist":"伊丽莎白鼠","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Hoshi","romVersion":10000,"notes":{"total":669,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16070,"players":2,"title":"Customized Justice","utTitle":null,"artist":"Kobaryo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":292,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Luxizhel","romVersion":10000,"notes":{"total":703,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"サファ太 vs じゃこレモン","romVersion":10000,"notes":{"total":1076,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16073,"players":3,"title":"Sound Chimera(Original) [LONG|05:08]","utTitle":null,"artist":"Laur","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Chongxi vs. 小鳥遊さん","romVersion":10000,"notes":{"total":1942,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16072,"players":3,"title":"Ringing Bloom","utTitle":null,"artist":"Roselia","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Rote Rosen","romVersion":10000,"notes":{"total":1056,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16074,"players":0,"title":"Utopia or Dystopia","utTitle":null,"artist":"夢乃ゆき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":197,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Kondou","romVersion":10000,"notes":{"total":733,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16071,"players":1,"title":"Inixia","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":217,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"FIONAL","romVersion":10000,"notes":{"total":876,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16076,"players":4,"title":"Worlders","utTitle":null,"artist":"じん / バーチャル・シンガー、Leo/need、MORE MORE JUMP!、Vivid BAD SQUAD、ワンダーランズ×ショウタイム、25時、ナイトコードで。「劇場版プロジェクトセカイ 壊れたセカイと歌えないミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":137,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":12,"level_id":2,"level":"9+","level_value":9.7,"note_designer":"Luxizhel","romVersion":10000,"notes":{"total":384,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"カマボコ君","romVersion":10000,"notes":{"total":530,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16075,"players":5,"title":"Vulnerability","utTitle":null,"artist":"BEMANI SOUND TEAM \"ZAQUVA\"","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":167,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"RNK FUMEN TEAM \"RABIHOSHI\"","romVersion":10000,"notes":{"total":844,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16077,"players":0,"title":"Xingularity","utTitle":null,"artist":"Alicemetix ex-ZAQUVA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ORANGE","romVersion":10000,"notes":{"total":934,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16079,"players":4,"title":"《明日方舟》危机合约4「弧光作战」","utTitle":null,"artist":"塞壬唱片-MSR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Chongxi \"量产型\"","romVersion":10000,"notes":{"total":414,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16082,"players":1,"title":"廃墟にいますキャンペーン","utTitle":null,"artist":"吉田夜世 feat.ちっく。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":215,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":14,"level_id":2,"level":"10+","level_value":10.7,"note_designer":"Luxizhel","romVersion":10000,"notes":{"total":583,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はっぴー","romVersion":10000,"notes":{"total":880,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16084,"players":0,"title":"風鈴星","utTitle":null,"artist":"Haru-ichiban_晴一番","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kawakaze","romVersion":10000,"notes":{"total":840,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16081,"players":6,"title":"フリーフォール","utTitle":null,"artist":"Zekk","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ShaTeng","romVersion":10000,"notes":{"total":844,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2409,"long":false},{"id":16080,"players":5,"title":"はじまりの未来","utTitle":null,"artist":"40mP × sasakure.UK / 初音ミク「劇場版プロジェクトセカイ 壊れたセカイと歌えないミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":156,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":13,"level_id":2,"level":"10","level_value":10.0,"note_designer":"サファ太","romVersion":10000,"notes":{"total":433,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ぴちネコ","romVersion":10000,"notes":{"total":622,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16078,"players":8,"title":"[狂]TiamaT:F minor","utTitle":null,"artist":"Team Grimoire","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":215,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"sreCP","romVersion":10000,"notes":{"total":1641,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16083,"players":2,"title":"非実在系女子達はどうすりゃいいですか?","utTitle":null,"artist":"綾瀬理恵","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"KONDOU","romVersion":10000,"notes":{"total":686,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2244,"long":false},{"id":16086,"players":5,"title":"Anima","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":183,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DaRk","romVersion":10000,"notes":{"total":1000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16088,"players":5,"title":"Aurora","utTitle":null,"artist":"Lime","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FPara","romVersion":10000,"notes":{"total":1088,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"FPara","romVersion":10000,"notes":{"total":1019,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16085,"players":2,"title":"1116","utTitle":null,"artist":"BEMANI Sound Team \"Dustup\"","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"APOPHI$","romVersion":10000,"notes":{"total":710,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"APOPHI$","romVersion":10000,"notes":{"total":1000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"APOPHI$","romVersion":10000,"notes":{"total":1116,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16092,"players":10,"title":"Crystal Gravity","utTitle":null,"artist":"Tanchiky vs. siromaru","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Aleurites Moluccanus","romVersion":10000,"notes":{"total":798,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16091,"players":9,"title":"Burn","utTitle":null,"artist":"NceS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Votin","romVersion":10000,"notes":{"total":693,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16089,"players":7,"title":"Bloody Stream","utTitle":null,"artist":"Coda","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Neya","romVersion":10000,"notes":{"total":573,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16093,"players":0,"title":"Diamond Dust","utTitle":null,"artist":"Masahiro “Godspeed” Aoki","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FPara","romVersion":10000,"notes":{"total":1141,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16090,"players":13,"title":"Breakfast is ham and eggs","utTitle":null,"artist":"Burton (オトメ*ドメイン OST)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":55,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":0,"level_id":3,"level":"未知等级","level_value":0.0,"note_designer":"AsukaHana","romVersion":10000,"notes":{"total":407,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16098,"players":9,"title":"Kronos","utTitle":null,"artist":"削除","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":78,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Votin ","romVersion":10000,"notes":{"total":849,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":291,"long":false},{"id":16096,"players":6,"title":"girls.exe","utTitle":null,"artist":"rintaro soma","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":188,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"ナナミ respects for 7.3GHz","romVersion":10000,"notes":{"total":1173,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16095,"players":23,"title":"D/N/A","utTitle":null,"artist":"Azari/25時、ナイトコードで。× 鏡音リン","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":750,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16097,"players":2,"title":"Help me, ERINNNNNN!! 森羅万象ver.","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"磷化锆","romVersion":10000,"notes":{"total":987,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16102,"players":15,"title":"Mr. Q","utTitle":null,"artist":"蔡依林","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":152,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Dororo","romVersion":10000,"notes":{"total":754,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16099,"players":1,"title":"LaVI-Bavellabion","utTitle":null,"artist":"SLAVE.V-V-R feat. 三木谷奈々","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":142,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"CH3COOL","romVersion":10000,"notes":{"total":717,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16101,"players":4,"title":"Mistletoe [!!游玩此谱面请关闭判定显示,否则会导致机台崩溃!!]","utTitle":null,"artist":"葉月ゆら","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":212,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":448,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16103,"players":3,"title":"VECTOЯ","utTitle":null,"artist":"WHITEFISTS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"KuSA","romVersion":10000,"notes":{"total":1026,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"KIЯA","romVersion":10000,"notes":{"total":966,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16100,"players":6,"title":"Lisrim","utTitle":null,"artist":"onoken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"votin","romVersion":10000,"notes":{"total":847,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16105,"players":14,"title":"[習]守守の守守","utTitle":null,"artist":"隣の庭は青い(庭師+Aoi)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":211,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"超七味星人 × Sean","romVersion":10000,"notes":{"total":1410,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16106,"players":5,"title":"[谱面差分]宙天","utTitle":null,"artist":"t+pazolite vs かねこちはる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"南うらい","romVersion":10000,"notes":{"total":1216,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16107,"players":2,"title":"ヒトリゴト","utTitle":null,"artist":"ClariS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"小便当","romVersion":10000,"notes":{"total":950,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"小便当","romVersion":10000,"notes":{"total":605,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16108,"players":7,"title":"四月の暴風雨","utTitle":null,"artist":"cubesato","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":79,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"えども~ん","romVersion":10000,"notes":{"total":974,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16111,"players":9,"title":"愛の残滓","utTitle":null,"artist":"藍月なくる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":87,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"LTCalter","romVersion":10000,"notes":{"total":792,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16109,"players":10,"title":"大香蕉","utTitle":null,"artist":"不知道","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"磷化锆","romVersion":10000,"notes":{"total":261,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16104,"players":1,"title":"ZUNの传奇 ~ 跨越世纪的传说 ~ Legend for Crossing the Centuries","utTitle":null,"artist":"坏枪","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"再不发2026了","romVersion":10000,"notes":{"total":1461,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16112,"players":0,"title":"无限剧场","utTitle":null,"artist":"茶鸣拾贰律","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Sougetsu030","romVersion":10000,"notes":{"total":1059,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16110,"players":7,"title":"怪獣になりたい","utTitle":null,"artist":"Sakuzyo feat. 初音未来","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":110,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"怪獣鉴","romVersion":10000,"notes":{"total":958,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16113,"players":1,"title":"混沌を越えし我らが神聖なる調律主を讃えよ","utTitle":null,"artist":"穴山大辅","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":240,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":25,"level_id":3,"level":"未知等级","level_value":0.0,"note_designer":"Alan vs ねこぐるまスタイル vs 椛","romVersion":10000,"notes":{"total":1760,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":407,"long":false},{"id":16116,"players":8,"title":"绯色月下、狂咲ノ絶 (1st Anniversary Remix)","utTitle":null,"artist":"nayuta","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jinsokyo2","romVersion":10000,"notes":{"total":1185,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16117,"players":4,"title":"蛙石","utTitle":null,"artist":"maikaze","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":60,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Sp","romVersion":10000,"notes":{"total":526,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16114,"players":37,"title":"無人区-Vacuum Track#ADD8E6-","utTitle":null,"artist":"NoKANY","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":203,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"StarRY Vs. 星見執音-Dysiøn-","romVersion":10000,"notes":{"total":990,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"舞立方 中級 Lv17","romVersion":10000,"notes":{"total":1085,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16118,"players":0,"title":"降り続く雨の街で","utTitle":null,"artist":"三輪学","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":108,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"Zeroflies","romVersion":10000,"notes":{"total":366,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16119,"players":14,"title":"青春修炼手册","utTitle":null,"artist":"TFBOYS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"TFDgsEOs","romVersion":10000,"notes":{"total":450,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16121,"players":2,"title":"告白の夜","utTitle":null,"artist":"Ayasa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":69,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"MtlaS","romVersion":10000,"notes":{"total":778,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16120,"players":13,"title":"Our Wrena咪","utTitle":null,"artist":"t+pazolite with 长叶松烯","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":6,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":277,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":12,"level_id":1,"level":"9+","level_value":9.7,"note_designer":"-","romVersion":10000,"notes":{"total":488,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"rioN","romVersion":10000,"notes":{"total":660,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"原田ひろゆき","romVersion":10000,"notes":{"total":999,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16115,"players":6,"title":"电脑眠眠猫","utTitle":null,"artist":"なみぐる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"磷化锆","romVersion":10000,"notes":{"total":956,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16122,"players":11,"title":"Drink [LONG]","utTitle":null,"artist":"Dr. Peacock; D-Frek","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"haifeng","romVersion":10000,"notes":{"total":1566,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16125,"players":8,"title":"鳥の詩","utTitle":null,"artist":"Lia","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":122,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":969,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":37,"long":false},{"id":16123,"players":0,"title":"Shake And Sway","utTitle":null,"artist":"光州市民","albums":null,"hasDx":false,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16130,"players":2,"title":"Digital Life Hacker [LONG]","utTitle":null,"artist":"をとは","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Mtlas","romVersion":10000,"notes":{"total":1354,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16131,"players":0,"title":"Dynitikós","utTitle":null,"artist":"Prower","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"再闹就三根","romVersion":10000,"notes":{"total":733,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16126,"players":3,"title":"Final Hour (Game Ver.)","utTitle":null,"artist":"Pure 100%","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":136,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Mtlas","romVersion":10000,"notes":{"total":787,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16127,"players":1,"title":"ネプテューヌ☆サガして","utTitle":null,"artist":"純情のアフィリア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Mtlas","romVersion":10000,"notes":{"total":434,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":17,"level_id":4,"level":"12","level_value":12.0,"note_designer":"Mtlas (Original)","romVersion":10000,"notes":{"total":440,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16132,"players":1,"title":"厄神様の通り道 ~ Dark Road","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":156,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Acadm","romVersion":10000,"notes":{"total":456,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16129,"players":0,"title":"暗闇の風穴","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Acadm","romVersion":10000,"notes":{"total":454,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16128,"players":5,"title":"Igallta","utTitle":null,"artist":"Se-U-Ra","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":230,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"shaXkyD","romVersion":10000,"notes":{"total":902,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2697,"long":false},{"id":16134,"players":1,"title":"Hydroblast","utTitle":null,"artist":"Aoi vs. siromaru","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ゆめさき","romVersion":10000,"notes":{"total":895,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16133,"players":0,"title":"運命のダークサイド","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Acadm","romVersion":10000,"notes":{"total":696,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16136,"players":1,"title":"芥川龍之介の河童 ~ Candid Friend","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":173,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"Acadm","romVersion":10000,"notes":{"total":521,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Acadm","romVersion":10000,"notes":{"total":813,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Acadm","romVersion":10000,"notes":{"total":781,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16138,"players":3,"title":"Take you to the Heaven","utTitle":null,"artist":"Sound Souler","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"kol19","romVersion":10000,"notes":{"total":922,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16137,"players":0,"title":"Night! Night! Night!","utTitle":null,"artist":"MM","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Yume\"Saki\"","romVersion":10000,"notes":{"total":974,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16140,"players":1,"title":"爆音峠岬","utTitle":null,"artist":"ユナイテッド・メルトダウン・オ嬢(†Sennzai†ひめりんご†)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"腱鞘炎","romVersion":10000,"notes":{"total":823,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16141,"players":1,"title":"Who then no 灯","utTitle":null,"artist":"星野音楽工房","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":188,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"YumeCalter","romVersion":10000,"notes":{"total":1148,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16142,"players":1,"title":"神さびた古戦場 ~ Suwa Foughten Field","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Acadm","romVersion":10000,"notes":{"total":1036,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16139,"players":1,"title":"Refrain","utTitle":null,"artist":"お月さま交響曲","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":163,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"こおりさき","romVersion":10000,"notes":{"total":750,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16135,"players":6,"title":"kakera","utTitle":null,"artist":"CLTH","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":167,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"nakura","romVersion":10000,"notes":{"total":944,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16143,"players":3,"title":"ヴォヤージュ1970","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":17,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Acadm","romVersion":10000,"notes":{"total":405,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Acadm","romVersion":10000,"notes":{"total":747,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16144,"players":1,"title":"ΕΛΠΙΣ","utTitle":null,"artist":"dj TAKA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Saki ‡ 断 罪","romVersion":10000,"notes":{"total":1025,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16146,"players":2,"title":"Black † White","utTitle":null,"artist":"野水伊織","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"LTCalter","romVersion":10000,"notes":{"total":493,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16145,"players":2,"title":"再会系女子はどうすりゃいいですか?","utTitle":null,"artist":"绫濑理惠","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Mtlas","romVersion":10000,"notes":{"total":603,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16149,"players":9,"title":"Angel Dust","utTitle":null,"artist":"LV.4","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"haifeng","romVersion":10000,"notes":{"total":1240,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16147,"players":7,"title":"air's gravity","utTitle":null,"artist":"zts","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":137,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DX","romVersion":10000,"notes":{"total":508,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16150,"players":6,"title":"ANiMA","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":183,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Syan_LBP","romVersion":10000,"notes":{"total":831,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16151,"players":11,"title":"Astral Quantization","utTitle":null,"artist":"Dj Grimoire","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":22,"level_id":0,"level":"14+","level_value":14.7,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":1455,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16152,"players":5,"title":"SACRIFICE","utTitle":null,"artist":"ayame","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":17,"level_id":2,"level":"12","level_value":12.0,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":735,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":981,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":861,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16148,"players":6,"title":"Alter Ego","utTitle":null,"artist":"Yuta Imai vs Qlarabelle","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"IQ9 -Super-Ego-","romVersion":10000,"notes":{"total":1330,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16155,"players":11,"title":"Cross†Over","utTitle":null,"artist":"HyuN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Votin","romVersion":10000,"notes":{"total":832,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16154,"players":24,"title":"Creeping(Long Version)","utTitle":null,"artist":"Merkurius","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":13,"level_id":2,"level":"10","level_value":10.0,"note_designer":"MagicBox魔盒;冰霜枫叶飘","romVersion":10000,"notes":{"total":2187,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":13,"level_id":3,"level":"10","level_value":10.0,"note_designer":"MagicBox魔盒;冰霜枫叶飘","romVersion":10000,"notes":{"total":2031,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16156,"players":0,"title":"Crush Anecdots - Terror Campus","utTitle":null,"artist":"Shadow_bling","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Syan_LBP","romVersion":10000,"notes":{"total":1271,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16157,"players":22,"title":"designant.","utTitle":null,"artist":"Arcaea","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"?","romVersion":10000,"notes":{"total":1572,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16159,"players":3,"title":"Ether Strike (Casky Final Moment Remix)","utTitle":null,"artist":"sugosugiii","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":156,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"楓","romVersion":10000,"notes":{"total":620,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16161,"players":4,"title":"Fly far bounce","utTitle":null,"artist":"猫叉Master","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":163,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ミミズク","romVersion":10000,"notes":{"total":685,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16160,"players":1,"title":"Farewell to Marrakech","utTitle":null,"artist":"Dirty Androids","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"So let me melt in this rain.","romVersion":10000,"notes":{"total":800,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"So let me melt in this rain.","romVersion":10000,"notes":{"total":800,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16153,"players":0,"title":"Theme of Vice City","utTitle":null,"artist":"Lex Horton","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":311,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16158,"players":0,"title":"disillusion","utTitle":null,"artist":"あいうち","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":93,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":483,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16162,"players":7,"title":"FULi AUTO SHOOTER","utTitle":null,"artist":"MYUKKE.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FULi AUTO YUKi","romVersion":10000,"notes":{"total":811,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"FULi AUTO YUKi","romVersion":10000,"notes":{"total":811,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16163,"players":1,"title":"Future Coaster","utTitle":null,"artist":"削除","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"-","romVersion":10000,"notes":{"total":2120,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16167,"players":3,"title":"#狂った民族2 PRAVARGYAZOOQA","utTitle":null,"artist":"DJ Raisei","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":941,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16168,"players":3,"title":"Mermaid Girl","utTitle":null,"artist":"DJ Command","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"water-star","romVersion":10000,"notes":{"total":745,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"GW2.28","romVersion":10000,"notes":{"total":967,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16170,"players":0,"title":"Pretty Liar","utTitle":null,"artist":"ミステリアスアイズ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Don't Lie to Dororo, Mr. Aimo.","romVersion":10000,"notes":{"total":862,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16169,"players":3,"title":"MVURBD","utTitle":null,"artist":"ETIA.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"N","romVersion":10000,"notes":{"total":1342,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16165,"players":13,"title":"INTERNET MIGHTYYYY!!!!","utTitle":null,"artist":" BlackY feat.bilibili@thwy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"DannisC feat. 呆铲","romVersion":10000,"notes":{"total":1203,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16166,"players":5,"title":"INTERNET YAMERO","utTitle":null,"artist":"Aiobahn feat. KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":1672,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16164,"players":12,"title":"Hemisphere","utTitle":null,"artist":"ARForest","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"-","romVersion":10000,"notes":{"total":909,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16172,"players":1,"title":"SURVIVOR","utTitle":null,"artist":"jam-jam","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"N@rcissu","romVersion":10000,"notes":{"total":683,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16171,"players":2,"title":"Stellaria","utTitle":null,"artist":"Kankitsu","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":227,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FPara","romVersion":10000,"notes":{"total":999,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16175,"players":4,"title":"Freedom Dive","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":222,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"xi vs xi vs xi vs xi vs xi","romVersion":10000,"notes":{"total":2605,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16173,"players":3,"title":"That Girl","utTitle":null,"artist":"Olly Murs","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"thistlect","romVersion":10000,"notes":{"total":785,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16178,"players":5,"title":"ジュビリー","utTitle":null,"artist":"高垣楓/星街すいせい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Meltryllis","romVersion":10000,"notes":{"total":564,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16177,"players":2,"title":"エディブルフラワーの独白","utTitle":null,"artist":"OSTER project feat. 常盤ゆう","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"MMFC","romVersion":10000,"notes":{"total":579,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16176,"players":5,"title":"はぐ","utTitle":null,"artist":"MIMI & 初音ミク & 可不","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"GBLKH","romVersion":10000,"notes":{"total":642,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16174,"players":17,"title":"To the Milky Way","utTitle":null,"artist":"黒魔","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":186,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"STellARs with Ebenholz","romVersion":10000,"notes":{"total":1037,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16179,"players":2,"title":"スーサイドパレヱド","utTitle":null,"artist":"ユリイ・カノン","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":176,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"haruka","romVersion":10000,"notes":{"total":1765,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2079,"long":false},{"id":16180,"players":3,"title":"ネリと琥珀糖","utTitle":null,"artist":"sasakure.UK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"おにねこ","romVersion":10000,"notes":{"total":783,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16181,"players":2,"title":"ハッピーエンド","utTitle":null,"artist":"technoplanet feat. Kuroto Sion","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":267,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"he clear","romVersion":10000,"notes":{"total":678,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16186,"players":2,"title":"ロミとロボの宇宙飛行","utTitle":null,"artist":"onoken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"fpd","romVersion":10000,"notes":{"total":826,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16183,"players":6,"title":"ヒミツ","utTitle":null,"artist":"MIMI / 可不","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"StarRy / 執音","romVersion":10000,"notes":{"total":897,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16187,"players":1,"title":"世界一可愛い私","utTitle":null,"artist":"藤田ことね","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":77,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kurage","romVersion":10000,"notes":{"total":846,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16184,"players":4,"title":"ヒュブリスの頂に聳えるのは","utTitle":null,"artist":"qfeileadh feat. のあ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Azuki","romVersion":10000,"notes":{"total":1035,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2594,"long":false},{"id":16182,"players":8,"title":"ハローセカイ","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Deluxion","romVersion":10000,"notes":{"total":973,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16189,"players":11,"title":"ジングルベル","utTitle":null,"artist":"SEGA Sound Team","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Cachejtt ","romVersion":10000,"notes":{"total":1313,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16188,"players":4,"title":"世界一可愛い私","utTitle":null,"artist":"藤田ことね (CV. 飯田ヒカル) feat. Honeyworks","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Aza","romVersion":10000,"notes":{"total":740,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16190,"players":13,"title":"多次元宇宙融合論 ","utTitle":null,"artist":"TAKIO feat. つぐ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":234,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Do次元KuSA融虹論 ","romVersion":10000,"notes":{"total":1302,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16185,"players":15,"title":"モア!ジャンプ!モア!","utTitle":null,"artist":"ナユタン星人/MORE MORE JUMP!/初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":202,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Taxchan","romVersion":10000,"notes":{"total":1190,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2178,"long":false},{"id":16191,"players":0,"title":"夢をのぞいたら","utTitle":null,"artist":"THE IDOLM@STER CINDERELLA GIRLS!!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"XMMCG4","romVersion":10000,"notes":{"total":607,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16192,"players":3,"title":"大江戸ジュリアナイト","utTitle":null,"artist":"Mitchie M","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Yosame","romVersion":10000,"notes":{"total":1001,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16194,"players":4,"title":"innocent white","utTitle":null,"artist":"影虎。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"N@rcissu","romVersion":10000,"notes":{"total":926,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16195,"players":4,"title":"恋ひ恋う縁","utTitle":null,"artist":"Famishin feat. KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Rhythlame","romVersion":10000,"notes":{"total":1028,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16198,"players":0,"title":"愛して愛して愛して","utTitle":null,"artist":"きくお feat. Ado","albums":null,"hasDx":false,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":76,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16193,"players":2,"title":"小鸡小鸡","utTitle":null,"artist":"王蓉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Doroken & Chicton","romVersion":10000,"notes":{"total":1065,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16197,"players":3,"title":"愛♡スクリ~ム!","utTitle":null,"artist":"AiScReam","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"おめめ","romVersion":10000,"notes":{"total":846,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16199,"players":22,"title":"攻击战","utTitle":null,"artist":"普天堡电子乐团","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"-","romVersion":10000,"notes":{"total":1293,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16196,"players":13,"title":"恋ひ恋ふ縁","utTitle":null,"artist":"Famishin; KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"diffsoft","romVersion":10000,"notes":{"total":516,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2245,"long":false},{"id":16200,"players":19,"title":"春日影 (MyGO!!!!! ver.)","utTitle":null,"artist":"MyGO!!!!!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":97,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"高松 燈","romVersion":10000,"notes":{"total":402,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16202,"players":3,"title":"流桜ノ門","utTitle":null,"artist":"tokiwa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Dororo","romVersion":10000,"notes":{"total":707,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16204,"players":7,"title":"混沌ブギ","utTitle":null,"artist":"jon-YAKITORY","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Kaonashi","romVersion":10000,"notes":{"total":1522,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16205,"players":11,"title":"狂水一華","utTitle":null,"artist":"BEMANI Sound Team \"HuΣeR Vs. SYUNN\" feat.いちか","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"いちか","romVersion":10000,"notes":{"total":817,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16201,"players":18,"title":"春日影[FULL]","utTitle":null,"artist":"Crychic","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":97,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Sano","romVersion":10000,"notes":{"total":1212,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":13,"level_id":4,"level":"10","level_value":10.0,"note_designer":"Sano","romVersion":10000,"notes":{"total":1210,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16206,"players":8,"title":"猪之歌","utTitle":null,"artist":"香香","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":68,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"祝","romVersion":10000,"notes":{"total":872,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16209,"players":4,"title":"自己肯定感爆上げ↑↑しゅきしゅきソング","utTitle":null,"artist":"藤田ことね (CV. 飯田ヒカル)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":778,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16208,"players":4,"title":"空中散歩","utTitle":null,"artist":"CIEL","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"星雪","romVersion":10000,"notes":{"total":865,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16207,"players":13,"title":"神のまにまに","utTitle":null,"artist":"ワンダーランズ×ショウタイム","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"fullower","romVersion":10000,"notes":{"total":686,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16213,"players":6,"title":"黒塗り世界宛て書簡","utTitle":null,"artist":"フロクロ/重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"███████████","romVersion":10000,"notes":{"total":693,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2748,"long":false},{"id":16211,"players":0,"title":"远航·追觅Part1","utTitle":null,"artist":"Roon_kun feat. 洛天依","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"haifeng","romVersion":10000,"notes":{"total":971,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16212,"players":1,"title":"雪月花 -さわわRemix-","utTitle":null,"artist":"さわわ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":188,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"bzxgh","romVersion":10000,"notes":{"total":1131,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16210,"players":2,"title":"輝夜の城で踊りたい","utTitle":null,"artist":"μ's","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"月の騎士","romVersion":10000,"notes":{"total":586,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16214,"players":9,"title":"ØØØØØØØMAKHIA","utTitle":null,"artist":"SiroYooh vs. blackmaru","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"KOP91st with 翠翠沙转圈纯享","romVersion":10000,"notes":{"total":1630,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16216,"players":3,"title":"夜の向日葵","utTitle":null,"artist":"松本文紀","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":41,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"音無彩名","romVersion":10000,"notes":{"total":520,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":19,"level_id":4,"level":"13","level_value":13.0,"note_designer":"音無彩名","romVersion":10000,"notes":{"total":395,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16218,"players":4,"title":"櫻ノ詩","utTitle":null,"artist":"はな","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DgsEOs","romVersion":10000,"notes":{"total":621,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"DgsEOs","romVersion":10000,"notes":{"total":683,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16215,"players":12,"title":"【籽岷音mad】FREEDOM DiVE (tpz Overcute Remix)","utTitle":null,"artist":"心白-HW","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":234,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"双层吉士汉堡","romVersion":10000,"notes":{"total":1118,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16217,"players":4,"title":"幼女幻奏","utTitle":null,"artist":"ポール","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Dororo","romVersion":10000,"notes":{"total":466,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16220,"players":1,"title":"Anytime Anywhere","utTitle":null,"artist":"milet","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":82,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"MYOU","romVersion":10000,"notes":{"total":375,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16221,"players":1,"title":"Apocalypse ~dirge of swans~","utTitle":null,"artist":"Zektbach","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"NekoMuseigen","romVersion":10000,"notes":{"total":617,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16222,"players":3,"title":"Astora","utTitle":null,"artist":"ああああ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":186,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Aurora","romVersion":10000,"notes":{"total":639,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16219,"players":1,"title":"3 A.M. ディテクティブ・ゲーム","utTitle":null,"artist":"日向美ビタースイーツ♪ ‎","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Esc","romVersion":10000,"notes":{"total":1348,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16203,"players":2,"title":"海神","utTitle":null,"artist":"兎々","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":159,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"After Legend of Wadatsumi ~ Respect for 2018 ver.","romVersion":10000,"notes":{"total":929,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16223,"players":3,"title":"Candy a Mine","utTitle":null,"artist":"茶太","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":116,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"艾瑞Airy","romVersion":10000,"notes":{"total":401,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16225,"players":12,"title":"Clock Paradox","utTitle":null,"artist":"WyvernP","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"IQ9","romVersion":10000,"notes":{"total":690,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16224,"players":0,"title":"children of the city","utTitle":null,"artist":"Mili","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":119,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"KuSA","romVersion":10000,"notes":{"total":506,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16226,"players":1,"title":"Dark Flight Dreamer","utTitle":null,"artist":"ALiCE'S EMOTiON","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":189,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kondou","romVersion":10000,"notes":{"total":902,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16228,"players":0,"title":"Don't let you down","utTitle":null,"artist":"長尾ちえみ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"NaOH","romVersion":10000,"notes":{"total":687,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16230,"players":3,"title":"Don’t say “lazy” (5人Ver.)","utTitle":null,"artist":"放課後ティータイム","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"9V_Y2-6","romVersion":10000,"notes":{"total":545,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16229,"players":0,"title":"Don\\'t let you down","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Akiminoriko_LY","romVersion":10000,"notes":{"total":886,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16231,"players":2,"title":"Egret and Willow","utTitle":null,"artist":"Dirty Androids","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":196,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Tsuki no Kaze","romVersion":10000,"notes":{"total":712,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16227,"players":2,"title":"DEAREST DROP","utTitle":null,"artist":"田所あずさ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":146,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"reflectW","romVersion":10000,"notes":{"total":476,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16235,"players":1,"title":"Holiday∞Holiday","utTitle":null,"artist":"Cerise Bouquet","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"absqrt.","romVersion":10000,"notes":{"total":332,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16233,"players":3,"title":"First Letter","utTitle":null,"artist":"かねこちはる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"四季花语","romVersion":10000,"notes":{"total":999,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16236,"players":7,"title":"Horizon Blue(feat.Aikapin/Chiyoko)","utTitle":null,"artist":"Aikapin; ちよこ; Nothing But Requiem","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"KAZARIA~the horizon","romVersion":10000,"notes":{"total":955,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16237,"players":0,"title":"Hotel Moonside","utTitle":null,"artist":"速水奏","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"手錠の鍵","romVersion":10000,"notes":{"total":748,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16238,"players":0,"title":"INSIDE IDENTITY","utTitle":null,"artist":"ysj","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":186,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"大鸟游十二花","romVersion":10000,"notes":{"total":545,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16239,"players":3,"title":"Macrocosmic Modulation","utTitle":null,"artist":"JAKAZiD","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"rurudo","romVersion":10000,"notes":{"total":898,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16240,"players":1,"title":"Magia","utTitle":null,"artist":"Kalafina","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Dororo","romVersion":10000,"notes":{"total":444,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16241,"players":0,"title":"My Heart Rate (Hedonist Remix)","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":108,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"NaOH","romVersion":10000,"notes":{"total":735,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16234,"players":4,"title":"Gray Heaven","utTitle":null,"artist":"Camellia","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":13,"level_id":3,"level":"10","level_value":10.0,"note_designer":"Lacomxio","romVersion":10000,"notes":{"total":2356,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16243,"players":3,"title":"One Room Sugar Life","utTitle":null,"artist":"ナナヲアカリ/TVアニメ「Happy Sugar Life」より","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"MKK","romVersion":10000,"notes":{"total":637,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16244,"players":3,"title":"Qualia","utTitle":null,"artist":"KIVΛ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Rayark","romVersion":10000,"notes":{"total":850,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16242,"players":12,"title":"On and On!!!","utTitle":null,"artist":"ETIA.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"NaOH","romVersion":10000,"notes":{"total":888,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16232,"players":5,"title":"Evans","utTitle":null,"artist":"DJ YOSHITAKA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"vanessa","romVersion":10000,"notes":{"total":701,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":385,"long":false},{"id":16245,"players":0,"title":"Scarborough fair","utTitle":null,"artist":"山田タマル","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":64,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":275,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16246,"players":4,"title":"Secret base~君がくれたもの(10 years after Vers.)","utTitle":null,"artist":"茅野爱衣/户松遥/早见沙织","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":66,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"かげはっぴー","romVersion":10000,"notes":{"total":296,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16247,"players":1,"title":"Sis puella magica!","utTitle":null,"artist":"梶浦由記","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":513,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16249,"players":15,"title":"Swan Song","utTitle":null,"artist":"void(Mournfinale)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Dororo vs Renekton","romVersion":10000,"notes":{"total":1316,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16248,"players":1,"title":"Stasis","utTitle":null,"artist":"Maozon","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"TRG","romVersion":10000,"notes":{"total":1400,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16250,"players":6,"title":"TECHNOPHOBIA","utTitle":null,"artist":"BEMANI Sound Team \"HuΣeR\"","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":152,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"アメノサグメ","romVersion":10000,"notes":{"total":970,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16254,"players":2,"title":"WE ARE JAPANESE GOBLIN","utTitle":null,"artist":"ココ&さつき が てんこもり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":933,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16253,"players":7,"title":"Viyella's Scream","utTitle":null,"artist":"Laur","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":228,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"JFish","romVersion":10000,"notes":{"total":1411,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2295,"long":false},{"id":16251,"players":10,"title":"Terrasphere","utTitle":null,"artist":"Plum","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"L.R.C.","romVersion":10000,"notes":{"total":842,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16252,"players":5,"title":"unravel","utTitle":null,"artist":"TK from 凛として時雨","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"研","romVersion":10000,"notes":{"total":382,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16255,"players":4,"title":"Welcome, Queen of Fiction","utTitle":null,"artist":"打打だいず","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":131,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"-","romVersion":10000,"notes":{"total":1320,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16256,"players":1,"title":"[哈基杯场外]恋のセレナーデ","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"众魂眷恋的西行寺","romVersion":10000,"notes":{"total":578,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16264,"players":0,"title":"なにが悪い","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":122,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"阿抹AIMO","romVersion":10000,"notes":{"total":460,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16260,"players":4,"title":"いけないボーダーライン","utTitle":null,"artist":"Walküre","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":161,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"salap (ギリギリ愛~)","romVersion":10000,"notes":{"total":850,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16259,"players":0,"title":"†吸tie Ladies†","utTitle":null,"artist":"富田美憂 / Lynn / 和氣あず未 / 篠原侑","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":17,"level_id":4,"level":"12","level_value":12.0,"note_designer":"†reflectW†","romVersion":10000,"notes":{"total":458,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16257,"players":0,"title":"Äventyr (Seirḗn Mix) - JP Ver.","utTitle":null,"artist":"Sera Amagi prod. Yuukineko","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"おにねこ","romVersion":10000,"notes":{"total":721,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16262,"players":1,"title":"とおりゃんせ~甘美風来","utTitle":null,"artist":"遥そら","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":152,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"fishuwu with 日色","romVersion":10000,"notes":{"total":858,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16258,"players":9,"title":"친근한 어버이(亲切的父亲)","utTitle":null,"artist":"朝鲜功勋国家合唱团","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":1544,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16261,"players":0,"title":"かたち","utTitle":null,"artist":"安月名莉子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Save","romVersion":10000,"notes":{"total":374,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16263,"players":3,"title":"とげとげサディスティック","utTitle":null,"artist":"エノルミータ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":80,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":18,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"reflectW","romVersion":10000,"notes":{"total":389,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16265,"players":0,"title":"アレセイア","utTitle":null,"artist":"eufonius","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kondou","romVersion":10000,"notes":{"total":525,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16269,"players":1,"title":"ツナグキズナ","utTitle":null,"artist":"Team.ねこかん[猫] featuring.天乙准花","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kondou","romVersion":10000,"notes":{"total":469,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16271,"players":1,"title":"トキラキメキ","utTitle":null,"artist":"ヒヅキミウ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":133,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"WH_Constantinxx","romVersion":10000,"notes":{"total":875,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16273,"players":0,"title":"ヒトリゴト","utTitle":null,"artist":"ClariS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Melt℃","romVersion":10000,"notes":{"total":448,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16274,"players":9,"title":"ロストアンブレラ(lost umbrella)","utTitle":null,"artist":"稲葉曇,歌愛ユキ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":137,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"STEXxx","romVersion":10000,"notes":{"total":1130,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16267,"players":13,"title":"ギターと孤独と蒼い惑星","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"闇靈DarkM","romVersion":10000,"notes":{"total":534,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16268,"players":1,"title":"クレイジークレイジー","utTitle":null,"artist":"レイジー・レイジー","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":143,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Doro · Rene","romVersion":10000,"notes":{"total":826,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16272,"players":0,"title":"バベル","utTitle":null,"artist":"Dimension-3","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"旧約 創世紀拾壹章肆節","romVersion":10000,"notes":{"total":842,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16275,"players":6,"title":"中国话","utTitle":null,"artist":"S.H.E","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"D.N.S.","romVersion":10000,"notes":{"total":734,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16266,"players":3,"title":"カワキヲアメク","utTitle":null,"artist":"美波 ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"MYOU","romVersion":10000,"notes":{"total":737,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16278,"players":0,"title":"冷吟閑酔","utTitle":null,"artist":"黄昏フロンティア,上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"阿抹AIMO","romVersion":10000,"notes":{"total":707,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16280,"players":1,"title":"古今東西コンコン魂!","utTitle":null,"artist":"ああああ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Rayton","romVersion":10000,"notes":{"total":451,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16282,"players":0,"title":"大东北是我的家乡","utTitle":null,"artist":"何玉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":15,"level_id":3,"level":"11","level_value":11.0,"note_designer":"FOMIK","romVersion":10000,"notes":{"total":511,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":19,"level_id":4,"level":"13","level_value":13.0,"note_designer":"FOMIK","romVersion":10000,"notes":{"total":638,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16283,"players":21,"title":"天天天国地獄国 (feat. ななひら & P丸様。)","utTitle":null,"artist":"Aiobahn +81; ななひら; P丸様。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"升天","romVersion":10000,"notes":{"total":1229,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16281,"players":23,"title":"大东北◆我的家乡","utTitle":null,"artist":"何◆玉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"老◆蒯","romVersion":10000,"notes":{"total":759,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16277,"players":3,"title":"光るなら","utTitle":null,"artist":"Goose house","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Sakurago","romVersion":10000,"notes":{"total":536,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16276,"players":8,"title":"你若三冬","utTitle":null,"artist":"阿悠悠","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":101,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":573,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16279,"players":2,"title":"卑弥呼","utTitle":null,"artist":" ~ 朱雀 Vs 玄武 ~","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"EdMN vs KuSA","romVersion":10000,"notes":{"total":1325,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16284,"players":3,"title":"幕を下ろそう、パレードへ","utTitle":null,"artist":"海茶","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":146,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"WAWAJIAO","romVersion":10000,"notes":{"total":767,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16285,"players":0,"title":"弦楽少女は諦めを知らずに","utTitle":null,"artist":"海茶 feat. 琴葉葵","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":146,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ZJU Chart Team ”Mr.D“","romVersion":10000,"notes":{"total":1014,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16287,"players":1,"title":"恋ノ蟲","utTitle":null,"artist":"花たん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"HEHE122","romVersion":10000,"notes":{"total":459,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16288,"players":1,"title":"気まぐれメルシィ(八王子P feat.初音ミク)","utTitle":null,"artist":"八王子P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"woxxow","romVersion":10000,"notes":{"total":904,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16286,"players":1,"title":"忘れてやらない","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":184,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"monimoni","romVersion":10000,"notes":{"total":951,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16289,"players":0,"title":"永夜のパレード","utTitle":null,"artist":"JUMA/ケーキ姫","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"河豚1号","romVersion":10000,"notes":{"total":554,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16290,"players":0,"title":"激突!グルメレース","utTitle":null,"artist":" 石川淳(星のカービィ スーパーデラックス)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":187,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"feishu","romVersion":10000,"notes":{"total":402,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16291,"players":3,"title":"白金ディスコ","utTitle":null,"artist":"井口裕香","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":117,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"819","romVersion":10000,"notes":{"total":435,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16293,"players":1,"title":"繚乱!ビクトリーロード","utTitle":null,"artist":"虹ヶ咲学園スクールアイドル同好会","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Niji Idol Girls","romVersion":10000,"notes":{"total":1717,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16292,"players":0,"title":"童遊","utTitle":null,"artist":"めらみぽっぷ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"夜梨","romVersion":10000,"notes":{"total":541,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16294,"players":1,"title":"自由自在","utTitle":null,"artist":"凤凰传奇","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"ZR","romVersion":10000,"notes":{"total":442,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16295,"players":2,"title":"茉子の日常","utTitle":null,"artist":"常陸 茉子 (CV:小鳥居 夕花) 「千恋*万花」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"kuruma","romVersion":10000,"notes":{"total":869,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2478,"long":false},{"id":16298,"players":1,"title":"?←HEARTBEAT","utTitle":null,"artist":"絢瀬 絵里 (CV:南条 愛乃)、東条 希 (CV:楠田 亜衣奈)、矢澤 にこ (CV:徳井 青空)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":237,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":644,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16300,"players":7,"title":"Aetheric Energy","utTitle":null,"artist":"aran","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"じゃこレモン","romVersion":10000,"notes":{"total":824,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16296,"players":4,"title":"隅田川夏恋歌","utTitle":null,"artist":"seiya-murai feat.ALT","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"秦淮河星人","romVersion":10000,"notes":{"total":951,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16299,"players":2,"title":"花月夜","utTitle":null,"artist":"瑶山百霊","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"霊風","romVersion":10000,"notes":{"total":1077,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16297,"players":2,"title":"魔理沙は大変なものを盗んでいきました - 森羅万象Ver.","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Glowen@文文。茶楼","romVersion":10000,"notes":{"total":860,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16303,"players":20,"title":"アンビバレンス","utTitle":null,"artist":"すりぃ×相沢","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":187,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Jack","romVersion":10000,"notes":{"total":956,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16302,"players":34,"title":"YA・DA・YO [Reborn]","utTitle":null,"artist":"古代 祐三「ファンタジーゾーン」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"Safata.Hz","romVersion":10000,"notes":{"total":666,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16301,"players":8,"title":"時計の国のジェミニ","utTitle":null,"artist":"黒魔","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"アマリリス","romVersion":10000,"notes":{"total":787,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16304,"players":3,"title":"#狂った民族 AGNIKAYANIZM","utTitle":null,"artist":"DJ Raisei","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16305,"players":0,"title":"#狂った民族2 PRAVARGYAZOOQA(“WELKOME TO DA UPĀSANIZM” LONG VER.)","utTitle":null,"artist":"DJ Raisei","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":22,"level_id":0,"level":"14+","level_value":14.7,"note_designer":"“WE1KOM3 1O D4 UPASAN1Z3”","romVersion":10000,"notes":{"total":2018,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16308,"players":10,"title":"Antithese","utTitle":null,"artist":"Blacklolita","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":17,"level_id":2,"level":"12","level_value":12.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":601,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":894,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16309,"players":7,"title":"Argonovice","utTitle":null,"artist":"Knighthood","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":210,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Yub1 & CCCoFFEE","romVersion":10000,"notes":{"total":1096,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16307,"players":13,"title":"Aether Crest: Celestial","utTitle":null,"artist":"void(Mournfinale) vs 水野健治","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":20,"level_id":2,"level":"13+","level_value":13.7,"note_designer":"Clonata","romVersion":10000,"notes":{"total":852,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Chlorine.","romVersion":10000,"notes":{"total":1355,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":23,"level_id":4,"level":"15","level_value":15.0,"note_designer":"RE:EILA","romVersion":10000,"notes":{"total":1224,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2739,"long":false},{"id":16312,"players":2,"title":"BAR BAR BAR","utTitle":null,"artist":"Crayon Pop","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"1.3.1.4.13","romVersion":10000,"notes":{"total":714,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16313,"players":6,"title":"Beautiful Nightmare","utTitle":null,"artist":"八王子P","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":110,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":4,"level_id":0,"level":"4","level_value":4.0,"note_designer":"Tane","romVersion":10000,"notes":{"total":277,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":7,"level_id":1,"level":"7","level_value":7.0,"note_designer":"Tane","romVersion":10000,"notes":{"total":424,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":13,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Tane","romVersion":10000,"notes":{"total":587,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Tane","romVersion":10000,"notes":{"total":780,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16310,"players":0,"title":"Assault TAXI","utTitle":null,"artist":"∀S∀","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":154,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":865,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16314,"players":0,"title":"burn(Haocore Mix)(Daily天利 remix)","utTitle":null,"artist":"Daily天利 - NceS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":27,"level_id":0,"level":"未知等级","level_value":0.0,"note_designer":"LemonTea","romVersion":10000,"notes":{"total":1249,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16318,"players":2,"title":"CLEAR","utTitle":null,"artist":"坂本真綾","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":78,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"一张被封印的谱面","romVersion":10000,"notes":{"total":407,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16316,"players":1,"title":"レイヴンズ・プライド","utTitle":null,"artist":"みーに feat. はらもりよしな","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":3,"level_id":0,"level":"3","level_value":3.0,"note_designer":"1.3.1.4:13 respects for Safata.Hz","romVersion":10000,"notes":{"total":122,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":7,"level_id":1,"level":"7","level_value":7.0,"note_designer":"1.3.1.4:13 respects for Safata.Hz","romVersion":10000,"notes":{"total":228,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"1.3.1.4:13 respects for Safata.Hz","romVersion":10000,"notes":{"total":503,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16311,"players":10,"title":"Ave Mujica","utTitle":null,"artist":"Ave Mujica","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":111,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MYOU","romVersion":10000,"notes":{"total":1212,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16319,"players":3,"title":"Clover Heart's -New days recording-","utTitle":null,"artist":"真理绘","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":156,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"-","romVersion":10000,"notes":{"total":811,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16322,"players":0,"title":"Daydream Warrior","utTitle":null,"artist":"Aqours","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"超上级小恶魔","romVersion":10000,"notes":{"total":964,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16320,"players":6,"title":"DA’AT -The First Seeker of Souls-","utTitle":null,"artist":"水野健治/大国奏音","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":222,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"F M - 1 0 1","romVersion":10000,"notes":{"total":1250,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16321,"players":1,"title":"KAISUKE","utTitle":null,"artist":"Y&Co.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":157,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"mai-Starhytm feat. anson-Tree","romVersion":10000,"notes":{"total":818,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16315,"players":2,"title":"BWLAUTE BEIRRD","utTitle":null,"artist":"夢乃ゆき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":197,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":" ","romVersion":10000,"notes":{"total":751,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16317,"players":0,"title":"children of the city","utTitle":null,"artist":"Mili","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":119,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"KuSA","romVersion":10000,"notes":{"total":506,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16323,"players":2,"title":"Deicide","utTitle":null,"artist":"void (Mournfinale) feat. 古泉葉月","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":163,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Deicide PARADOXXX","romVersion":10000,"notes":{"total":1120,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16325,"players":4,"title":"Doll's Garden","utTitle":null,"artist":"Memme","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":690,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16326,"players":12,"title":"Dream Away (feat. Yukacco)","utTitle":null,"artist":"DJ Noriken/DJ Genki/Yukacco","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DJ Dannis","romVersion":10000,"notes":{"total":1289,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16324,"players":19,"title":"Disorder","utTitle":null,"artist":"HyuN / Yuri","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"StarrY","romVersion":10000,"notes":{"total":959,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16327,"players":0,"title":"[Full] Duplicity Shade","utTitle":null,"artist":"HyuN feat. Sennzai","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"踏み越えた絶望は 君を羽ばたかせよう","romVersion":10000,"notes":{"total":4028,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16330,"players":13,"title":"Echoes of Memoria","utTitle":null,"artist":"Ludicin","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Chlorine.","romVersion":10000,"notes":{"total":3106,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":23,"level_id":4,"level":"15","level_value":15.0,"note_designer":"「将来」は奈落の淵へと堕ち、最後の光すら闇に呑まれ、万物は漆黒の闇蝕に覆われた。","romVersion":10000,"notes":{"total":3185,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16329,"players":1,"title":"Earthquake Super Shock","utTitle":null,"artist":"SOUND HOLIC","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":785,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":1071,"long":false},{"id":16331,"players":0,"title":"EROICA","utTitle":null,"artist":"BEMANI Sound Team ”HERO”","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"\"Kanata\"さぁ、英雄になる時間だ。","romVersion":10000,"notes":{"total":843,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16328,"players":14,"title":"D/N/A","utTitle":null,"artist":"Azari/25時、ナイトコードで。× 鏡音リン","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":795,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16332,"players":0,"title":"Essence","utTitle":null,"artist":"takehirotei","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"This, is the true essence","romVersion":10000,"notes":{"total":3547,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16333,"players":0,"title":"Everlasting Eternity","utTitle":null,"artist":"Ludicin","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"「将来」-永恒-","romVersion":10000,"notes":{"total":3921,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16334,"players":4,"title":"Fallensquare","utTitle":null,"artist":"Silentroom","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":99,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"2.7Ghz","romVersion":10000,"notes":{"total":945,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16336,"players":3,"title":"Hardcore Kwaya","utTitle":null,"artist":"EnFr","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Syan_LBP saying KWAAAAYAAA","romVersion":10000,"notes":{"total":879,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16335,"players":3,"title":"Fragrance","utTitle":null,"artist":"Tsukasa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"扫","romVersion":10000,"notes":{"total":567,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16337,"players":3,"title":"Heavenly Me ","utTitle":null,"artist":"AIYUE/理名/塞壬唱片-MSR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Fdagio雪茶","romVersion":10000,"notes":{"total":1004,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16341,"players":4,"title":"Hypnotize","utTitle":null,"artist":"rejection","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":1022,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16339,"players":21,"title":"Hop","utTitle":null,"artist":"AZIS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":920,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16340,"players":1,"title":"Horizon Blue","utTitle":null,"artist":"Aikapin/ちよこ/Nothing But Requiem","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Syan_LBP","romVersion":10000,"notes":{"total":1096,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16338,"players":2,"title":"Heavenly Me ","utTitle":null,"artist":"AIYUE 理名","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Apple pie, with \"chart\" siu","romVersion":10000,"notes":{"total":722,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16346,"players":1,"title":"Kosmos, Cosmos","utTitle":null,"artist":"萩原雪步","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"雪步盾构鸡","romVersion":10000,"notes":{"total":398,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16345,"players":3,"title":"Knight Rider","utTitle":null,"artist":"USAO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"F M - 1 0 1","romVersion":10000,"notes":{"total":1054,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16344,"players":0,"title":"KIOTON","utTitle":null,"artist":"Repezen Foxx","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":21,"level_id":0,"level":"14","level_value":14.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":1649,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16342,"players":10,"title":"Igallta","utTitle":null,"artist":"Se-U-Ra","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":230,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Sc_Ar","romVersion":10000,"notes":{"total":1052,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16343,"players":0,"title":"KASANE","utTitle":null,"artist":"KaedeHiyama","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"HikaRikka","romVersion":10000,"notes":{"total":882,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16348,"players":3,"title":"Animosity","utTitle":null,"artist":"Laur","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":210,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"悪意「未来」","romVersion":10000,"notes":{"total":1118,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16349,"players":3,"title":"LaVI-Bavellabion","utTitle":null,"artist":"SLAVE.V-V-R","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":142,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ros","romVersion":10000,"notes":{"total":554,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16347,"players":9,"title":"Lament Rain","utTitle":null,"artist":"打打だいず / Ashrount","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"EILA","romVersion":10000,"notes":{"total":1156,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16351,"players":4,"title":"Like the Wind [Reborn][DX]","utTitle":null,"artist":"sampling masters MEGA「パワードリフト」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Sc_Ar","romVersion":10000,"notes":{"total":812,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16350,"players":3,"title":"Liberation","utTitle":null,"artist":"Silaver/lixound","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"TeioK","romVersion":10000,"notes":{"total":1177,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16353,"players":7,"title":"Loli Bomb","utTitle":null,"artist":"Slax","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":214,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"抄谱:HikaRikka 舞立方侧:魔盒","romVersion":10000,"notes":{"total":1766,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16356,"players":3,"title":"M@STERPIECE","utTitle":null,"artist":"765PRO ALLSTARS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Hisui","romVersion":10000,"notes":{"total":555,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16355,"players":3,"title":"Fragrance","utTitle":null,"artist":"Tsukasa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":405,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16352,"players":9,"title":"Lionheart[DX]","utTitle":null,"artist":"Masayoshi Minoshima","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Sc_Ar","romVersion":10000,"notes":{"total":540,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Dororo","romVersion":10000,"notes":{"total":402,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16360,"players":2,"title":"MIRINAE","utTitle":null,"artist":"TAK×Zekk","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"NiGhtZx2H","romVersion":10000,"notes":{"total":1838,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16357,"players":3,"title":"Meta-Mysteria","utTitle":null,"artist":"DJ Noriken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Guilty","romVersion":10000,"notes":{"total":1111,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16362,"players":4,"title":"Mystic Light Quest","utTitle":null,"artist":"塞壬唱片-MSR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ControlNet Facility Munipical Megatower","romVersion":10000,"notes":{"total":970,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16359,"players":1,"title":"Midnight Lady","utTitle":null,"artist":"Dirty Androids","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Coastline Bartender","romVersion":10000,"notes":{"total":711,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16361,"players":5,"title":"Mystic Light Quest","utTitle":null,"artist":"明日方舟","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"mmfc","romVersion":10000,"notes":{"total":1392,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16364,"players":2,"title":"NEON WORLD","utTitle":null,"artist":"SOUND HOLIC","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":154,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":1065,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16365,"players":2,"title":"Nyarlathotep's Dreamland","utTitle":null,"artist":"Raimukun","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"QWE","romVersion":10000,"notes":{"total":1666,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16363,"players":10,"title":"Mystic Light Quest","utTitle":null,"artist":"Monster siren","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Re:MirrorKnight","romVersion":10000,"notes":{"total":1209,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16358,"players":4,"title":"Meta-Mysteria","utTitle":null,"artist":"DJ Noriken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DJ ChaN","romVersion":10000,"notes":{"total":1138,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16366,"players":3,"title":"olvido","utTitle":null,"artist":"Placeholder","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"公公の羊","romVersion":10000,"notes":{"total":1168,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16368,"players":14,"title":"PRAGMATISM -RESURRECTION-","utTitle":null,"artist":"Laur","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Hika.Rikka","romVersion":10000,"notes":{"total":1033,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2348,"long":false},{"id":16367,"players":0,"title":"Outernoid","utTitle":null,"artist":"Aoi feat. Airi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MUVIVIT","romVersion":10000,"notes":{"total":841,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16369,"players":0,"title":"Premeditated Treachery","utTitle":null,"artist":"Prototype Raptor","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":889,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16370,"players":11,"title":"Quon","utTitle":null,"artist":"DJ Noriken","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Apmayo","romVersion":10000,"notes":{"total":950,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2411,"long":false},{"id":16372,"players":6,"title":"Ringed Genesis","utTitle":null,"artist":"Edelritter","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Traxeri","romVersion":10000,"notes":{"total":773,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2695,"long":false},{"id":16373,"players":0,"title":"Secret Door","utTitle":null,"artist":"岸田教団&THE明星ロケッツ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Ogaco -Chart is expression of music info.-","romVersion":10000,"notes":{"total":1135,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16379,"players":11,"title":" TECHNOPOLIS 2085","utTitle":null,"artist":"PRASTIK DANCEFLOOR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"LUNER","romVersion":10000,"notes":{"total":842,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16378,"players":12,"title":"TECHNOPOLIS 2085","utTitle":null,"artist":"PRASTIK DANCEFLOOR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"01001000 01010011 01001110","romVersion":10000,"notes":{"total":993,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16375,"players":5,"title":"Sendan Life(Katagiri Bootleg)","utTitle":null,"artist":"かたぎり / 花守ゆみり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":260,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":1285,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":23,"level_id":4,"level":"15","level_value":15.0,"note_designer":"moying","romVersion":10000,"notes":{"total":2000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16376,"players":3,"title":"Sigma (Haocore Mix) ~ Regrets of the Yellow Tulip ~","utTitle":null,"artist":"Kry.exe-天利","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":201,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"digitalgroove","romVersion":10000,"notes":{"total":1343,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16377,"players":3,"title":"String Theocracy","utTitle":null,"artist":"Mili","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":232,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Sakurage","romVersion":10000,"notes":{"total":790,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16374,"players":8,"title":"Sendan Life (Katagiri Bootleg)","utTitle":null,"artist":"かたぎり / 花守ゆみり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":260,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":21,"level_id":2,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":1286,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"moying","romVersion":10000,"notes":{"total":2000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":23,"level_id":4,"level":"15","level_value":15.0,"note_designer":"Fanchy","romVersion":10000,"notes":{"total":2077,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16380,"players":0,"title":"Tiny Stars","utTitle":null,"artist":"伊達さゆり/Liyuu","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"@xmmcg","romVersion":10000,"notes":{"total":630,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16383,"players":3,"title":"WAVE","utTitle":null,"artist":"niki feat. Lily","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Amatou_Kurage","romVersion":10000,"notes":{"total":1189,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":516,"long":false},{"id":16381,"players":0,"title":"Titanomachia II","utTitle":null,"artist":"ELFL","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":656,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16384,"players":1,"title":"X-MAN","utTitle":null,"artist":"韩庚","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":732,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16386,"players":4,"title":"Yes! Party Time!! (GAME VERSION)","utTitle":null,"artist":"今井麻夏; 春瀬なつみ; 照井春佳; 黒沢ともよ; 久野美咲","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Ltp&kkrw","romVersion":10000,"notes":{"total":672,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16382,"players":1,"title":"Trancing Pulse (GAME VERSION)","utTitle":null,"artist":"福原綾香; 渕上舞; 松井恵理子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":113,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"HikaRikka","romVersion":10000,"notes":{"total":647,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16371,"players":10,"title":"R.I.P","utTitle":null,"artist":"eicateve","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Clonata","romVersion":10000,"notes":{"total":1156,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16385,"players":19,"title":"XL TECHNO -More Dance Remix-","utTitle":null,"artist":"from PACA PACA PASSION Special","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":21,"level_id":2,"level":"14","level_value":14.0,"note_designer":"K3v1N_027 -More ED2M Remix-","romVersion":10000,"notes":{"total":1243,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"XL TECHNO -More Dance Remix-","romVersion":10000,"notes":{"total":789,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"CupLid","romVersion":10000,"notes":{"total":1146,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2035,"long":false},{"id":16387,"players":4,"title":"[AI在原七海]泥の分際で私だけの大切を奪おうだなんて","utTitle":null,"artist":"在原七海","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":225,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"inomio","romVersion":10000,"notes":{"total":1367,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16388,"players":8,"title":"[プロセカ]限りなく灰色へ","utTitle":null,"artist":"東雲絵名","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":108,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":774,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":18,"level_id":4,"level":"12+","level_value":12.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":660,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16390,"players":1,"title":"[譜面差分]KONNANじゃないっ!","utTitle":null,"artist":"澤村 遥「龍が如く5 夢、叶えし者」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Lv Cat","romVersion":10000,"notes":{"total":668,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16389,"players":0,"title":"[时]花と、雪と、ドラムンベース。","utTitle":null,"artist":"kanone feat. せんざい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"CZQLIDE","romVersion":10000,"notes":{"total":398,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16396,"players":3,"title":"とある一家の御茶会議","utTitle":null,"artist":"くるりんご / GUMI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"雪魚豆腐","romVersion":10000,"notes":{"total":1031,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16392,"players":10,"title":"【电棍】BOSS RUSH","utTitle":null,"artist":"DJGun","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":597,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":753,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16393,"players":4,"title":"【电棍】熙熙攘攘、我们的城市","utTitle":null,"artist":"D_dsa vs 甜甜薇 vs Kaiser vs 半泽少女","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":171,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"心白-HW","romVersion":10000,"notes":{"total":1450,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16395,"players":4,"title":"あんきら!?狂騒曲","utTitle":null,"artist":"五十嵐裕美; 松嵜麗","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Arikna","romVersion":10000,"notes":{"total":792,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16397,"players":1,"title":"とくとく…… とく……","utTitle":null,"artist":"佐城雪美 (CV:中澤ミナ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":95,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"『恋文海月』","romVersion":10000,"notes":{"total":408,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16394,"players":1,"title":"あなたのチ〇コは何せンチ?","utTitle":null,"artist":"adult family","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":85,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"torli","romVersion":10000,"notes":{"total":721,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16398,"players":1,"title":"アオイトリ","utTitle":null,"artist":"橋本みゆき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":115,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"メアリー・ハーカーS","romVersion":10000,"notes":{"total":520,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16400,"players":2,"title":"ズットキット・プライマリ","utTitle":null,"artist":"sasakure.UK feat. PRIME","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":157,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Dororo","romVersion":10000,"notes":{"total":989,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16404,"players":3,"title":"ロウワー","utTitle":null,"artist":"flower","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":264,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"F M - 1 0 1","romVersion":10000,"notes":{"total":770,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16405,"players":4,"title":"上弦の月","utTitle":null,"artist":"黒うさP(feat. KAITO)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":82,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"おにねこ","romVersion":10000,"notes":{"total":734,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16403,"players":0,"title":"ビタミンSUMMER!","utTitle":null,"artist":"Liella!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"輕誑哋☍騒姩","romVersion":10000,"notes":{"total":880,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16402,"players":1,"title":"ハルトマンの妖怪少女","utTitle":null,"artist":"岸田教団&THE明星ロケッツ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":196,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ogaco","romVersion":10000,"notes":{"total":926,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16406,"players":7,"title":"光","utTitle":null,"artist":"姜米條","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"AmieZz","romVersion":10000,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16399,"players":7,"title":"ジョジョ 〜その血の運命〜","utTitle":null,"artist":"富永弘明","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":146,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"その運命の開始","romVersion":10000,"notes":{"total":553,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16401,"players":7,"title":"ドリアン爆弾(feat. Roon_kun)","utTitle":null,"artist":"Daily天利","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"抄谱:HikaRikka舞立方侧","romVersion":10000,"notes":{"total":1167,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16408,"players":0,"title":"冒険でしょでしょ?","utTitle":null,"artist":"平野绫","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"シャミセン","romVersion":10000,"notes":{"total":790,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16407,"players":3,"title":"ラビットホール","utTitle":null,"artist":"DECO*27/初音","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":173,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"九四百二","romVersion":10000,"notes":{"total":1347,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16391,"players":1,"title":"[譜面差分]終わりなき物語","utTitle":null,"artist":"喜多村英梨","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"亚丝娜","romVersion":10000,"notes":{"total":737,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16409,"players":1,"title":"凍り付いた永遠の都","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":167,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Sakurago","romVersion":10000,"notes":{"total":957,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16412,"players":4,"title":"匙ノ咒","utTitle":null,"artist":"r-906","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Yuka","romVersion":10000,"notes":{"total":897,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16410,"players":5,"title":"化けの花","utTitle":null,"artist":"なきそ; 25時、ナイトコードで。; KAITO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"F M - 1 0 X","romVersion":10000,"notes":{"total":739,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16413,"players":3,"title":"唢呐破坏者","utTitle":null,"artist":"_karasu_","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"MD~K3v1N_027","romVersion":10000,"notes":{"total":1067,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16414,"players":0,"title":"四月の雨","utTitle":null,"artist":"cubesato","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Rainy Day","romVersion":10000,"notes":{"total":772,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16411,"players":4,"title":"化孵化[LONG:3:24]","utTitle":null,"artist":"可不; sasakure.UK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"HikaRikka","romVersion":10000,"notes":{"total":1248,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16415,"players":10,"title":"変態乳牛","utTitle":null,"artist":"Tom-H@ck","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":50,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"-SENA- YoZoRa","romVersion":10000,"notes":{"total":478,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16416,"players":0,"title":"大地の閾を探して -Looking for Edge of Ground-","utTitle":null,"artist":"かめりあ ft. 初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":87,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"βeat/haver vs. chala_tea","romVersion":10000,"notes":{"total":3136,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16423,"players":6,"title":"海神寓拝","utTitle":null,"artist":"sasakure.UK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":13,"level_id":3,"level":"10","level_value":10.0,"note_designer":"KuSA","romVersion":10000,"notes":{"total":679,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16421,"players":0,"title":"戦国HOP","utTitle":null,"artist":"YUC'e","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":110,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"KuSA","romVersion":10000,"notes":{"total":900,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16417,"players":5,"title":"天使の翼。","utTitle":null,"artist":"A4。/可不/ゲキヤク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"无","romVersion":10000,"notes":{"total":779,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16419,"players":4,"title":"恋ひ恋ふ縁","utTitle":null,"artist":"KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":144,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"GAHOU","romVersion":10000,"notes":{"total":990,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16420,"players":1,"title":"恋ひ恋ふ縁 (3R2 Remix)","utTitle":null,"artist":"3R2/KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"柚子醋蒸鹅心","romVersion":10000,"notes":{"total":920,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16418,"players":1,"title":"帝国少女","utTitle":null,"artist":"R Sound Design","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":118,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"MYOU","romVersion":10000,"notes":{"total":756,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16424,"players":1,"title":"激光之城","utTitle":null,"artist":"Cheetah Mobile Sound Team","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"1.3.1.4:13","romVersion":10000,"notes":{"total":629,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16426,"players":5,"title":"目撃!テト31世","utTitle":null,"artist":"はろける","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Iybuki","romVersion":10000,"notes":{"total":904,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16429,"players":3,"title":"花ざかりWeekend✿","utTitle":null,"artist":"桜守歌織 & 豊川風花 & 北上麗花 & 馬場このみ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":137,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Hisui","romVersion":10000,"notes":{"total":746,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16427,"players":6,"title":"神经病之歌","utTitle":null,"artist":"ilem","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"SJB","romVersion":10000,"notes":{"total":206,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16432,"players":1,"title":"虚星人","utTitle":null,"artist":"金魚光線","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Tail.R","romVersion":10000,"notes":{"total":883,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16433,"players":2,"title":"裏表ラバーズ","utTitle":null,"artist":"wowaka","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":159,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"Sc_Ar","romVersion":10000,"notes":{"total":832,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16430,"players":11,"title":"花たちに希望を","utTitle":null,"artist":"Sound piercer feat.DAZBEE","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":187,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"もふもふウサギ","romVersion":10000,"notes":{"total":1060,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2047,"long":false},{"id":16428,"players":6,"title":"神鳴","utTitle":null,"artist":"Rígr feat. 光吉猛修","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"S74390E2 -For The Dove-","romVersion":10000,"notes":{"total":1404,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"Jian","romVersion":10000,"notes":{"total":1519,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2838,"long":false},{"id":16425,"players":1,"title":"生命線","utTitle":null,"artist":"ReoNa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"消さないで","romVersion":10000,"notes":{"total":622,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16431,"players":1,"title":"花冷列車","utTitle":null,"artist":"三月のパンタシア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":137,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"「The next station is XINJIEKOU, please get ready to get off for transferring to METRO LINE 2.」","romVersion":10000,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16435,"players":2,"title":"电棍反射","utTitle":null,"artist":"DJRicher","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"baiqieji","romVersion":10000,"notes":{"total":855,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16434,"players":9,"title":"超兽武装","utTitle":null,"artist":"刘罡, 陈洁丽","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"hxmy","romVersion":10000,"notes":{"total":589,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16439,"players":1,"title":"有頂天変 〜 Wonderful Heaven","utTitle":null,"artist":"ZUN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":161,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Acadm","romVersion":10000,"notes":{"total":1059,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16440,"players":3,"title":"[较难]Lost Requiem","utTitle":null,"artist":"Ludicin","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"「将来」- Final Hymn","romVersion":10000,"notes":{"total":4281,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16436,"players":4,"title":"限りなく灰色へ","utTitle":null,"artist":"25時、ナイトコードで。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":107,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":13,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Tane","romVersion":10000,"notes":{"total":310,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Tane","romVersion":10000,"notes":{"total":530,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16441,"players":22,"title":"早安大森林","utTitle":null,"artist":"李智平","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":51,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"守护★我们最♡好の「狗熊岭」~♪","romVersion":10000,"notes":{"total":534,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16442,"players":0,"title":"2025,寄给旧时光的鬼畜书信 [超长曲目|19:39|请在合适的时机、开启 TRACK SKIP 游玩本曲目,否则后果自负]","utTitle":null,"artist":"FFFanwen","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"by HeartWhite to 2025","romVersion":10000,"notes":{"total":7359,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16444,"players":2,"title":"maimaiでらっくす Lv14+以上超高難易度メドレー(~BUDDiES PLUS)[超长曲目|23:26|请在合适的时机、开启 TRACK SKIP 游玩本曲目,否则后果自负]","utTitle":null,"artist":"maimai TEAM DX","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"maimai TEAM DX","romVersion":10000,"notes":{"total":16252,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16450,"players":0,"title":"adamant faith","utTitle":null,"artist":"Suara","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":127,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Sakurago","romVersion":10000,"notes":{"total":313,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16438,"players":2,"title":"ALL!!!","utTitle":null,"artist":"塞壬唱片-MSR","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":123,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"DUNECK","romVersion":10000,"notes":{"total":595,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16447,"players":7,"title":"基米一起哈 - 上世纪北欧热潮带你鸡爆电基地带","utTitle":null,"artist":"bbben_","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"哈基心 vs 哈基白","romVersion":10000,"notes":{"total":827,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16454,"players":2,"title":"DRE4M1N9","utTitle":null,"artist":"Lamanya","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":620,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2612,"long":false},{"id":16455,"players":5,"title":"Enceladus","utTitle":null,"artist":"Abel & Hexacube「KALPA」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":186,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Jerry","romVersion":10000,"notes":{"total":730,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"Xalloyi vs. Jerry","romVersion":10000,"notes":{"total":892,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16453,"players":0,"title":"Ditto","utTitle":null,"artist":"Newjeans","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Crystallia","romVersion":10000,"notes":{"total":818,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16456,"players":8,"title":"GIGANTO MACHINA","utTitle":null,"artist":"Supa7onyz vs. Sound piercer","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"HikaRikka","romVersion":10000,"notes":{"total":1357,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16452,"players":8,"title":"Concvssion","utTitle":null,"artist":"Halv","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"由纱_鹿也 & Syan","romVersion":10000,"notes":{"total":1037,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16458,"players":6,"title":"Grimheart","utTitle":null,"artist":"Puru","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"grimkk","romVersion":10000,"notes":{"total":612,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16460,"players":0,"title":"JIMO-AI Dash!","utTitle":null,"artist":"Aqours","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":143,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"JIMO的人听着伤心的歌","romVersion":10000,"notes":{"total":1321,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16459,"players":6,"title":"IndiHome Paket Phoenix","utTitle":null,"artist":"IndiHome","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"夜梨","romVersion":10000,"notes":{"total":592,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16437,"players":32,"title":"雑踏、僕らの街","utTitle":null,"artist":"トゲナシトゲアリ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":171,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"XM_Dresk","romVersion":10000,"notes":{"total":1543,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16462,"players":1,"title":"Lost in the nowhere","utTitle":null,"artist":"Rave_cyanide/Cosmograph","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"2.7Ghz.","romVersion":10000,"notes":{"total":885,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16464,"players":10,"title":"Op.I《fear-TITΛN-》","utTitle":null,"artist":"xi vs. かねこちはる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":212,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Ebenholz","romVersion":10000,"notes":{"total":1210,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16457,"players":4,"title":"Give me some more...","utTitle":null,"artist":"アルストロメリア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ユラミさん","romVersion":10000,"notes":{"total":760,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16465,"players":5,"title":"POSTERGIRL (高能宣言)","utTitle":null,"artist":"三角洲行动; Peg Parnevik","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":157,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Hope and Dreams","romVersion":10000,"notes":{"total":609,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16461,"players":7,"title":"Little Wish","utTitle":null,"artist":"塞壬唱片-MSR; Sincere; Ws Music","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"夏末游鳞","romVersion":10000,"notes":{"total":682,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16468,"players":3,"title":"Tame-Lie-One-Step","utTitle":null,"artist":"紫雲清夏 (CV. 湊 みや) feat. 東 優太","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":138,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Aza","romVersion":10000,"notes":{"total":747,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16467,"players":0,"title":"S(mile)ING!","utTitle":null,"artist":"島村卯月/TVアニメ「THE IDOLM@STER CINDERELLA GIRLS」第2期第24話EDテーマ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Ragna","romVersion":10000,"notes":{"total":413,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16466,"players":6,"title":"Running In The Dark","utTitle":null,"artist":"MONKEY MAJIK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Originiums","romVersion":10000,"notes":{"total":398,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16470,"players":1,"title":"V","utTitle":null,"artist":"HIMEHINA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Aza","romVersion":10000,"notes":{"total":697,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16469,"players":8,"title":"T氏の話を信じるな","utTitle":null,"artist":"ピノキオピー feat. 初音ミク・重音テト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":143,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":883,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16471,"players":1,"title":"[宴]きゅびびびびずむ","utTitle":null,"artist":"原口沙輔 feat.超てんちゃん","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":20,"level_id":0,"level":"13+","level_value":13.7,"note_designer":"楓","romVersion":10000,"notes":{"total":1444,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16472,"players":1,"title":"[藏]Op.I《fear-TITΛN-》","utTitle":null,"artist":"xi vs. かねこちはる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":23,"level_id":3,"level":"15","level_value":15.0,"note_designer":"隐对","romVersion":10000,"notes":{"total":1590,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16474,"players":4,"title":"アブノーマリティ・ダンシンガール","utTitle":null,"artist":"ぐちり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"かえで","romVersion":10000,"notes":{"total":1012,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16473,"players":1,"title":"そこに在る、光。","utTitle":null,"artist":"25時、ナイトコードで。","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"25nG","romVersion":10000,"notes":{"total":999,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16476,"players":1,"title":"キティ","utTitle":null,"artist":"暁山瑞希","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"楓","romVersion":10000,"notes":{"total":819,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16477,"players":0,"title":"ジングルベルがとまらない","utTitle":null,"artist":"Aqours","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":240,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Aqours10年ズ~チカ~","romVersion":10000,"notes":{"total":1062,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16475,"players":0,"title":"アルストロメリア","utTitle":null,"artist":"アルストロメリア","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ユラミさん","romVersion":10000,"notes":{"total":652,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":233,"long":false},{"id":16481,"players":0,"title":"夕映えプレゼント","utTitle":null,"artist":"CINDERELLA PROJECT/TVアニメ「THE IDOLM@STER CINDERELLA GIRLS」第1期第2話EDテーマ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Ragna","romVersion":10000,"notes":{"total":403,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16479,"players":0,"title":"勾指起誓","utTitle":null,"artist":"ilem feat. 洛天依","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":85,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kurage","romVersion":10000,"notes":{"total":443,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16478,"players":1,"title":"不眠之夜","utTitle":null,"artist":"张杰,HOYO-MiX","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"STEXxx","romVersion":10000,"notes":{"total":394,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16480,"players":2,"title":"匙ノ咒","utTitle":null,"artist":"r-906","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MXCursetard","romVersion":10000,"notes":{"total":1472,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16483,"players":4,"title":"套馬杆","utTitle":null,"artist":"烏蘭托婭","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":84,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"楓","romVersion":10000,"notes":{"total":404,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16484,"players":4,"title":"恋になりたいAQUARIUM","utTitle":null,"artist":"Aqours","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":139,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Ragna","romVersion":10000,"notes":{"total":612,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16482,"players":2,"title":"夢色ハーモニー","utTitle":null,"artist":"CINDERELLA PROJECT/TVアニメ「THE IDOLM@STER CINDERELLA GIRLS」第2期EDテーマ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":178,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Ragna","romVersion":10000,"notes":{"total":325,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16486,"players":5,"title":"春日影 (MyGO!!!!! ver.)","utTitle":null,"artist":"MyGO!!!!!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":97,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"高松 燈","romVersion":10000,"notes":{"total":402,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16485,"players":0,"title":"愛して愛して愛して","utTitle":null,"artist":"きくお feat. Ado","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":76,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"楓","romVersion":10000,"notes":{"total":855,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16491,"players":3,"title":"矛盾の月","utTitle":null,"artist":"花咲夜","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"上弦月","romVersion":10000,"notes":{"total":675,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16489,"players":8,"title":"浙江温州江南皮革厂倒闭了","utTitle":null,"artist":"女孩为何穿短裙","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"日本东京世嘉株式会社倒闭了","romVersion":10000,"notes":{"total":408,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16490,"players":1,"title":"海色","utTitle":null,"artist":"AKINO from bless4","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kurage","romVersion":10000,"notes":{"total":583,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16487,"players":6,"title":"最炫民族风 ~献予「抽象」之歌 (feat.AI诗歌剧)","utTitle":null,"artist":"Daily天利&EndCat-终猫)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Dannis铲&SeiSan","romVersion":10000,"notes":{"total":2075,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16492,"players":1,"title":"私がモテないのはどう考えてもお前らが悪い","utTitle":null,"artist":"鈴木このみ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ぐへへ……","romVersion":10000,"notes":{"total":622,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16493,"players":7,"title":"空の箱 (Vo.河原木桃香)","utTitle":null,"artist":"ダイヤモンドダスト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Holinality Dust","romVersion":10000,"notes":{"total":279,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16488,"players":2,"title":"水死体にもどらないで","utTitle":null,"artist":"いよわ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":240,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"楓","romVersion":10000,"notes":{"total":834,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16496,"players":2,"title":"鸡块旋转4分钟","utTitle":null,"artist":"?","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":122,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":0,"level_id":0,"level":"未知等级","level_value":0.0,"note_designer":"Alef-Dfl","romVersion":10000,"notes":{"total":3696,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16495,"players":6,"title":"迷宮リリス","utTitle":null,"artist":"LeaF","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":177,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"かえで","romVersion":10000,"notes":{"total":1155,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16494,"players":5,"title":"Abstruse delimma","utTitle":null,"artist":"打打だいず / Ashrount","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":64,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Noise","romVersion":10000,"notes":{"total":1564,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"-","romVersion":10000,"notes":{"total":1560,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16497,"players":2,"title":"Radiant","utTitle":null,"artist":"塞壬唱片-MSR/Forts","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":176,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Rfabbit","romVersion":10000,"notes":{"total":580,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16498,"players":5,"title":"DAISUKE","utTitle":null,"artist":"Y&Co.","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":157,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"-","romVersion":10000,"notes":{"total":816,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16499,"players":1,"title":"QZKago Requiem Practice","utTitle":null,"artist":"t+pazolite","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":257,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"Garakuta Scramble!","romVersion":10000,"notes":{"total":1665,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16501,"players":7,"title":"ALTER EGO","utTitle":null,"artist":"Yuta Imai vs Qlarabelle","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":195,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Article VIII《ChloR》","romVersion":10000,"notes":{"total":1160,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16502,"players":1,"title":"anemone heart","utTitle":null,"artist":"内田彩,三森すずこ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":795,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16503,"players":2,"title":"Beat in Angel","utTitle":null,"artist":"飯田里穂&Pile","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":486,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":802,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16505,"players":1,"title":"[多押警告]Cybernetic Vampire","utTitle":null,"artist":"void (Mournfinale)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":110,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"HikaRikka","romVersion":10000,"notes":{"total":935,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16508,"players":1,"title":"FUTURE DOMINATOR","utTitle":null,"artist":"DJ SHARPNEL","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":210,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"[Cry]StaLL","romVersion":10000,"notes":{"total":3390,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16511,"players":7,"title":"IZANA","utTitle":null,"artist":"t+pazolite/P*Light","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":222,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"GW2.28","romVersion":10000,"notes":{"total":946,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16506,"players":5,"title":"dailnote","utTitle":null,"artist":"七草くりむ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"缘雪","romVersion":10000,"notes":{"total":611,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16509,"players":12,"title":"『不论世界如何颠倒,我们终将相互拥抱。』Inverted World","utTitle":null,"artist":"ARForest","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"DANNISChan","romVersion":10000,"notes":{"total":814,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16507,"players":3,"title":"Diamond Dust","utTitle":null,"artist":"Masahiro “Godspeed” Aoki","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FPara","romVersion":10000,"notes":{"total":1144,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16512,"players":0,"title":"LOVE 2000","utTitle":null,"artist":"遠野ひかる","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"woxxow","romVersion":10000,"notes":{"total":538,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16513,"players":0,"title":"Mermaid festa vol.1","utTitle":null,"artist":"μ's","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":127,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":1096,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16510,"players":6,"title":"IRIS OUT","utTitle":null,"artist":"米津玄师","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"JANE DOE","romVersion":10000,"notes":{"total":926,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16514,"players":9,"title":"MONTAGEM XONADA","utTitle":null,"artist":"MXZI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"TRG","romVersion":10000,"notes":{"total":371,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16515,"players":1,"title":"MY舞☆TONIGHT","utTitle":null,"artist":"Aqours","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"霊風","romVersion":10000,"notes":{"total":1168,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16516,"players":6,"title":"R.I.P","utTitle":null,"artist":"eicateve","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Clonata","romVersion":10000,"notes":{"total":1156,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16519,"players":5,"title":"[A]ddiction","utTitle":null,"artist":"GigaReol×EVO+","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":164,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"刻于晴空玉衡星","romVersion":10000,"notes":{"total":1395,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16518,"players":0,"title":"sweet&sweet holiday","utTitle":null,"artist":"Printemps","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":138,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":492,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16517,"players":2,"title":"Shades of Light in a Transcendent Realm","utTitle":null,"artist":"ak+q","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Chestnut","romVersion":10000,"notes":{"total":905,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16522,"players":7,"title":"[耐]アスノヨゾラ哨戒班","utTitle":null,"artist":"Orangestar feat.IA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"方方土","romVersion":10000,"notes":{"total":1137,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16520,"players":0,"title":"[DX]乙姫心で恋宮殿","utTitle":null,"artist":"lily white","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":1020,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":0,"level_id":4,"level":"未知等级","level_value":0.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":1025,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16521,"players":3,"title":"[宴]dear...","utTitle":null,"artist":"马场木实(高桥未奈美)/KOH","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":123,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"LeoP","romVersion":10000,"notes":{"total":573,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16525,"players":3,"title":"アネモネ","utTitle":null,"artist":"DUSTCELL","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":272,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":5,"level_id":0,"level":"5","level_value":5.0,"note_designer":"-","romVersion":10000,"notes":{"total":291,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":13,"level_id":1,"level":"10","level_value":10.0,"note_designer":"-","romVersion":10000,"notes":{"total":636,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":18,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"花里 みのり","romVersion":10000,"notes":{"total":1042,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Maple Liu","romVersion":10000,"notes":{"total":1155,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"haruka","romVersion":10000,"notes":{"total":1454,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16523,"players":4,"title":"[蛸]burn(Haocore Mix) (Daily天利 remix)","utTitle":null,"artist":"Daily天利 - NceS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"LemonTea","romVersion":10000,"notes":{"total":1249,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16524,"players":0,"title":"えれくとりっく・えんじぇぅ","utTitle":null,"artist":"giga","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"カラスショタ","romVersion":10000,"notes":{"total":957,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16528,"players":14,"title":"你看到的我","utTitle":null,"artist":"Tiktok DJ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":133,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"fuyuchan vs cheater","romVersion":10000,"notes":{"total":1328,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16529,"players":2,"title":"哈基米:Billie Jean","utTitle":null,"artist":"tukirin-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":117,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Rhythlame","romVersion":10000,"notes":{"total":572,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16527,"players":1,"title":"乙姫心で恋宮殿","utTitle":null,"artist":"lily white","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":5,"level_id":0,"level":"5","level_value":5.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":265,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":9,"level_id":1,"level":"8","level_value":8.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":483,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":15,"level_id":2,"level":"11","level_value":11.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":706,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":874,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":875,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16526,"players":1,"title":"ガールズ・イン・ザ・フロンティア","utTitle":null,"artist":"渋谷凛,早坂美玲,木村夏樹,小日向美穂,塩見周子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Ragna","romVersion":10000,"notes":{"total":544,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16533,"players":2,"title":"無意識レクイエム (cosmobsp rmx)","utTitle":null,"artist":"cosMo@暴走P(original arranged by 森羅万象)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":230,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"shironeko","romVersion":10000,"notes":{"total":1638,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16534,"players":6,"title":"素颜(MyGO)","utTitle":null,"artist":"许嵩/何曼婷 v s 马小花儿","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":95,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"刻于晴空玉衡星 vs 結月ゆかり","romVersion":10000,"notes":{"total":910,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16530,"players":0,"title":"山东车牌之歌","utTitle":null,"artist":"哎呦我滴妈","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":235,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":0,"level_id":0,"level":"未知等级","level_value":0.0,"note_designer":"鲁A鲁B鲁C鲁D鲁E鲁F鲁G","romVersion":10000,"notes":{"total":216,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16532,"players":6,"title":"我的好兄弟","utTitle":null,"artist":"高进/小沈阳","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":0,"level_id":3,"level":"未知等级","level_value":0.0,"note_designer":"GOODBRO","romVersion":10000,"notes":{"total":758,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16535,"players":0,"title":"美に入り彩を穿つ","utTitle":null,"artist":"小早川紗枝,塩見周子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":206,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Ragna","romVersion":10000,"notes":{"total":664,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16531,"players":7,"title":"影色舞","utTitle":null,"artist":"MyGO!!!!!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":166,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"はくこう","romVersion":10000,"notes":{"total":944,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16538,"players":1,"title":"雑踏、僕らの街(full ver.)","utTitle":null,"artist":"トゲナシトゲアリ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":171,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"AUR0RA","romVersion":10000,"notes":{"total":1510,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16536,"players":1,"title":"蝴蝶","utTitle":null,"artist":"瞿子千 ft. 洛天依","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":84,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"星露","romVersion":10000,"notes":{"total":704,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":19,"level_id":4,"level":"13","level_value":13.0,"note_designer":"星露","romVersion":10000,"notes":{"total":680,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16537,"players":6,"title":"难忘今宵","utTitle":null,"artist":"李谷一","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":112,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"店莓糖","romVersion":10000,"notes":{"total":205,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"羽山夜梨","romVersion":10000,"notes":{"total":242,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16539,"players":17,"title":"雑踏、僕らの街","utTitle":null,"artist":"トゲナシトゲアリ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":171,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":19,"level_id":2,"level":"13","level_value":13.0,"note_designer":"Clonata","romVersion":10000,"notes":{"total":1104,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Clonata","romVersion":10000,"notes":{"total":1601,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":1388,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16541,"players":0,"title":"オレンジサイダー","utTitle":null,"artist":"花p","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"CorgiPaw_K","romVersion":10000,"notes":{"total":899,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16540,"players":5,"title":"slic.hertz","utTitle":null,"artist":"-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Mirage.CHO","romVersion":10000,"notes":{"total":831,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16542,"players":3,"title":"一笑懸命","utTitle":null,"artist":"游助","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":138,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Hare","romVersion":10000,"notes":{"total":1501,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16543,"players":5,"title":"光焔のラテラルアーク","utTitle":null,"artist":"大国奏音","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"ChLoRiNe.","romVersion":10000,"notes":{"total":1405,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16544,"players":2,"title":"天天天国地獄国","utTitle":null,"artist":"Aiobahn +81&ななひら&P丸様","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"§αмцï","romVersion":10000,"notes":{"total":1217,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16545,"players":1,"title":"爷们要战斗","utTitle":null,"artist":"雪十郎","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"CH3COOL","romVersion":10000,"notes":{"total":460,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16546,"players":4,"title":"海狮","utTitle":null,"artist":"抽抽抽抽抽抽抽抽抽抽","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":0,"level_id":0,"level":"未知等级","level_value":0.0,"note_designer":"啊~~~~~~~~~~~~~~~~~~~","romVersion":10000,"notes":{"total":281,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16550,"players":0,"title":"Nobo -outflowing heart-","utTitle":null,"artist":"Se-U-Ra","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":189,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Nobo -outflowing heart-","romVersion":10000,"notes":{"total":915,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16547,"players":2,"title":"ギターと孤独と蒼い惑星","utTitle":null,"artist":"結束バンド","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"NaCl","romVersion":10000,"notes":{"total":1000,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16551,"players":0,"title":"少女綺想曲 ~Dream Battle~","utTitle":null,"artist":"ZUN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Smokevergreen 2025.8.19","romVersion":10000,"notes":{"total":1015,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16554,"players":7,"title":"βlαnoir","utTitle":null,"artist":"Aoi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":202,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Xzzzz","romVersion":10000,"notes":{"total":1052,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"TRG","romVersion":10000,"notes":{"total":1294,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2442,"long":false},{"id":16555,"players":1,"title":"Butterfly","utTitle":null,"artist":"Smile. DK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Syan_LBP","romVersion":10000,"notes":{"total":802,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16552,"players":3,"title":"コネクト","utTitle":null,"artist":"ClariS「魔法少女まどか☆マギカ」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"evergreen 2025.11.28","romVersion":10000,"notes":{"total":546,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16556,"players":5,"title":"dica dica","utTitle":null,"artist":"REMO-CON","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"acid acid","romVersion":10000,"notes":{"total":955,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16557,"players":8,"title":"[回]限りなく灰色へ","utTitle":null,"artist":"東雲 絵名","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":108,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"EinsTang","romVersion":10000,"notes":{"total":393,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"luvlily","romVersion":10000,"notes":{"total":527,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16563,"players":2,"title":"不如跳舞","utTitle":null,"artist":"陈慧琳","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Syan_LBP","romVersion":10000,"notes":{"total":817,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16559,"players":0,"title":"Lo-Fi-M","utTitle":null,"artist":"yaseta","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"拯救杯哈哈","romVersion":10000,"notes":{"total":725,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16560,"players":2,"title":"Restricted Access","utTitle":null,"artist":"Knighthood","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"官抄谱","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":4,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10000,"notes":{"total":217,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":8,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":10000,"notes":{"total":389,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":15,"level_id":2,"level":"11","level_value":11.0,"note_designer":"-","romVersion":10000,"notes":{"total":535,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"-","romVersion":10000,"notes":{"total":920,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16558,"players":16,"title":"I Wanna","utTitle":null,"artist":"静香(CV.長谷川育美)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"TRG","romVersion":10000,"notes":{"total":1037,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"Tina-II","romVersion":10000,"notes":{"total":1135,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2718,"long":false},{"id":16564,"players":0,"title":"胡蝶乃舞","utTitle":null,"artist":"Srav3R","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"官抄谱","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":4,"level_id":0,"level":"4","level_value":4.0,"note_designer":"-","romVersion":10000,"notes":{"total":206,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":8,"level_id":1,"level":"7+","level_value":7.7,"note_designer":"-","romVersion":10000,"notes":{"total":318,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":16,"level_id":2,"level":"11+","level_value":11.7,"note_designer":"-","romVersion":10000,"notes":{"total":526,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"-","romVersion":10000,"notes":{"total":832,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16561,"players":9,"title":"ムリムリ進化論","utTitle":null,"artist":"七音阿卡莉","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"HitoriV","romVersion":10000,"notes":{"total":629,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"HitoriV-Hikari","romVersion":10000,"notes":{"total":632,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16562,"players":1,"title":"샹하이 로맨스(上海之恋)","utTitle":null,"artist":"Orange Caramel","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":149,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"evergreen 2025.2.28","romVersion":10000,"notes":{"total":1121,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16565,"players":0,"title":"華爛漫 -Flowers-","utTitle":null,"artist":"TЁЯRA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"谱面-200号","romVersion":10000,"notes":{"total":602,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16566,"players":7,"title":"金达莱花","utTitle":null,"artist":"Dr. Peacock; D-Frek","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"haifeng","romVersion":10000,"notes":{"total":1035,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16567,"players":1,"title":"雪のエルフィンリート","utTitle":null,"artist":"桃園にな","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Fimbulvetr","romVersion":10000,"notes":{"total":1811,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"雪々","romVersion":10000,"notes":{"total":1674,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16570,"players":1,"title":"50000¥のSuperChat","utTitle":null,"artist":"YOSHI⭐NX","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":133,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":5,"level_id":3,"level":"5","level_value":5.0,"note_designer":"edhiroshi","romVersion":10000,"notes":{"total":244,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16569,"players":1,"title":"Name of oath","utTitle":null,"artist":"void (Mournfinale) feat. コツキミヤ (Gt. えば)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"LZU maimai TEAM 2025.10","romVersion":10000,"notes":{"total":1650,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":389,"long":false},{"id":16571,"players":1,"title":"Alb","utTitle":null,"artist":"Avans","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":140,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"鲈鱼","romVersion":10000,"notes":{"total":883,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16568,"players":1,"title":"零號車輛","utTitle":null,"artist":"seatrus","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"官抄谱","bpm":240,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":6,"level_id":0,"level":"6","level_value":6.0,"note_designer":"-","romVersion":10000,"notes":{"total":303,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"1":{"id":9,"level_id":1,"level":"8","level_value":8.0,"note_designer":"-","romVersion":10000,"notes":{"total":410,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"2":{"id":18,"level_id":2,"level":"12+","level_value":12.7,"note_designer":"-","romVersion":10000,"notes":{"total":656,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"-","romVersion":10000,"notes":{"total":1143,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16572,"players":0,"title":"Asphodelus","utTitle":null,"artist":"Ceui","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Kondou","romVersion":10000,"notes":{"total":572,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16573,"players":0,"title":"Bad Apple!!","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"NaOH","romVersion":10000,"notes":{"total":479,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16575,"players":0,"title":"Breaktime Funk","utTitle":null,"artist":"Matthew Robert Corbett,Michael Joseph Wilkie","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":173,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"man","romVersion":10000,"notes":{"total":484,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16574,"players":5,"title":"BOW AND ARROW","utTitle":null,"artist":"米津玄師","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ここまで、ここまで","romVersion":10000,"notes":{"total":439,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16576,"players":1,"title":"KOE2026 决赛乐曲","utTitle":null,"artist":"Ashrount vs. 打打だいず","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":300,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Sound of Silence","romVersion":10000,"notes":{"total":1564,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"-","romVersion":10000,"notes":{"total":1593,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16577,"players":6,"title":"LEVEL5-judgelight-","utTitle":null,"artist":"fripSide/TVアニメ「とある科学の超電磁砲」後期OPテーマ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":139,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Ragna","romVersion":10000,"notes":{"total":486,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16580,"players":6,"title":"Ripples of Past Reverie","utTitle":null,"artist":"HOYO-MiX & Cassie Wei","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":67,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"TRG","romVersion":10000,"notes":{"total":442,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16578,"players":0,"title":"Love's Oracle","utTitle":null,"artist":"佐咲紗花","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":42,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"白花可爱捏","romVersion":10000,"notes":{"total":386,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16579,"players":0,"title":"Polar Star","utTitle":null,"artist":"烏屋茶房","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"seele","romVersion":10000,"notes":{"total":574,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16581,"players":1,"title":"SnowMix♪","utTitle":null,"artist":"まらしぃ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"seele","romVersion":10000,"notes":{"total":1765,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16582,"players":4,"title":"Super Mario Bros. THEME","utTitle":null,"artist":"Nintendo","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":85,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"maimai 「FC」","romVersion":10000,"notes":{"total":109,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16583,"players":3,"title":"Tic! Tac! Toe!","utTitle":null,"artist":"TAK x Corbin","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MMFC7: Perfume of Jasmine","romVersion":10000,"notes":{"total":810,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16584,"players":0,"title":"Wish a Shooting Star","utTitle":null,"artist":"森羅万象","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"M,O: Holinality; ReM: Glowen","romVersion":10000,"notes":{"total":665,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"M,O: Holinality; ReM: Glowen","romVersion":10000,"notes":{"total":595,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16587,"players":4,"title":" オトメノ*ハートマーク","utTitle":null,"artist":" 歩サラ&杏花","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":174,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"桜コメ","romVersion":10000,"notes":{"total":668,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16586,"players":3,"title":"Zombies On Your Lawn","utTitle":null,"artist":"Laura Shigihara","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"the Zombie","romVersion":10000,"notes":{"total":640,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16585,"players":0,"title":"Witches night","utTitle":null,"artist":"Liz Triangle","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":154,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"マーホウショタ","romVersion":10000,"notes":{"total":822,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16588,"players":1,"title":"いつまでも一緒にいよう","utTitle":null,"artist":"三輪学","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":73,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":16,"level_id":3,"level":"11+","level_value":11.7,"note_designer":"酣梦于彼岸梦间","romVersion":10000,"notes":{"total":452,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16590,"players":1,"title":"ひぐらしのなく頃に","utTitle":null,"artist":"島みやえい子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":105,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"古手梨花","romVersion":10000,"notes":{"total":402,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16597,"players":0,"title":"リカバーデコレーション(android52 bootleg) - super anime groove 3d world","utTitle":null,"artist":"小野寺小咲","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":124,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"FLeVI","romVersion":10000,"notes":{"total":1210,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16596,"players":1,"title":"プレパレード","utTitle":null,"artist":"钉宫理恵、堀江由衣、喜多村英梨","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"luvlily","romVersion":10000,"notes":{"total":552,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16593,"players":0,"title":"コイセカイ","utTitle":null,"artist":"ClariS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"甜司康饼","romVersion":10000,"notes":{"total":520,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16594,"players":0,"title":"ハレルヤ☆エッサイム","utTitle":null,"artist":"富田美憂; 大西沙織; 大空直美; 花澤香菜","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"谁让人家是天使呢!","romVersion":10000,"notes":{"total":569,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16589,"players":3,"title":"だれかぬいてくれ","utTitle":null,"artist":"ぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬぬ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"潘潘ちゃん","romVersion":10000,"notes":{"total":1160,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16591,"players":3,"title":"アマオト","utTitle":null,"artist":"Duca","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":86,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":20,"level_id":2,"level":"13+","level_value":13.7,"note_designer":"rein","romVersion":10000,"notes":{"total":329,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"rein (MMFC)","romVersion":10000,"notes":{"total":341,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"rein (frayed.)","romVersion":10000,"notes":{"total":427,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16592,"players":0,"title":"オモイヨシノ","utTitle":null,"artist":"loos feat. 柊莉杏","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":22,"level_id":4,"level":"14+","level_value":14.7,"note_designer":"trivializer","romVersion":10000,"notes":{"total":1199,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16595,"players":1,"title":"ハレ晴レユカイ","utTitle":null,"artist":"平野綾, 茅原実里, 後藤邑子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"情報統合思念体","romVersion":10000,"notes":{"total":403,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16598,"players":1,"title":"一冊のアロー","utTitle":null,"artist":"櫻川めぐ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":153,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Kondou","romVersion":10000,"notes":{"total":592,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16599,"players":3,"title":"偶像に世界を委ねて ~ Idoratrize World","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"孤立無援が誂えた造形神","romVersion":10000,"notes":{"total":1047,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16601,"players":0,"title":"妖々跋扈 ~ Who done it!","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":155,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"东方赢了","romVersion":10000,"notes":{"total":829,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16603,"players":1,"title":"少女レイ","utTitle":null,"artist":"みきとP feat.初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"woxxow","romVersion":10000,"notes":{"total":1003,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16602,"players":1,"title":"妖魔夜行","utTitle":null,"artist":"PHOENIX Project","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Rotifera","romVersion":10000,"notes":{"total":977,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16604,"players":0,"title":"届かない恋(合)","utTitle":null,"artist":"冬馬和紗&小木曾雪菜","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"和泉千晶","romVersion":10000,"notes":{"total":928,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16605,"players":0,"title":"月に叢雲華に風(森羅万象Ver)","utTitle":null,"artist":"あやぽんず*/あよ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ホシノニャィン","romVersion":10000,"notes":{"total":480,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16600,"players":0,"title":"冒険でしょでしょ?","utTitle":null,"artist":"平野绫","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"シャミセン","romVersion":10000,"notes":{"total":790,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16606,"players":0,"title":"激突!美食赛跑[星之卡比SuperDX]","utTitle":null,"artist":"石川淳","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":187,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":13,"level_id":3,"level":"10","level_value":10.0,"note_designer":"ma-Ster","romVersion":10000,"notes":{"total":395,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16608,"players":2,"title":"第一天","utTitle":null,"artist":"F.I.R ✕ 孙燕姿 ✕ 五月天","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":176,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Sakurago","romVersion":10000,"notes":{"total":878,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16614,"players":1,"title":"~ 亡き王女の為のセプテット ~","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"红魔城公主","romVersion":10000,"notes":{"total":944,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16610,"players":0,"title":"红日","utTitle":null,"artist":"李克勤","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Cinno","romVersion":10000,"notes":{"total":715,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16612,"players":0,"title":"遠野幻想物語","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":141,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"哈基橙打完过后对着我一秒三连哈","romVersion":10000,"notes":{"total":643,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16609,"players":6,"title":"粛聖!!ロリ神レクイエム☆","utTitle":null,"artist":"しぐれうい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":165,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"NullZone","romVersion":10000,"notes":{"total":614,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16613,"players":2,"title":"雪は何色","utTitle":null,"artist":"Kotoha","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"GAHOU","romVersion":10000,"notes":{"total":564,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16611,"players":2,"title":"輪廻","utTitle":null,"artist":"山本美禰子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":179,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"クロ","romVersion":10000,"notes":{"total":560,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16607,"players":4,"title":"祠 / ある監視の視点","utTitle":null,"artist":"Feryquitous","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"FLeVI","romVersion":10000,"notes":{"total":2644,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16616,"players":0,"title":"Adrenaline!!!","utTitle":null,"artist":"TrySail","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Aza","romVersion":10000,"notes":{"total":481,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16617,"players":2,"title":"Androgynos (Full Phase)","utTitle":null,"artist":"WAiKURO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"ユキ","romVersion":10000,"notes":{"total":2128,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16615,"players":4,"title":"残酷な天使のテーゼ","utTitle":null,"artist":"高橋洋子","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":80,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"第三新基米哈","romVersion":10000,"notes":{"total":325,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16618,"players":13,"title":"APT.","utTitle":null,"artist":"Rosé & Bruno Mars","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":74,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"TRG: 習","romVersion":10000,"notes":{"total":932,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"TRG: 宴","romVersion":10000,"notes":{"total":1041,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16622,"players":1,"title":"[譜面差分]Define","utTitle":null,"artist":"Zekk","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"LTCalter","romVersion":10000,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16619,"players":4,"title":"Aragami","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":98,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"nano","romVersion":10000,"notes":{"total":1129,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":144,"long":false},{"id":16620,"players":3,"title":"Avantgarde","utTitle":null,"artist":"Raimukun","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ich bin ein Konservativer, ich erhalte den Fortschritt","romVersion":10000,"notes":{"total":1155,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16621,"players":1,"title":"Breakcore WTF!?","utTitle":null,"artist":"LeaF","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":250,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"来来来我问一下谁投的这个b歌呢宝宝我先问一下你觉得这个像歌吗这踏马就是鬼畜来的吧感觉我有一种写了一个otto音骂的谱然后交上来的感觉括号纯是为了凑字数对投曲人和曲师没有任何恶意谱师创作时非常享受玩的也非常开心就是不知道这谱能不能打反正我尽力削了谢谢大家谢谢大家ps这么长谱师名义是为了neta想到哪句唱那句我觉得趁机说一点话也行哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈","romVersion":10000,"notes":{"total":1008,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16624,"players":0,"title":"Hypersynthetic","utTitle":null,"artist":"Akira Complex","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":152,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"In_Cyan","romVersion":10000,"notes":{"total":888,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16623,"players":2,"title":"Higher","utTitle":null,"artist":"Tobu","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":130,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ホシノちゃん","romVersion":10000,"notes":{"total":612,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16626,"players":2,"title":"KOH2026 决赛曲目","utTitle":null,"artist":"????????","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"????????","romVersion":10000,"notes":{"total":1155,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16625,"players":0,"title":"I Wish You Were Mine","utTitle":null,"artist":"GALAXIKA, ELIN","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":138,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"paff@KuSA","romVersion":10000,"notes":{"total":931,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16628,"players":0,"title":"over the top","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":0,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"speckles","romVersion":10000,"notes":{"total":1043,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16630,"players":0,"title":"Running In The Dark","utTitle":null,"artist":"MONKEY MAJIK","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Originiums","romVersion":10000,"notes":{"total":398,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16627,"players":0,"title":"Like the gale","utTitle":null,"artist":"グラサンねこ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":182,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"321Jump#FF0000","romVersion":10000,"notes":{"total":941,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16632,"players":1,"title":"theyaremanycolors","utTitle":null,"artist":"Frums","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":120,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"FLeVI","romVersion":10000,"notes":{"total":1339,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16634,"players":0,"title":"[狂]花と、雪と、ドラムンベース。","utTitle":null,"artist":"kanone feat. せんざい","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":90,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"0":{"id":22,"level_id":0,"level":"14+","level_value":14.7,"note_designer":"lhg","romVersion":10000,"notes":{"total":685,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16629,"players":1,"title":"Parousia","utTitle":null,"artist":"xi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":158,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"もふもふウサギ","romVersion":10000,"notes":{"total":780,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":678,"long":false},{"id":16633,"players":0,"title":"[狂]Baddest","utTitle":null,"artist":"樋口楓","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":215,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Chalman_JK","romVersion":10000,"notes":{"total":2155,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16631,"players":0,"title":"Take Flight","utTitle":null,"artist":"Lindsey Stirling","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":70,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"TFgirls","romVersion":10000,"notes":{"total":852,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16636,"players":3,"title":"タイムカプセル","utTitle":null,"artist":"Sky Street","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Noise","romVersion":10000,"notes":{"total":1092,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16635,"players":1,"title":"タイムカプセル","utTitle":null,"artist":"Sky Street","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":185,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ebenholz","romVersion":10000,"notes":{"total":1268,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"Ebenholz","romVersion":10000,"notes":{"total":1396,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2187,"long":false},{"id":16637,"players":0,"title":"八月、某、月明かり","utTitle":null,"artist":"ヨルシカ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":220,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"KUPPY","romVersion":10000,"notes":{"total":1004,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16640,"players":1,"title":"春泥棒","utTitle":null,"artist":"ヨルシカ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"ぢくしー","romVersion":10000,"notes":{"total":656,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"4":{"id":20,"level_id":4,"level":"13+","level_value":13.7,"note_designer":"ぢくしー","romVersion":10000,"notes":{"total":670,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16638,"players":2,"title":"名前のない怪物","utTitle":null,"artist":"EGOIST/タカオカミズキ feat.結月ゆかり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":180,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Tail_R","romVersion":10000,"notes":{"total":1273,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16639,"players":3,"title":"我ら!ゴミ分別団","utTitle":null,"artist":"かてらざわ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":166,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"南うらい","romVersion":10000,"notes":{"total":700,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16642,"players":2,"title":"燐寸と緞帳","utTitle":null,"artist":"Juka_Box feat.綜花","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":152,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Eben_holz","romVersion":10000,"notes":{"total":900,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16641,"players":2,"title":"朧月夜","utTitle":null,"artist":"ナナツカゼ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":125,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ゆめさき","romVersion":10000,"notes":{"total":1015,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16643,"players":5,"title":"私は、わたしの事が好き。","utTitle":null,"artist":"HoneyWorks & かぐや(cv 夏吉ゆうこ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Promi","romVersion":10000,"notes":{"total":621,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16644,"players":0,"title":"Adrenaline!!!","utTitle":null,"artist":"TrySail","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":268,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"小古君","romVersion":10000,"notes":{"total":623,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16645,"players":2,"title":"Raimukun - Nyarlathotep's Dreamland","utTitle":null,"artist":"Raimukun","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":10000,"dxRomVersion":10000,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"IX","romVersion":10000,"notes":{"total":1415,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16646,"players":6,"title":"#1f1e33","utTitle":null,"artist":"かめりあ(EDP)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":181,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"#a2ab2a","romVersion":15302,"notes":{"total":1368,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16650,"players":4,"title":"Ex-Otogibanashi","utTitle":null,"artist":"ryo (supercell)/かぐや(cv.夏吉ゆうこ)/月見ヤチヨ(cv.早見沙織)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ayuri","romVersion":15302,"notes":{"total":766,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16654,"players":0,"title":"fortissimo-the ultimate crisis","utTitle":null,"artist":"fripside","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"请输入文本","romVersion":15302,"notes":{"total":619,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16653,"players":5,"title":"Flower Dance","utTitle":null,"artist":"DJ.Okawari","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"evergreen 20250716","romVersion":15302,"notes":{"total":754,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16651,"players":7,"title":"Ex-Otogibanashi (Anime ver.)","utTitle":null,"artist":"ryo (supercell); かぐや(cv.夏吉ゆうこ); 月見ヤチヨ(cv.早見沙織)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"LTCalter","romVersion":15302,"notes":{"total":530,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16652,"players":4,"title":"fairy stage","utTitle":null,"artist":"K2 SOUND","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":128,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"仙家军","romVersion":15302,"notes":{"total":723,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16648,"players":0,"title":"Bossa Gabba","utTitle":null,"artist":"ZAQUVA","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Levanting","romVersion":15302,"notes":{"total":975,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16647,"players":0,"title":"Bad Apple!! feat.nomico (Camellia's \"Bad Psy\" Remix)","utTitle":null,"artist":"かめりあ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"yksetuna","romVersion":15302,"notes":{"total":831,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16649,"players":0,"title":"Clover Day's (short ver.)","utTitle":null,"artist":"MANYO feat. 真理絵","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Airy_","romVersion":15302,"notes":{"total":527,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16656,"players":0,"title":"INFINITE SKY","utTitle":null,"artist":"KOTOKO","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"風が歌い、雲が奏で","romVersion":15302,"notes":{"total":624,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16655,"players":3,"title":"Fracture Ray","utTitle":null,"artist":"削除","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":100,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"$oyoRin","romVersion":15302,"notes":{"total":870,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":749,"long":false},{"id":16659,"players":1,"title":"LaVI-Bavellabion","utTitle":null,"artist":"SLAVE.V-V-R feat. 三木谷奈々","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":142,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"玉米的粉毛痴kkk","romVersion":15302,"notes":{"total":548,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16663,"players":1,"title":"Regrets and Dream","utTitle":null,"artist":"打打だいず","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":192,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"ccy","romVersion":15302,"notes":{"total":1101,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16661,"players":0,"title":"Narsissu Inst","utTitle":null,"artist":"Ebi","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":80,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"|ナルキッソス|","romVersion":15302,"notes":{"total":406,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16657,"players":0,"title":"irony","utTitle":null,"artist":"ClariS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":19,"level_id":4,"level":"13","level_value":13.0,"note_designer":"V_Y_♡","romVersion":15302,"notes":{"total":412,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16658,"players":7,"title":"KiLLKiSS","utTitle":null,"artist":"Ave Mujica","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"MYOU","romVersion":15302,"notes":{"total":656,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16665,"players":5,"title":"Reply","utTitle":null,"artist":"KZ/かぐや(cv.夏吉ゆうこ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ayuri","romVersion":15302,"notes":{"total":1549,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16660,"players":1,"title":"[耐]まっすぐ→→→ストリーム","utTitle":null,"artist":"日向千夏","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":184,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"FUNCOVOVOVOVOV","romVersion":15302,"notes":{"total":1745,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16664,"players":5,"title":"Remember","utTitle":null,"artist":"yuigot/月見ヤチヨ(cv.早見沙織)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":168,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Ayuri","romVersion":15302,"notes":{"total":1159,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16662,"players":7,"title":"ray","utTitle":null,"artist":"かぐや(cv.夏吉ゆうこ)/月見ヤチヨ(cv.早見沙織)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Zqu3ra","romVersion":15302,"notes":{"total":632,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16670,"players":1,"title":"「妖怪録、我し来にけり。」","utTitle":null,"artist":"TEZUKApo11o band ft. ランコ(豚乙女)+OFFICE萬田㈱","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":206,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"はくこう","romVersion":15302,"notes":{"total":962,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16667,"players":1,"title":"Techno Racer","utTitle":null,"artist":"Paul Bazooka","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":142,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Better Eater","romVersion":15302,"notes":{"total":831,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16668,"players":12,"title":"Xterfusion","utTitle":null,"artist":"REDALICE/t+pazolite","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":256,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"冰龙晨霜","romVersion":15302,"notes":{"total":1232,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16669,"players":6,"title":"⊇繧�レよ☆ス〒≠ナょ魔シ去❣❗⋆。:゚・*☽","utTitle":null,"artist":"佐藤乃子; 名前シレズ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":90,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"王耑","romVersion":15302,"notes":{"total":841,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16666,"players":2,"title":"Speculation","utTitle":null,"artist":"BEMANI Sound Team \"ZAQUVA\"","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Kanata","romVersion":15302,"notes":{"total":1029,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16674,"players":0,"title":"それは風のように","utTitle":null,"artist":"折户伸治","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":129,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Fujibayashi Kyou","romVersion":15302,"notes":{"total":663,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16673,"players":6,"title":"おべか","utTitle":null,"artist":"すりぃ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"なゆたん","romVersion":15302,"notes":{"total":616,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16671,"players":0,"title":"偽中国語","utTitle":null,"artist":"音無あふ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"4":{"id":21,"level_id":4,"level":"14","level_value":14.0,"note_designer":"小white君","romVersion":15302,"notes":{"total":982,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16672,"players":1,"title":"いざ、参ります","utTitle":null,"artist":"U-ske; 棗いつき","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":188,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"SeiKA","romVersion":15302,"notes":{"total":723,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16677,"players":0,"title":"オドループ","utTitle":null,"artist":"フレデリック","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":172,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Nayutan不喜欢不舞萌的夜晚","romVersion":15302,"notes":{"total":964,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16678,"players":0,"title":"グーテンベルクの科学世紀- (原曲-衛星カフェテラス)","utTitle":null,"artist":"minimum electric design","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"2":{"id":13,"level_id":2,"level":"10","level_value":10.0,"note_designer":"Tane","romVersion":15302,"notes":{"total":309,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Tane","romVersion":15302,"notes":{"total":568,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16676,"players":3,"title":"なぜ?謎?!ANSWER(TVサイズ)","utTitle":null,"artist":"-","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":166,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"moying","romVersion":15302,"notes":{"total":534,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16675,"players":5,"title":"ときめきポポロン♪","utTitle":null,"artist":"チマメ隊 「ご注文はうさぎですか?」より","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"只是想象了三小只蹦蹦跳跳的样子......","romVersion":15302,"notes":{"total":433,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16679,"players":5,"title":"テレパシ feat. 初音ミク","utTitle":null,"artist":"DECO*27","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":205,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"JDJDH","romVersion":15302,"notes":{"total":982,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16681,"players":8,"title":"トリックハート","utTitle":null,"artist":"MIMI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":150,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"ckbbbbb","romVersion":15302,"notes":{"total":733,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16680,"players":0,"title":"トキラキメキ","utTitle":null,"artist":"ヒヅキミウ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":133,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"小天使赛高","romVersion":15302,"notes":{"total":814,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16682,"players":1,"title":"ヒマワリの教会","utTitle":null,"artist":"はな","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":134,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Kondou","romVersion":15302,"notes":{"total":458,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16683,"players":2,"title":"フォールオブフォール ~ 秋めく滝","utTitle":null,"artist":"上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":163,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"MMFC12 as \"Sennrigann\"","romVersion":15302,"notes":{"total":809,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16684,"players":1,"title":"モア!ジャンプ!モア!","utTitle":null,"artist":" ナユタン星人 / 初音ミク / MORE MORE JUMP!「プロジェクトセカイ カラフルステージ! feat. 初音ミク」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":202,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"X","romVersion":15302,"notes":{"total":820,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16685,"players":2,"title":"リトル★サマーパーティー (feat. 実谷なな)","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"リトル★ウィンターパーティー","romVersion":15302,"notes":{"total":781,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16688,"players":0,"title":"幻想症候群","utTitle":null,"artist":"幽閉サテライト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"NaOH","romVersion":15302,"notes":{"total":505,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2412,"long":false},{"id":16687,"players":0,"title":"世界樹の約束","utTitle":null,"artist":"打打だいず","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":231,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"『世界はこんなに美しい』","romVersion":15302,"notes":{"total":904,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16686,"players":0,"title":"ワールドイズマイン","utTitle":null,"artist":"ryo(supercell)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Samuiiiiii","romVersion":15302,"notes":{"total":616,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":2343,"long":false},{"id":16689,"players":0,"title":"幽雅に咲かせ、墨染の桜 ~ Border of Life","utTitle":null,"artist":"黄昏フロンティア; 上海アリス幻樂団","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"NaOH","romVersion":15302,"notes":{"total":631,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16691,"players":2,"title":"敢测我的马","utTitle":null,"artist":"丁真","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":141,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"理塘珍珠","romVersion":15302,"notes":{"total":583,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16690,"players":3,"title":"我们都在用力地活着","utTitle":null,"artist":"who","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":132,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"五十鈴","romVersion":15302,"notes":{"total":184,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16692,"players":6,"title":"明日なき暴走!クラウンピースを追い詰めろ","utTitle":null,"artist":"IOSYS","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":135,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"NaOH","romVersion":15302,"notes":{"total":832,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16694,"players":1,"title":"星降る海","utTitle":null,"artist":"Aqu3ra/月見ヤチヨ(cv.早見沙織)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":101,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Zqu3ra","romVersion":15302,"notes":{"total":564,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16693,"players":1,"title":"明日散る運命なら","utTitle":null,"artist":"幽閉サテライト","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":145,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Renekton vs. woxxow","romVersion":15302,"notes":{"total":736,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16696,"players":4,"title":"気ままな天使たち","utTitle":null,"artist":"わたてん☆5/TVアニメ「私に天使が舞い降りた!」","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":126,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"?","romVersion":15302,"notes":{"total":460,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16695,"players":0,"title":"桜爛ロマンシア","utTitle":null,"artist":"KyoKa","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":148,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"風見 司","romVersion":15302,"notes":{"total":491,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16703,"players":4,"title":"私は、わたしの事が好き。","utTitle":null,"artist":"HoneyWorks/かぐや(cv.夏吉ゆうこ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":193,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"Ayuri","romVersion":15302,"notes":{"total":711,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16699,"players":0,"title":"混沌ブギ","utTitle":null,"artist":"jon-YAKITORY feat. 初音ミク","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":190,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Alix","romVersion":15302,"notes":{"total":897,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16700,"players":3,"title":"源流懐古","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":173,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"1":{"id":6,"level_id":1,"level":"6","level_value":6.0,"note_designer":"Tane","romVersion":15302,"notes":{"total":301,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false},"3":{"id":17,"level_id":3,"level":"12","level_value":12.0,"note_designer":"Tane","romVersion":15302,"notes":{"total":824,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16702,"players":4,"title":"瞬間、シンフォニー。","utTitle":null,"artist":"40mP/かぐや(cv.夏吉ゆうこ)","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"Ayuri","romVersion":15302,"notes":{"total":596,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16704,"players":0,"title":"秋風恋歌","utTitle":null,"artist":"DeZI:R","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":102,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"夜梨","romVersion":15302,"notes":{"total":756,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16705,"players":0,"title":"竹取オーバーナイトセンセーション covered by 夏吉ゆうこ","utTitle":null,"artist":"HoneyWorks","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":200,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Asyura","romVersion":15302,"notes":{"total":934,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16697,"players":1,"title":"水手","utTitle":null,"artist":"郑智化","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":96,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Yaegaki","romVersion":15302,"notes":{"total":867,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16701,"players":5,"title":"物凄いスペースシャトルでこいしが物凄いうた","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":175,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"flygon です","romVersion":15302,"notes":{"total":836,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16706,"players":6,"title":"花の塔","utTitle":null,"artist":"さユり","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"JDJDH","romVersion":15302,"notes":{"total":536,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16698,"players":0,"title":"永遠に咲く花","utTitle":null,"artist":"AiRI","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":95,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"Q","romVersion":15302,"notes":{"total":436,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16710,"players":4,"title":"QQ","utTitle":null,"artist":"BEMANI Sound Team “PHQUASE & ZAQUVA”","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":199,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":22,"level_id":3,"level":"14+","level_value":14.7,"note_designer":"Tan5qi & chara","romVersion":15302,"notes":{"total":1020,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16711,"players":4,"title":"なぜ?謎?!ANSWER","utTitle":null,"artist":"名探偵プリキュア!","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":166,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":18,"level_id":3,"level":"12+","level_value":12.7,"note_designer":"Polo","romVersion":15302,"notes":{"total":498,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16708,"players":2,"title":"跳舞机","utTitle":null,"artist":"方特动漫","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":162,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":20,"level_id":3,"level":"13+","level_value":13.7,"note_designer":"呆尼思铲","romVersion":15302,"notes":{"total":319,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16709,"players":0,"title":"青い空のカミュ","utTitle":null,"artist":"霜月はるか; BLUE DOOR RECORD; ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":77,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"萤&燐","romVersion":15302,"notes":{"total":462,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16712,"players":3,"title":"まっしろな雪 (feat. 水瀬ましろ)","utTitle":null,"artist":"Halozy","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":170,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":21,"level_id":3,"level":"14","level_value":14.0,"note_designer":"differ","romVersion":15302,"notes":{"total":894,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false},{"id":16707,"players":0,"title":"解独剤","utTitle":null,"artist":"黒うさぎ","albums":null,"hasDx":true,"hasSd":false,"hasUt":false,"genre":"自制谱-25年冬","bpm":160,"releaseDate":"Ver1.00.00","from":"Mai2Link自制谱","dxfrom":null,"cn":false,"jp":false,"m2l":true,"firstRomVersion":15302,"dxRomVersion":15302,"sdRomVersion":0,"utRomVersion":0,"dx":{"3":{"id":19,"level_id":3,"level":"13","level_value":13.0,"note_designer":"raIny","romVersion":15302,"notes":{"total":658,"tap":0,"hold":0,"slide":0,"touch":0,"break_":0},"notesPath":null,"dx":true,"sd":false,"ot":false}},"sd":{},"ut":{},"aboutChu_id":0,"long":false}] \ No newline at end of file diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..9ab56f9 --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:unionapp/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d GIT binary patch literal 5594 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 X>c!)3PgKfL&lX^$Z>Cpu&6)6jvi^Z! literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e GIT binary patch literal 20998 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 MPgg&ebxsLQ025IeI{*Lx literal 0 HcmV?d00001 diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..afcc331 --- /dev/null +++ b/web/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + unionapp + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..0cf1436 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "unionapp", + "short_name": "unionapp", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "mai chu app", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/windows/.gitignore b/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt new file mode 100644 index 0000000..f8bd566 --- /dev/null +++ b/windows/CMakeLists.txt @@ -0,0 +1,108 @@ +# Project-level configuration. +cmake_minimum_required(VERSION 3.14) +project(unionapp LANGUAGES CXX) + +# The name of the executable created for the application. Change this to change +# the on-disk name of your application. +set(BINARY_NAME "unionapp") + +# Explicitly opt in to modern CMake behaviors to avoid warnings with recent +# versions of CMake. +cmake_policy(VERSION 3.14...3.25) + +# Define build configuration option. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() +# Define settings for the Profile build mode. +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +# +# Be cautious about adding new options here, as plugins use this function by +# default. In most cases, you should add new options to specific targets instead +# of modifying this function. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +# Flutter library and tool build rules. +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build; see runner/CMakeLists.txt. +add_subdirectory("runner") + + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Copy the native assets provided by the build.dart from all packages. +set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/windows/") +install(DIRECTORY "${NATIVE_ASSETS_DIR}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..903f489 --- /dev/null +++ b/windows/flutter/CMakeLists.txt @@ -0,0 +1,109 @@ +# This file controls Flutter-level build steps. It should not be edited. +cmake_minimum_required(VERSION 3.14) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# Set fallback configurations for older versions of the flutter tool. +if (NOT DEFINED FLUTTER_TARGET_PLATFORM) + set(FLUTTER_TARGET_PLATFORM "windows-x64") +endif() + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + ${FLUTTER_TARGET_PLATFORM} $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..cf2eeb8 --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,20 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include +#include +#include + +void RegisterPlugins(flutter::PluginRegistry* registry) { + GeolocatorWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("GeolocatorWindows")); + SharePlusWindowsPluginCApiRegisterWithRegistrar( + registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi")); + UrlLauncherWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("UrlLauncherWindows")); +} diff --git a/windows/flutter/generated_plugin_registrant.h b/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..131f8eb --- /dev/null +++ b/windows/flutter/generated_plugins.cmake @@ -0,0 +1,27 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + geolocator_windows + share_plus + url_launcher_windows +) + +list(APPEND FLUTTER_FFI_PLUGIN_LIST + jni +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) + +foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) +endforeach(ffi_plugin) diff --git a/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..394917c --- /dev/null +++ b/windows/runner/CMakeLists.txt @@ -0,0 +1,40 @@ +cmake_minimum_required(VERSION 3.14) +project(runner LANGUAGES CXX) + +# Define the application target. To change its name, change BINARY_NAME in the +# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer +# work. +# +# Any new source files that you add to the application should be added here. +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) + +# Apply the standard set of build settings. This can be removed for applications +# that need different build settings. +apply_standard_settings(${BINARY_NAME}) + +# Add preprocessor definitions for the build version. +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}") +target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}") + +# Disable Windows macros that collide with C++ standard library functions. +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") + +# Add dependency libraries and include directories. Add any application-specific +# dependencies here. +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib") +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") + +# Run the Flutter tool portions of the build. This must not be removed. +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc new file mode 100644 index 0000000..974fa90 --- /dev/null +++ b/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD) +#define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD +#else +#define VERSION_AS_NUMBER 1,0,0,0 +#endif + +#if defined(FLUTTER_VERSION) +#define VERSION_AS_STRING FLUTTER_VERSION +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "org.ast" "\0" + VALUE "FileDescription", "unionapp" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "unionapp" "\0" + VALUE "LegalCopyright", "Copyright (C) 2026 org.ast. All rights reserved." "\0" + VALUE "OriginalFilename", "unionapp.exe" "\0" + VALUE "ProductName", "unionapp" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/windows/runner/flutter_window.cpp b/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..955ee30 --- /dev/null +++ b/windows/runner/flutter_window.cpp @@ -0,0 +1,71 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + + flutter_controller_->engine()->SetNextFrameCallback([&]() { + this->Show(); + }); + + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + flutter_controller_->ForceRedraw(); + + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/windows/runner/flutter_window.h b/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp new file mode 100644 index 0000000..615ba9b --- /dev/null +++ b/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.Create(L"unionapp", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/windows/runner/resource.h b/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/windows/runner/resources/app_icon.ico b/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000000000000000000000000000000000000..c04e20caf6370ebb9253ad831cc31de4a9c965f6 GIT binary patch literal 33772 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 literal 0 HcmV?d00001 diff --git a/windows/runner/runner.exe.manifest b/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..153653e --- /dev/null +++ b/windows/runner/runner.exe.manifest @@ -0,0 +1,14 @@ + + + + + PerMonitorV2 + + + + + + + + + diff --git a/windows/runner/utils.cpp b/windows/runner/utils.cpp new file mode 100644 index 0000000..3a0b465 --- /dev/null +++ b/windows/runner/utils.cpp @@ -0,0 +1,65 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + unsigned int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr) + -1; // remove the trailing null character + int input_length = (int)wcslen(utf16_string); + std::string utf8_string; + if (target_length == 0 || target_length > utf8_string.max_size()) { + return utf8_string; + } + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + input_length, utf8_string.data(), target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/windows/runner/utils.h b/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/windows/runner/win32_window.cpp b/windows/runner/win32_window.cpp new file mode 100644 index 0000000..60608d0 --- /dev/null +++ b/windows/runner/win32_window.cpp @@ -0,0 +1,288 @@ +#include "win32_window.h" + +#include +#include + +#include "resource.h" + +namespace { + +/// Window attribute that enables dark mode window decorations. +/// +/// Redefined in case the developer's machine has a Windows SDK older than +/// version 10.0.22000.0. +/// See: https://docs.microsoft.com/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute +#ifndef DWMWA_USE_IMMERSIVE_DARK_MODE +#define DWMWA_USE_IMMERSIVE_DARK_MODE 20 +#endif + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +/// Registry key for app theme preference. +/// +/// A value of 0 indicates apps should use dark mode. A non-zero or missing +/// value indicates apps should use light mode. +constexpr const wchar_t kGetPreferredBrightnessRegKey[] = + L"Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize"; +constexpr const wchar_t kGetPreferredBrightnessRegValue[] = L"AppsUseLightTheme"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + } + FreeLibrary(user32_module); +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registrar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::Create(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + UpdateTheme(window); + + return OnCreate(); +} + +bool Win32Window::Show() { + return ShowWindow(window_handle_, SW_SHOWNORMAL); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + + case WM_DWMCOLORIZATIONCOLORCHANGED: + UpdateTheme(hwnd); + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} + +void Win32Window::UpdateTheme(HWND const window) { + DWORD light_mode; + DWORD light_mode_size = sizeof(light_mode); + LSTATUS result = RegGetValue(HKEY_CURRENT_USER, kGetPreferredBrightnessRegKey, + kGetPreferredBrightnessRegValue, + RRF_RT_REG_DWORD, nullptr, &light_mode, + &light_mode_size); + + if (result == ERROR_SUCCESS) { + BOOL enable_dark_mode = light_mode == 0; + DwmSetWindowAttribute(window, DWMWA_USE_IMMERSIVE_DARK_MODE, + &enable_dark_mode, sizeof(enable_dark_mode)); + } +} diff --git a/windows/runner/win32_window.h b/windows/runner/win32_window.h new file mode 100644 index 0000000..e901dde --- /dev/null +++ b/windows/runner/win32_window.h @@ -0,0 +1,102 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates a win32 window with |title| that is positioned and sized using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size this function will scale the inputted width and height as + // as appropriate for the default monitor. The window is invisible until + // |Show| is called. Returns true if the window was created successfully. + bool Create(const std::wstring& title, const Point& origin, const Size& size); + + // Show the current window. Returns true if the window was successfully shown. + bool Show(); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + // Update the window frame's theme to match the system theme. + static void UpdateTheme(HWND const window); + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_