├── generator ├── .gitignore ├── bin │ └── generator.dart ├── pubspec.yaml ├── analysis_options.yaml ├── lib │ └── generator.dart └── pubspec.lock ├── README.md ├── .github ├── workflows │ ├── stale.yml │ ├── index-generator.yml │ ├── compress-json.yml │ ├── create-nong-comment.yml │ ├── sfh-json.yml │ └── on-comment.yml ├── generate-nong-issue-json.bash └── ISSUE_TEMPLATE │ └── add-nong-song.yml ├── LICENSE └── official.json /generator/.gitignore: -------------------------------------------------------------------------------- 1 | # https://dart.dev/guides/libraries/private-files 2 | # Created by `dart pub` 3 | .dart_tool/ 4 | -------------------------------------------------------------------------------- /generator/bin/generator.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:generator/generator.dart'; 4 | 5 | void main(List arguments) async { 6 | await jsonToIndexFile( 7 | File('../sfh-index.min.json'), 8 | await genSFHIndex(), 9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /generator/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: generator 2 | description: A sample command-line application. 3 | version: 1.0.0 4 | # repository: https://github.com/my_org/my_repo 5 | 6 | environment: 7 | sdk: ^3.4.3 8 | 9 | # Add regular dependencies here. 10 | dependencies: 11 | http: ^1.2.2 12 | uuid: ^4.4.2 13 | # path: ^1.8.0 14 | 15 | dev_dependencies: 16 | lints: ^3.0.0 17 | test: ^1.24.0 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Auto Nong Indexes 2 | My indexes for the GD Mod Auto Nong. 3 | 4 | #### Get the indexes in this repo: 5 | - `https://cdn.jsdelivr.net/gh/FlafyDev/auto-nong-indexes@dist/official.json.gz` 6 | - `https://cdn.jsdelivr.net/gh/FlafyDev/auto-nong-indexes@dist/sfh-yt.json.gz` 7 | - `https://cdn.jsdelivr.net/gh/FlafyDev/auto-nong-indexes@dist/sfh-rooot.json.gz` 8 | - `https://cdn.jsdelivr.net/gh/FlafyDev/auto-nong-indexes@dist/sfh-pingusmc.json.gz` 9 | 10 | ###### If the indexes are not up to date with the `dist` branch, use [this to update them](https://www.jsdelivr.com/tools/purge). 11 | 12 | 13 | ## Adding 14 | To add a NONG song to the official index PR it to `official.json`. 15 | Or you can add it to SFH and eventually it will be added to the SFH index. 16 | 17 | SFH index updates daily. 18 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: Close inactive issues 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: "30 1 * * *" 6 | 7 | jobs: 8 | close-issues: 9 | runs-on: ubuntu-latest 10 | permissions: 11 | issues: write 12 | pull-requests: write 13 | steps: 14 | - uses: actions/stale@v5 15 | with: 16 | days-before-issue-stale: 14 17 | days-before-issue-close: 7 18 | stale-issue-label: "stale" 19 | operations-per-run: 1500 20 | stale-issue-message: "This submission is stale because it has been open for 14 days with no activity. If it is still relevant, please leave a comment and we will reopen it." 21 | close-issue-message: "This submission was closed because it has been inactive for 7 days since being marked as stale. If this is still relevant, please resubmit." 22 | days-before-pr-stale: -1 23 | days-before-pr-close: -1 24 | repo-token: ${{ secrets.GITHUB_TOKEN }} 25 | 26 | -------------------------------------------------------------------------------- /.github/generate-nong-issue-json.bash: -------------------------------------------------------------------------------- 1 | resf="${HOME}/issue-parser-result.json" # Form result file for easy access 2 | 3 | case $(jq -r .source "$resf") in 4 | "Youtube") 5 | yt_id=$(jq -r .\"youtube-link\" "$resf" | grep -oP '(?<=youtu\.be/|v=|\/|^)[^&?/]+' | tail -1) 6 | jq '{ 7 | name: .["song-name"], 8 | artist: .["artist-name"], 9 | source: "youtube", 10 | startOffset: (.["start-offset"] // "0" | tonumber? // 0), 11 | "yt-id": "'"$yt_id"'", 12 | songs: [(.["song-id"] | tonumber)] 13 | }' "$resf" > result.json 14 | cat result.json 15 | ;; 16 | "Direct file download") 17 | jq '{ 18 | name: .["song-name"], 19 | artist: .["artist-name"], 20 | source: "host", 21 | startOffset: (.["start-offset"] // "0" | tonumber? // 0), 22 | url: .["direct-link"], 23 | songs: [(.["song-id"] | tonumber)] 24 | }' "$resf" > result.json 25 | ;; 26 | *) 27 | echo "Invalid source" 28 | exit 1 29 | ;; 30 | esac 31 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Flafy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /generator/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | # This file configures the static analysis results for your project (errors, 2 | # warnings, and lints). 3 | # 4 | # This enables the 'recommended' set of lints from `package:lints`. 5 | # This set helps identify many issues that may lead to problems when running 6 | # or consuming Dart code, and enforces writing Dart using a single, idiomatic 7 | # style and format. 8 | # 9 | # If you want a smaller set of lints you can change this to specify 10 | # 'package:lints/core.yaml'. These are just the most critical lints 11 | # (the recommended set includes the core lints). 12 | # The core lints are also what is used by pub.dev for scoring packages. 13 | 14 | include: package:lints/recommended.yaml 15 | 16 | # Uncomment the following section to specify additional rules. 17 | 18 | # linter: 19 | # rules: 20 | # - camel_case_types 21 | 22 | # analyzer: 23 | # exclude: 24 | # - path/to/excluded/files/** 25 | 26 | # For more information about the core and recommended set of lints, see 27 | # https://dart.dev/go/core-lints 28 | 29 | # For additional information about configuring this file, see 30 | # https://dart.dev/guides/language/analysis-options 31 | -------------------------------------------------------------------------------- /.github/workflows/index-generator.yml: -------------------------------------------------------------------------------- 1 | name: Update SFH Index 2 | 3 | on: 4 | schedule: 5 | - cron: '0 * * * *' 6 | workflow_dispatch: 7 | 8 | jobs: 9 | dart-generator-job: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Checkout branch v2 14 | uses: actions/checkout@v3 15 | with: 16 | ref: v2 17 | 18 | - name: Set up Dart 19 | uses: dart-lang/setup-dart@v1 20 | with: 21 | sdk: 3.5.3 22 | 23 | - name: Run the Dart generator 24 | run: | 25 | git fetch origin main --depth 1 26 | git checkout origin/main -- generator 27 | cd generator 28 | dart pub get --enforce-lockfile 29 | dart run bin/generator.dart 30 | cd .. 31 | 32 | - name: Commit and push changes 33 | run: | 34 | git config --local user.name "github-actions[bot]" 35 | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" 36 | git restore --staged . 37 | git add sfh-index.min.json 38 | git diff-index --quiet HEAD || git commit -m "chore: update SFH index" 39 | git push origin v2 40 | -------------------------------------------------------------------------------- /.github/workflows/compress-json.yml: -------------------------------------------------------------------------------- 1 | name: Compress JSON Files 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | workflow_dispatch: # Manually trigger workflow 8 | 9 | jobs: 10 | compress-json: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Debounce 30 seconds 15 | uses: zachary95/github-actions-debounce@v0.1.0 16 | with: 17 | wait: 1 18 | 19 | - name: Checkout repository 20 | uses: actions/checkout@v2 21 | 22 | - name: Compress JSON files and push to separate branch 23 | if: steps.check-commits.outputs.NEW_COMMITS == ${{ github.sha }} 24 | run: | 25 | git config user.name "GitHub Actions Bot" 26 | git config user.email "<>" 27 | git fetch origin 28 | git checkout origin/dist 29 | git checkout -b dist-edit 30 | git rm -r . || true 31 | git checkout main -- '*.json' 32 | git checkout origin/dist -- 'sfh-rooot.json.gz' || true 33 | git checkout origin/dist -- 'sfh-pingusmc.json.gz' || true 34 | git checkout origin/dist -- 'sfh-yt.json.gz' || true 35 | git checkout origin/dist -- 'sfh.json.gz' || true 36 | find . -name "*.json" -exec gzip {} \; 37 | git add . 38 | git commit --allow-empty -m "update dist to json at $(git log --pretty=format:"%h" -n 1)" 39 | git push origin dist-edit:dist 40 | 41 | -------------------------------------------------------------------------------- /.github/workflows/create-nong-comment.yml: -------------------------------------------------------------------------------- 1 | name: Nong Issue Message 2 | 3 | on: 4 | issues: 5 | types: [opened, edited] 6 | 7 | jobs: 8 | create-nong-comment: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | # - name: Debounce 1 minute 13 | # uses: zachary95/github-actions-debounce 14 | # with: 15 | # wait: 60 16 | 17 | - name: Checkout code 18 | uses: actions/checkout@v4 19 | 20 | - uses: stefanbuck/github-issue-parser@v3 21 | id: issue-parser 22 | with: 23 | template-path: .github/ISSUE_TEMPLATE/add-nong-song.yml 24 | 25 | - name: Evaluate Issue 26 | id: evaluate-issue 27 | run: ./.github/generate-nong-issue-json.bash 28 | 29 | - name: Generate Issue Message 30 | id: generate-issue-message 31 | run: | 32 | cat > body.md << EOF 33 | Thanks for contributing! 34 | Someone will soon review your request. 35 | 36 | Here is the JSON result for the reviewer: 37 | \`\`\`json 38 | $(cat result.json) 39 | \`\`\` 40 | To accept the request, a reviewer needs to write "accept". 41 | EOF 42 | 43 | - name: Generate Token 44 | uses: wow-actions/use-app-token@v2 45 | id: generate_token 46 | with: 47 | app_id: ${{ secrets.APP_ID }} 48 | private_key: ${{ secrets.APP_PRIVATE_KEY }} 49 | 50 | - name: Find Comment 51 | uses: peter-evans/find-comment@v3 52 | id: find-comment 53 | with: 54 | issue-number: ${{ github.event.issue.number }} 55 | comment-author: 'auto-nong[bot]' 56 | body-includes: Thanks for contributing 57 | 58 | - if: steps.find-comment.outputs.comment-id != '' 59 | uses: actions/github-script@v6 60 | with: 61 | github-token: ${{ steps.generate_token.outputs.BOT_TOKEN }} 62 | script: | 63 | github.rest.issues.deleteComment({ 64 | owner: context.repo.owner, 65 | repo: context.repo.repo, 66 | comment_id: ${{ steps.find-comment.outputs.comment-id }} 67 | }) 68 | 69 | - name: Create comment 70 | uses: peter-evans/create-or-update-comment@v4 71 | with: 72 | issue-number: ${{ github.event.issue.number }} 73 | body-path: body.md 74 | token: ${{ steps.generate_token.outputs.BOT_TOKEN }} 75 | -------------------------------------------------------------------------------- /.github/workflows/sfh-json.yml: -------------------------------------------------------------------------------- 1 | name: Generate SFH JSON Files 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' # daily 6 | workflow_dispatch: # Manually trigger workflow 7 | 8 | jobs: 9 | compress-json: 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v2 15 | 16 | - name: Compress JSON files and push to separate branch 17 | if: steps.check-commits.outputs.NEW_COMMITS == ${{ github.sha }} 18 | run: | 19 | git config user.name "GitHub Actions Bot" 20 | git config user.email "<>" 21 | git fetch origin 22 | git checkout origin/dist 23 | git checkout -b dist-edit 24 | json="$(curl https://api.songfilehub.com/songs)" 25 | echo "$json" | jq -c '[.[] | select(try(.songID | tonumber | . != null)) | select(.songURL | contains("youtu.be") or contains("youtube.com")) | {name: (.songName | if contains(" - ") then split(" - ")[1] else . end), artist: (.songName | if contains(" - ") then split(" - ")[0] else "" end), songs: [.songID | tonumber], "yt-id": .songURL | capture("(youtu.be/|v=)(?[^&?/]+)") | .id, source: "youtube"}]' | gzip > sfh-yt.json.gz 26 | echo "$json" | jq -c '[.[] | select(try(.songID | tonumber | . != null)) | {name: (.songName | if contains(" - ") then split(" - ")[1] else . end), artist: (.songName | if contains(" - ") then split(" - ")[0] else "" end), songs: [.songID | tonumber], url: "https://api.songfilehub.com/song/\(._id)?download=true", source: "host"}]' | gzip > sfh.json.gz 27 | echo "$json" | jq -c '[.[] | select(try(.songID | tonumber | . != null)) | {name: (.songName | if contains(" - ") then split(" - ")[1] else . end), artist: (.songName | if contains(" - ") then split(" - ")[0] else "" end), songs: [.songID | tonumber], url: "https://cdn-sfh.rooot.gay/\(._id).mp3", source: "host"}]' | gzip > sfh-rooot.json.gz 28 | echo "$json" | jq -c '[.[] | select(try(.songID | tonumber | . != null)) | {name: (.songName | if contains(" - ") then split(" - ")[1] else . end), artist: (.songName | if contains(" - ") then split(" - ")[0] else "" end), songs: [.songID | tonumber], url: "https://cdn-sfh.pingusmc.org/\(._id).mp3", source: "host"}]' | gzip > sfh-pingusmc.json.gz 29 | git add . 30 | git commit --allow-empty -m "update SFH dist" 31 | git push origin dist-edit:dist 32 | 33 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-nong-song.yml: -------------------------------------------------------------------------------- 1 | name: Add Nong Song 2 | description: Add a Nong song to Auto Nong. 3 | title: "Add Nong Song: " 4 | labels: ["nong-addition", "official-addition"] 5 | body: 6 | - type: input 7 | id: song-name 8 | attributes: 9 | label: Song Name 10 | description: What is the name of the song? 11 | placeholder: ex. Lost (XVA Remix) 12 | validations: 13 | required: true 14 | - type: input 15 | id: artist-name 16 | attributes: 17 | label: Artist Name 18 | description: Who is the artist of the song? 19 | placeholder: ex. CRIM3S 20 | validations: 21 | required: true 22 | - type: dropdown 23 | id: source 24 | attributes: 25 | label: Source 26 | description: Where should the song be sourced from? 27 | options: 28 | - Youtube 29 | - Direct file download 30 | default: 0 31 | validations: 32 | required: true 33 | - type: input 34 | id: youtube-link 35 | attributes: 36 | label: Youtube Link 37 | description: If you chose Youtube, what is the URL of the video? 38 | placeholder: Ex. https://www.youtube.com/watch?v=VZXeoUPPFOY 39 | - type: input 40 | id: direct-link 41 | attributes: 42 | label: Direct File Link 43 | description: If you chose Direct file download, what is the URL of the file? Must be a link to a proper CDN, Not Google Drive, Dropbox or MediaFire. 44 | placeholder: Ex. https://www.example.com/song.mp3 45 | - type: input 46 | id: song-id 47 | attributes: 48 | label: Song ID 49 | description: 'Which song ID should the Nong song replace in Geometry Dash? ' 50 | placeholder: Ex. 945695 51 | validations: 52 | required: true 53 | - type: input 54 | id: start-offset 55 | attributes: 56 | label: Start Offset [ms] 57 | description: What is the start offset of the song in milliseconds? 58 | placeholder: Ex. 0 59 | validations: 60 | required: false 61 | - type: textarea 62 | id: extra 63 | attributes: 64 | label: Extra 65 | description: Anything else you would like to add? For example, levels that use that song. 66 | placeholder: Ex. Used in the level "Slaughterhouse" - 27690100 67 | validations: 68 | required: false 69 | - type: markdown 70 | attributes: 71 | value: Thanks for contributing songs! 72 | 73 | -------------------------------------------------------------------------------- /.github/workflows/on-comment.yml: -------------------------------------------------------------------------------- 1 | name: On Comment 2 | 3 | on: 4 | issue_comment: 5 | types: [created] 6 | 7 | jobs: 8 | on-comment: 9 | runs-on: ubuntu-latest 10 | outputs: 11 | add-nong: ${{ steps.check-comment.outputs.add-nong }} 12 | reject: ${{ steps.check-comment.outputs.reject }} 13 | authenticated: ${{ steps.check-comment.outputs.authenticated }} 14 | reviewer: ${{ steps.check-comment.outputs.reviewer }} 15 | steps: 16 | - name: Check Comment 17 | id: check-comment 18 | run: | 19 | users=("FlafyDev" "Daepicgdplayer" "elnexreal" "SpuckwasserDE" "AlwaysJolly" "IMGer4" "vsaucing" "LousyBook-01" "OM3GA6400" "neprao" "Lostconscious" "gdhpsk" "M336G" "Cosmo304" "comicsteel") 20 | 21 | for user in "${users[@]}"; do 22 | if [ "$(jq -r .comment.user.login $GITHUB_EVENT_PATH)" = "$user" ]; then 23 | echo "authenticated=true" >> $GITHUB_OUTPUT 24 | echo "reviewer=$(jq -r .comment.user.login $GITHUB_EVENT_PATH) <$(jq -r .comment.user.id $GITHUB_EVENT_PATH)+$(jq -r .comment.user.login $GITHUB_EVENT_PATH)@users.noreply.github.com>" >> $GITHUB_OUTPUT 25 | fi 26 | done 27 | 28 | comment_body=$(jq -r .comment.body "$GITHUB_EVENT_PATH") 29 | 30 | if echo "$comment_body" | grep -q '^accept'; then 31 | echo "add-nong=true" >> "$GITHUB_OUTPUT" 32 | fi 33 | 34 | if echo "$comment_body" | grep -q '^reject'; then 35 | echo "reject=true" >> "$GITHUB_OUTPUT" 36 | fi 37 | 38 | on-comment-reject-nong: 39 | runs-on: ubuntu-latest 40 | needs: on-comment 41 | if: needs.on-comment.outputs.authenticated == 'true' && needs.on-comment.outputs.reject == 'true' 42 | steps: 43 | - uses: ahmadnassri/action-workflow-queue@v1 44 | 45 | - name: Checkout Code 46 | uses: actions/checkout@v4 47 | 48 | - name: Generate Token 49 | uses: wow-actions/use-app-token@v2 50 | id: generate_token 51 | with: 52 | app_id: ${{ secrets.APP_ID }} 53 | private_key: ${{ secrets.APP_PRIVATE_KEY }} 54 | 55 | - name: Close Issue 56 | run: gh issue close ${{ github.event.issue.number }} --reason "not planned" 57 | env: 58 | GH_TOKEN: ${{ steps.generate_token.outputs.BOT_TOKEN }} 59 | 60 | on-comment-adding-nong: 61 | runs-on: ubuntu-latest 62 | needs: on-comment 63 | if: needs.on-comment.outputs.authenticated == 'true' && needs.on-comment.outputs.add-nong == 'true' 64 | steps: 65 | - uses: ahmadnassri/action-workflow-queue@v1 66 | 67 | - name: Generate Token 68 | uses: wow-actions/use-app-token@v2 69 | id: generate_token 70 | with: 71 | app_id: ${{ secrets.APP_ID }} 72 | private_key: ${{ secrets.APP_PRIVATE_KEY }} 73 | 74 | - name: Checkout Code 75 | uses: actions/checkout@v4 76 | with: 77 | token: ${{ steps.generate_token.outputs.BOT_TOKEN }} 78 | 79 | - uses: stefanbuck/github-issue-parser@v3 80 | id: issue-parser 81 | with: 82 | template-path: .github/ISSUE_TEMPLATE/add-nong-song.yml 83 | 84 | - name: Evaluate Issue 85 | id: evaluate-issue 86 | run: ./.github/generate-nong-issue-json.bash 87 | 88 | - name: Generate Issue Message And Commit Details 89 | id: generate-details 90 | run: | 91 | echo "author_name=$(jq -r .issue.user.login $GITHUB_EVENT_PATH)" >> $GITHUB_OUTPUT 92 | echo "author_email=$(jq -r .issue.user.id $GITHUB_EVENT_PATH)+$(jq -r .issue.user.login $GITHUB_EVENT_PATH)@users.noreply.github.com" >> $GITHUB_OUTPUT 93 | 94 | echo "song_name=$(jq -r .name result.json)" >> $GITHUB_OUTPUT 95 | echo "artist_name=$(jq -r .artist result.json)" >> $GITHUB_OUTPUT 96 | 97 | cat > body.md << EOF 98 | Added $(jq -r .name result.json) to Auto Nong ✨ 99 | EOF 100 | 101 | - name: Make Changes 102 | id: make-changes 103 | run: | 104 | jq --argjson newObject "$(cat result.json)" '. += [$newObject]' official.json > temp.json && mv temp.json official.json 105 | 106 | - name: Bot Details 107 | id: bot-details 108 | uses: raven-actions/bot-details@v1 109 | with: 110 | bot-slug-name: auto-nong 111 | 112 | - name: Add Commit And Push 113 | uses: EndBug/add-and-commit@v9 114 | with: 115 | add: 'official.json' 116 | author_name: ${{ steps.generate-details.outputs.author_name }} 117 | author_email: ${{ steps.generate-details.outputs.author_email }} 118 | committer_name: ${{ steps.bot-details.outputs.name }} 119 | committer_email: ${{ steps.bot-details.outputs.email }} 120 | message: | 121 | official: Add ${{ steps.generate-details.outputs.song_name }} by ${{ steps.generate-details.outputs.artist_name }} 122 | 123 | fixes: #${{ github.event.issue.number }} 124 | 125 | Reviewed-by: ${{ needs.on-comment.outputs.reviewer }} 126 | 127 | - name: Create Comment 128 | uses: peter-evans/create-or-update-comment@v4 129 | with: 130 | issue-number: ${{ github.event.issue.number }} 131 | body-path: body.md 132 | token: ${{ steps.generate_token.outputs.BOT_TOKEN }} 133 | -------------------------------------------------------------------------------- /generator/lib/generator.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | import 'package:http/http.dart' as http; 4 | import 'dart:convert'; 5 | 6 | import 'package:uuid/uuid.dart'; 7 | 8 | final uuid = Uuid(); 9 | 10 | Future jsonToIndexFile(File file, Map data) async { 11 | await file.writeAsString(JsonEncoder().convert(data)); 12 | } 13 | 14 | Future> covnertOfficialIndex() async { 15 | final res = await http.get(Uri.parse( 16 | 'https://raw.githubusercontent.com/FlafyDev/auto-nong-indexes/main/official.json')); 17 | final obj = 18 | (json.decode(res.body) as List).cast>(); 19 | 20 | final ytSongs = obj.fold>({}, (acc, entry) { 21 | final ytID = entry['yt-id']; 22 | if (ytID is! String) return acc; 23 | 24 | final name = entry['name']; 25 | if (name is! String) return acc; 26 | 27 | final artist = entry['artist']; 28 | if (artist is! String) return acc; 29 | 30 | final songs = entry['songs']; 31 | if (songs is! List) return acc; 32 | 33 | final startOffset = entry['startOffset'] ?? 0; 34 | 35 | final id = uuid.v5("8dd3aa81-28f2-40ca-afad-314ddd5caadd", 36 | name + artist + songs.toString() + ytID + startOffset.toString()); 37 | 38 | return { 39 | ...acc, 40 | id: { 41 | "name": name, 42 | "artist": artist, 43 | "startOffset": startOffset, 44 | "ytID": ytID, 45 | "songs": songs, 46 | }, 47 | }; 48 | }); 49 | 50 | return { 51 | "manifest": 1, 52 | "name": "Auto Nong", 53 | "id": "auto-nong-index", 54 | "description": "Official Auto Nong Index", 55 | "lastUpdate": DateTime.now().millisecondsSinceEpoch ~/ 1000, 56 | "links": { 57 | "discord": "https://discord.gg/twuZ3X35yM", 58 | }, 59 | "features": { 60 | "submit": { 61 | "supportedSongTypes": ["youtube"], 62 | "preSubmitMessage": """ 63 | Pressing continue will redirect you to the GitHub issue page to submit your song request. It will be auto filled with the data you provided. 64 | 65 | **Submissions that do not respect the following rules will almost always be rejected** 66 | 67 | 1. NONG replacement songs(not remixes/mashups) should only be accepted if the level that it was made for is judged very popular. Exceptions to this rule can be made if the replacement Newgrounds song that is used in the level is not used and not likely to be used by any level(For example, [Chilled 1](https://www.newgrounds.com/audio/listen/1)). 68 | 2. Do not accept submissions that replace songs that are used by other popular levels, especially if one of these levels is rated. For example, do not replace Stereo Madness or Tennobyte - Fly Away with an unrelated song. 69 | 3. Before accepting a submission, make sure all the fields(Name, Artist, etc) are written correctly 70 | 4. **Test the submission in game** before submitting/accepting it. If it has a corresponding level then make sure it syncs with it. If it's a remix/mashup make sure it syncs with the replaced song. You can test in game by adding a new song and copying the Youtube ID from the submission. 71 | 5. Links from Google Drive, Mediafire, Dropbox, etc are not allowed. Please only submit YouTube video links, or **permanent** direct download links from CDNs that has given permission for Auto Nong to download from. Right now there isn't any CDNs that are allowed. If you don't want to upload to YouTube then submit to the SFH. 72 | 73 | Only Auto Nong Moderators and Beginner Moderators can accept or reject submissions. This is done by commenting "accept" or "reject" under a submission. 74 | """ 75 | .trim(), 76 | "requestParams": { 77 | "url": 78 | "https://github.com/FlafyDev/auto-nong-indexes/issues/new?template=add-nong-song.yml&extra=From%20Jukebox&", 79 | "params": true, 80 | }, 81 | }, 82 | }, 83 | "nongs": { 84 | "hosted": {}, 85 | "youtube": ytSongs, 86 | }, 87 | }; 88 | } 89 | 90 | Future> genSFHIndex() async { 91 | final res = await http.get(Uri.parse('https://api.songfilehub.com/v2/songs')); 92 | final obj = 93 | (json.decode(res.body) as List).cast>(); 94 | 95 | final hostedSongs = obj.fold>({}, (acc, entry) { 96 | var songID = int.tryParse(entry['songID'] ?? ""); 97 | 98 | songID ??= switch ((entry['songID'] as String).toLowerCase()) { 99 | "stereomadness" => -1, 100 | "backontrack" => -2, 101 | "polargeist" => -3, 102 | "dryout" => -4, 103 | "baseafterbase" => -5, 104 | "cantletgo" => -6, 105 | "jumper" => -7, 106 | "timemachine" => -8, 107 | "cycles" => -9, 108 | "xstep" => -10, 109 | "clutterfunk" => -11, 110 | "theoryofeverything" => -12, 111 | "electromanadventures" => -13, 112 | "electroman" => -13, 113 | "clubstep" => -14, 114 | "electrodynamix" => -15, 115 | "hexagonforce" => -16, 116 | "blastprocessing" => -17, 117 | "theoryofeverything2" => -18, 118 | "geometricaldominator" => -19, 119 | "deadlocked" => -20, 120 | "fingerdash" => -21, 121 | "dash" => -22, 122 | _ => null, 123 | }; 124 | 125 | if (songID == null) return acc; 126 | 127 | final id = entry['_id']; 128 | if (id is! String) return acc; 129 | 130 | final url = entry['downloadUrl']; 131 | if (url is! String) return acc; 132 | 133 | final songFullName = entry['songName']; 134 | if (songFullName is! String) return acc; 135 | final String songName; 136 | final String artistName; 137 | if (songFullName.contains(" - ")) { 138 | songName = songFullName.substring(songFullName.indexOf(" - ") + 3).trim(); 139 | artistName = 140 | songFullName.substring(0, songFullName.indexOf(" - ")).trim(); 141 | } else { 142 | songName = songFullName; 143 | artistName = ""; 144 | } 145 | 146 | final state = entry["state"]; 147 | 148 | final levelIDs = ((entry["levelID"] ?? []) as List).map((e) => int.tryParse(e)).whereType().toList(); 149 | final verifiedLevelIDs = 150 | state == "unrated" || state == "rated" ? levelIDs : []; 151 | 152 | return { 153 | ...acc, 154 | id: { 155 | "name": songName, 156 | "artist": artistName, 157 | "startOffset": 0, 158 | "url": url, 159 | "songs": [songID], 160 | "verifiedLevelIDs": verifiedLevelIDs, 161 | }, 162 | }; 163 | }); 164 | 165 | return { 166 | "manifest": 1, 167 | "name": "Song File Hub", 168 | "id": "song-file-hub-index", 169 | "description": "Song File Hub Index", 170 | "lastUpdate": DateTime.now().millisecondsSinceEpoch ~/ 1000, 171 | "links": { 172 | "discord": "https://discord.gg/maSgd4zpEF", 173 | }, 174 | "features": { 175 | "submit": { 176 | "supportedSongTypes": ["local", "youtube", "hosted"], 177 | "preSubmitMessage": """ 178 | To submit your own song/s, please use the Song File Hub Discord Bot with the /Submit command to be reviewed by Helpers. 179 | Please read the rules and walkthroughs for the commands before submitting! 180 | 181 | Only mp3/ogg files are supported. 182 | 183 | Disclaimer: It may take a bit to show on Jukebox's song list after being accepted. 184 | """ 185 | .trim(), 186 | "requestParams": { 187 | "url": "https://discord.gg/maSgd4zpEF", 188 | "params": false, 189 | }, 190 | }, 191 | }, 192 | "nongs": { 193 | "youtube": {}, 194 | "hosted": hostedSongs, 195 | }, 196 | }; 197 | } 198 | -------------------------------------------------------------------------------- /generator/pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | _fe_analyzer_shared: 5 | dependency: transitive 6 | description: 7 | name: _fe_analyzer_shared 8 | sha256: "45cfa8471b89fb6643fe9bf51bd7931a76b8f5ec2d65de4fb176dba8d4f22c77" 9 | url: "https://pub.dev" 10 | source: hosted 11 | version: "73.0.0" 12 | _macros: 13 | dependency: transitive 14 | description: dart 15 | source: sdk 16 | version: "0.3.2" 17 | analyzer: 18 | dependency: transitive 19 | description: 20 | name: analyzer 21 | sha256: "4959fec185fe70cce007c57e9ab6983101dbe593d2bf8bbfb4453aaec0cf470a" 22 | url: "https://pub.dev" 23 | source: hosted 24 | version: "6.8.0" 25 | args: 26 | dependency: transitive 27 | description: 28 | name: args 29 | sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" 30 | url: "https://pub.dev" 31 | source: hosted 32 | version: "2.5.0" 33 | async: 34 | dependency: transitive 35 | description: 36 | name: async 37 | sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" 38 | url: "https://pub.dev" 39 | source: hosted 40 | version: "2.11.0" 41 | boolean_selector: 42 | dependency: transitive 43 | description: 44 | name: boolean_selector 45 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" 46 | url: "https://pub.dev" 47 | source: hosted 48 | version: "2.1.1" 49 | collection: 50 | dependency: transitive 51 | description: 52 | name: collection 53 | sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf 54 | url: "https://pub.dev" 55 | source: hosted 56 | version: "1.19.0" 57 | convert: 58 | dependency: transitive 59 | description: 60 | name: convert 61 | sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" 62 | url: "https://pub.dev" 63 | source: hosted 64 | version: "3.1.1" 65 | coverage: 66 | dependency: transitive 67 | description: 68 | name: coverage 69 | sha256: "576aaab8b1abdd452e0f656c3e73da9ead9d7880e15bdc494189d9c1a1baf0db" 70 | url: "https://pub.dev" 71 | source: hosted 72 | version: "1.9.0" 73 | crypto: 74 | dependency: transitive 75 | description: 76 | name: crypto 77 | sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27 78 | url: "https://pub.dev" 79 | source: hosted 80 | version: "3.0.5" 81 | file: 82 | dependency: transitive 83 | description: 84 | name: file 85 | sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" 86 | url: "https://pub.dev" 87 | source: hosted 88 | version: "7.0.0" 89 | fixnum: 90 | dependency: transitive 91 | description: 92 | name: fixnum 93 | sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" 94 | url: "https://pub.dev" 95 | source: hosted 96 | version: "1.1.0" 97 | frontend_server_client: 98 | dependency: transitive 99 | description: 100 | name: frontend_server_client 101 | sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 102 | url: "https://pub.dev" 103 | source: hosted 104 | version: "4.0.0" 105 | glob: 106 | dependency: transitive 107 | description: 108 | name: glob 109 | sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" 110 | url: "https://pub.dev" 111 | source: hosted 112 | version: "2.1.2" 113 | http: 114 | dependency: "direct main" 115 | description: 116 | name: http 117 | sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010 118 | url: "https://pub.dev" 119 | source: hosted 120 | version: "1.2.2" 121 | http_multi_server: 122 | dependency: transitive 123 | description: 124 | name: http_multi_server 125 | sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" 126 | url: "https://pub.dev" 127 | source: hosted 128 | version: "3.2.1" 129 | http_parser: 130 | dependency: transitive 131 | description: 132 | name: http_parser 133 | sha256: "40f592dd352890c3b60fec1b68e786cefb9603e05ff303dbc4dda49b304ecdf4" 134 | url: "https://pub.dev" 135 | source: hosted 136 | version: "4.1.0" 137 | io: 138 | dependency: transitive 139 | description: 140 | name: io 141 | sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" 142 | url: "https://pub.dev" 143 | source: hosted 144 | version: "1.0.4" 145 | js: 146 | dependency: transitive 147 | description: 148 | name: js 149 | sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf 150 | url: "https://pub.dev" 151 | source: hosted 152 | version: "0.7.1" 153 | lints: 154 | dependency: "direct dev" 155 | description: 156 | name: lints 157 | sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 158 | url: "https://pub.dev" 159 | source: hosted 160 | version: "3.0.0" 161 | logging: 162 | dependency: transitive 163 | description: 164 | name: logging 165 | sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" 166 | url: "https://pub.dev" 167 | source: hosted 168 | version: "1.2.0" 169 | macros: 170 | dependency: transitive 171 | description: 172 | name: macros 173 | sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" 174 | url: "https://pub.dev" 175 | source: hosted 176 | version: "0.1.2-main.4" 177 | matcher: 178 | dependency: transitive 179 | description: 180 | name: matcher 181 | sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb 182 | url: "https://pub.dev" 183 | source: hosted 184 | version: "0.12.16+1" 185 | meta: 186 | dependency: transitive 187 | description: 188 | name: meta 189 | sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 190 | url: "https://pub.dev" 191 | source: hosted 192 | version: "1.15.0" 193 | mime: 194 | dependency: transitive 195 | description: 196 | name: mime 197 | sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" 198 | url: "https://pub.dev" 199 | source: hosted 200 | version: "1.0.5" 201 | node_preamble: 202 | dependency: transitive 203 | description: 204 | name: node_preamble 205 | sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db" 206 | url: "https://pub.dev" 207 | source: hosted 208 | version: "2.0.2" 209 | package_config: 210 | dependency: transitive 211 | description: 212 | name: package_config 213 | sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" 214 | url: "https://pub.dev" 215 | source: hosted 216 | version: "2.1.0" 217 | path: 218 | dependency: transitive 219 | description: 220 | name: path 221 | sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" 222 | url: "https://pub.dev" 223 | source: hosted 224 | version: "1.9.0" 225 | pool: 226 | dependency: transitive 227 | description: 228 | name: pool 229 | sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" 230 | url: "https://pub.dev" 231 | source: hosted 232 | version: "1.5.1" 233 | pub_semver: 234 | dependency: transitive 235 | description: 236 | name: pub_semver 237 | sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" 238 | url: "https://pub.dev" 239 | source: hosted 240 | version: "2.1.4" 241 | shelf: 242 | dependency: transitive 243 | description: 244 | name: shelf 245 | sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12 246 | url: "https://pub.dev" 247 | source: hosted 248 | version: "1.4.2" 249 | shelf_packages_handler: 250 | dependency: transitive 251 | description: 252 | name: shelf_packages_handler 253 | sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e" 254 | url: "https://pub.dev" 255 | source: hosted 256 | version: "3.0.2" 257 | shelf_static: 258 | dependency: transitive 259 | description: 260 | name: shelf_static 261 | sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e 262 | url: "https://pub.dev" 263 | source: hosted 264 | version: "1.1.2" 265 | shelf_web_socket: 266 | dependency: transitive 267 | description: 268 | name: shelf_web_socket 269 | sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611" 270 | url: "https://pub.dev" 271 | source: hosted 272 | version: "2.0.0" 273 | source_map_stack_trace: 274 | dependency: transitive 275 | description: 276 | name: source_map_stack_trace 277 | sha256: c0713a43e323c3302c2abe2a1cc89aa057a387101ebd280371d6a6c9fa68516b 278 | url: "https://pub.dev" 279 | source: hosted 280 | version: "2.1.2" 281 | source_maps: 282 | dependency: transitive 283 | description: 284 | name: source_maps 285 | sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703" 286 | url: "https://pub.dev" 287 | source: hosted 288 | version: "0.10.12" 289 | source_span: 290 | dependency: transitive 291 | description: 292 | name: source_span 293 | sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" 294 | url: "https://pub.dev" 295 | source: hosted 296 | version: "1.10.0" 297 | sprintf: 298 | dependency: transitive 299 | description: 300 | name: sprintf 301 | sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" 302 | url: "https://pub.dev" 303 | source: hosted 304 | version: "7.0.0" 305 | stack_trace: 306 | dependency: transitive 307 | description: 308 | name: stack_trace 309 | sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" 310 | url: "https://pub.dev" 311 | source: hosted 312 | version: "1.11.1" 313 | stream_channel: 314 | dependency: transitive 315 | description: 316 | name: stream_channel 317 | sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 318 | url: "https://pub.dev" 319 | source: hosted 320 | version: "2.1.2" 321 | string_scanner: 322 | dependency: transitive 323 | description: 324 | name: string_scanner 325 | sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3" 326 | url: "https://pub.dev" 327 | source: hosted 328 | version: "1.3.0" 329 | term_glyph: 330 | dependency: transitive 331 | description: 332 | name: term_glyph 333 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 334 | url: "https://pub.dev" 335 | source: hosted 336 | version: "1.2.1" 337 | test: 338 | dependency: "direct dev" 339 | description: 340 | name: test 341 | sha256: "713a8789d62f3233c46b4a90b174737b2c04cb6ae4500f2aa8b1be8f03f5e67f" 342 | url: "https://pub.dev" 343 | source: hosted 344 | version: "1.25.8" 345 | test_api: 346 | dependency: transitive 347 | description: 348 | name: test_api 349 | sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c" 350 | url: "https://pub.dev" 351 | source: hosted 352 | version: "0.7.3" 353 | test_core: 354 | dependency: transitive 355 | description: 356 | name: test_core 357 | sha256: "12391302411737c176b0b5d6491f466b0dd56d4763e347b6714efbaa74d7953d" 358 | url: "https://pub.dev" 359 | source: hosted 360 | version: "0.6.5" 361 | typed_data: 362 | dependency: transitive 363 | description: 364 | name: typed_data 365 | sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c 366 | url: "https://pub.dev" 367 | source: hosted 368 | version: "1.3.2" 369 | uuid: 370 | dependency: "direct main" 371 | description: 372 | name: uuid 373 | sha256: "83d37c7ad7aaf9aa8e275490669535c8080377cfa7a7004c24dfac53afffaa90" 374 | url: "https://pub.dev" 375 | source: hosted 376 | version: "4.4.2" 377 | vm_service: 378 | dependency: transitive 379 | description: 380 | name: vm_service 381 | sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d" 382 | url: "https://pub.dev" 383 | source: hosted 384 | version: "14.2.5" 385 | watcher: 386 | dependency: transitive 387 | description: 388 | name: watcher 389 | sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" 390 | url: "https://pub.dev" 391 | source: hosted 392 | version: "1.1.0" 393 | web: 394 | dependency: transitive 395 | description: 396 | name: web 397 | sha256: d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062 398 | url: "https://pub.dev" 399 | source: hosted 400 | version: "1.0.0" 401 | web_socket: 402 | dependency: transitive 403 | description: 404 | name: web_socket 405 | sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83" 406 | url: "https://pub.dev" 407 | source: hosted 408 | version: "0.1.6" 409 | web_socket_channel: 410 | dependency: transitive 411 | description: 412 | name: web_socket_channel 413 | sha256: "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f" 414 | url: "https://pub.dev" 415 | source: hosted 416 | version: "3.0.1" 417 | webkit_inspection_protocol: 418 | dependency: transitive 419 | description: 420 | name: webkit_inspection_protocol 421 | sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572" 422 | url: "https://pub.dev" 423 | source: hosted 424 | version: "1.2.1" 425 | yaml: 426 | dependency: transitive 427 | description: 428 | name: yaml 429 | sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" 430 | url: "https://pub.dev" 431 | source: hosted 432 | version: "3.1.2" 433 | sdks: 434 | dart: ">=3.4.3 <4.0.0" 435 | -------------------------------------------------------------------------------- /official.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Lost (XVA Remix)", 4 | "artist": "Crim3s", 5 | "source": "youtube", 6 | "yt-id": "VZXeoUPPFOY", 7 | "songs": [ 8 | 945695 9 | ] 10 | }, 11 | { 12 | "name": "Stay Alive ( Luan & Codly Remix )", 13 | "artist": "Rie Takahashi", 14 | "songs": [ 15 | 938470 16 | ], 17 | "yt-id": "zNOK_toH6HQ", 18 | "source": "youtube" 19 | }, 20 | { 21 | "name": "Galaxies", 22 | "artist": "Protostar", 23 | "yt-id": "fndMDLCYXpc", 24 | "source": "youtube", 25 | "songs": [ 26 | 677070 27 | ] 28 | }, 29 | { 30 | "name": "Dash Destroyer (Franks Remix)", 31 | "artist": "Francisc0422", 32 | "source": "youtube", 33 | "yt-id": "YCNWJifANyM", 34 | "songs": [ 35 | 1172947 36 | ] 37 | }, 38 | { 39 | "name": "Shiawase (VIP)", 40 | "artist": "Dion Timmer", 41 | "source": "youtube", 42 | "yt-id": "suisIF4hwyw", 43 | "songs": [ 44 | 1266014 45 | ] 46 | }, 47 | { 48 | "name": "Touchy Feely Fool", 49 | "artist": "AJR", 50 | "source": "youtube", 51 | "yt-id": "8JmKQ6Bqcf0", 52 | "songs": [ 53 | 58477 54 | ] 55 | }, 56 | { 57 | "name": "Magic Touch (31songmashup)", 58 | "artist": "Romos", 59 | "source": "youtube", 60 | "yt-id": "cG8p6B4-Dmc", 61 | "songs": [ 62 | 595342 63 | ] 64 | }, 65 | { 66 | "name": "Geometry dash koromi remix", 67 | "artist": "Koromi", 68 | "source": "youtube", 69 | "yt-id": "Q75XY-peGXA", 70 | "songs": [ 71 | 1067550 72 | ] 73 | }, 74 | { 75 | "name": "Pplllife", 76 | "artist": "some people", 77 | "source": "youtube", 78 | "yt-id": "kEwIRlO8PW0", 79 | "songs": [ 80 | 595342 81 | ] 82 | }, 83 | { 84 | "name": "Bling-Bang-Bang-Born", 85 | "artist": "Creepy Nuts", 86 | "source": "youtube", 87 | "yt-id": "5NzfqW_Yt6Y", 88 | "songs": [ 89 | 1311743 90 | ] 91 | }, 92 | { 93 | "name": "Rip and Tear", 94 | "artist": "Mick Gordon", 95 | "source": "youtube", 96 | "yt-id": "5Nz3HXwEG4M", 97 | "songs": [ 98 | 1253069 99 | ] 100 | }, 101 | { 102 | "name": "Killbot (Speed Up by DjFrenkReturn)", 103 | "artist": "Devin Martin", 104 | "source": "youtube", 105 | "yt-id": "9eZ_EEQxNNI", 106 | "songs": [ 107 | 464120 108 | ] 109 | }, 110 | { 111 | "name": "Watch The World Burn (Live)", 112 | "artist": "Falling In Reverse", 113 | "source": "youtube", 114 | "yt-id": "g10qKRsi28U", 115 | "songs": [ 116 | 192823 117 | ] 118 | }, 119 | { 120 | "name": "PUNK TACTICS", 121 | "artist": "Joey Valence & Brae", 122 | "source": "youtube", 123 | "yt-id": "OklSZmIx9-o", 124 | "songs": [ 125 | 151235 126 | ] 127 | }, 128 | { 129 | "name": "hide away", 130 | "artist": "synapson", 131 | "source": "youtube", 132 | "yt-id": "yah039oS2sM", 133 | "songs": [ 134 | 2023 135 | ] 136 | }, 137 | { 138 | "name": "El Pollito Pio", 139 | "artist": "Pulcino Pio", 140 | "source": "youtube", 141 | "yt-id": "dhsy6epaJGs", 142 | "songs": [ 143 | 1 144 | ] 145 | }, 146 | { 147 | "name": "Fugitivo", 148 | "artist": "Robleis", 149 | "source": "youtube", 150 | "yt-id": "9Qrm_88HN-A", 151 | "songs": [ 152 | 1258084 153 | ] 154 | }, 155 | { 156 | "name": "Clubstep X Bangarang Mashup (Yain)", 157 | "artist": "attXversion", 158 | "source": "youtube", 159 | "yt-id": "-UjXCb4rYd0", 160 | "songs": [ 161 | 13 162 | ] 163 | }, 164 | { 165 | "name": "Death Note Dubstep X I Love Bread", 166 | "artist": "ShadowBeatzInc", 167 | "source": "youtube", 168 | "yt-id": "RKtpF9TxEz0", 169 | "songs": [ 170 | 513539 171 | ] 172 | }, 173 | { 174 | "name": "Shy away", 175 | "artist": "Twenty One Pilots", 176 | "source": "youtube", 177 | "yt-id": "niR2qJ3mGEE", 178 | "songs": [ 179 | 1249318 180 | ] 181 | }, 182 | { 183 | "name": "7th saga children", 184 | "artist": "chronamut", 185 | "source": "youtube", 186 | "yt-id": "TvE4p-IQUMs", 187 | "songs": [ 188 | 6666 189 | ] 190 | }, 191 | { 192 | "name": "Clubstep - Dj Nate x Gunna (Ft Roddy Ricch)", 193 | "artist": "DJ Nate", 194 | "source": "youtube", 195 | "yt-id": "DEQuem28ogQ", 196 | "songs": [ 197 | 13 198 | ] 199 | }, 200 | { 201 | "name": "BURN", 202 | "artist": "Kanye West & Ty Dolla $ign", 203 | "source": "youtube", 204 | "yt-id": "DnEOoCWqY9M", 205 | "songs": [ 206 | 1328792 207 | ] 208 | }, 209 | { 210 | "name": "Galop Infernal", 211 | "artist": "Offenbach", 212 | "source": "youtube", 213 | "yt-id": "ScdvjwOF5cw", 214 | "songs": [ 215 | 161803 216 | ] 217 | }, 218 | { 219 | "name": "Sendan Life (Katagiri Bootleg)", 220 | "artist": "Shoue, Katagiri", 221 | "source": "youtube", 222 | "yt-id": "qy4oe4rEGsw", 223 | "songs": [ 224 | 18856464 225 | ] 226 | }, 227 | { 228 | "name": "Overdose Party", 229 | "artist": "Furyan", 230 | "source": "youtube", 231 | "yt-id": "XDxFcZyMiNM", 232 | "songs": [ 233 | 14885340 234 | ] 235 | }, 236 | { 237 | "name": "At the Speed of Light (AceTAD Remix)", 238 | "artist": "Dimrain47", 239 | "source": "youtube", 240 | "yt-id": "KGcw_U-8HXM", 241 | "songs": [ 242 | 467339 243 | ] 244 | }, 245 | { 246 | "name": "Clubstep (Laxris Remix)", 247 | "artist": "Laxris", 248 | "source": "youtube", 249 | "yt-id": "ZSBm0vKWWe0", 250 | "songs": [ 251 | 13 252 | ] 253 | }, 254 | { 255 | "name": "MIGRAINE", 256 | "artist": "BOYWITHUKE", 257 | "source": "youtube", 258 | "yt-id": "tIxLU8WUK1Y", 259 | "songs": [ 260 | 1 261 | ] 262 | }, 263 | { 264 | "name": "When You Find Me (Low Pitch)", 265 | "artist": "Wist8nGD", 266 | "source": "youtube", 267 | "yt-id": "nFePbe03800", 268 | "songs": [ 269 | 30 270 | ] 271 | }, 272 | { 273 | "name": "Windows xp", 274 | "artist": "SomethingUnreal", 275 | "source": "youtube", 276 | "yt-id": "dsU3B0W3TMs", 277 | "songs": [ 278 | 251001 279 | ] 280 | }, 281 | { 282 | "name": "Sakupen Circles X Gas Gas Gas", 283 | "artist": "mr-jazzman", 284 | "source": "youtube", 285 | "yt-id": "pBENjOYrrTk", 286 | "songs": [ 287 | 360804 288 | ] 289 | }, 290 | { 291 | "name": "Young Girl A", 292 | "artist": "siinamota", 293 | "source": "youtube", 294 | "yt-id": "AqI97zHMoQw", 295 | "songs": [ 296 | 9022 297 | ] 298 | }, 299 | { 300 | "name": "Creo - Sphere ( Ella me llama MASHUP )", 301 | "artist": "elnexreal", 302 | "source": "youtube", 303 | "yt-id": "9AFEgZSxLj4", 304 | "songs": [ 305 | 739991 306 | ] 307 | }, 308 | { 309 | "name": "Bang Bang", 310 | "artist": "K'naan", 311 | "source": "youtube", 312 | "startOffset": 0, 313 | "yt-id": "rbRSYYPSjWc", 314 | "songs": [ 315 | 640041 316 | ] 317 | }, 318 | { 319 | "name": "KOCMOC - Evacore remix V2", 320 | "artist": "Evacore", 321 | "source": "youtube", 322 | "startOffset": 0, 323 | "yt-id": "LvvMb122YNU", 324 | "songs": [ 325 | 1163222 326 | ] 327 | }, 328 | { 329 | "name": "limbo's smallest violin", 330 | "artist": "GD Colon", 331 | "source": "youtube", 332 | "startOffset": 0, 333 | "yt-id": "qbNyCHRSg-0", 334 | "songs": [ 335 | 76743 336 | ] 337 | }, 338 | { 339 | "name": "Unnecessarily High-Effort Clubstep Mashup", 340 | "artist": "DEMON GIRLFRIEND", 341 | "source": "youtube", 342 | "startOffset": 0, 343 | "yt-id": "0lRvpPhmnXs", 344 | "songs": [ 345 | 13 346 | ] 347 | }, 348 | { 349 | "name": "Sphere x Mr Krabs vs William Afton Rap Battle", 350 | "artist": "creo", 351 | "source": "youtube", 352 | "startOffset": 0, 353 | "yt-id": "HLVcdcGznPU", 354 | "songs": [ 355 | 739991 356 | ] 357 | }, 358 | { 359 | "name": "Zodiac (Low Pitch)", 360 | "artist": "Creo", 361 | "source": "youtube", 362 | "startOffset": 0, 363 | "yt-id": "uD3nIUwFkuo", 364 | "songs": [ 365 | 739991 366 | ] 367 | }, 368 | { 369 | "name": "specialz", 370 | "artist": "King gnu", 371 | "source": "youtube", 372 | "startOffset": 0, 373 | "yt-id": "5yb2N3pnztU", 374 | "songs": [ 375 | 22 376 | ] 377 | }, 378 | { 379 | "name": "Endgame X Hallucinate", 380 | "artist": "StevenTete", 381 | "source": "youtube", 382 | "startOffset": 0, 383 | "yt-id": "GvNY06QSusc", 384 | "songs": [ 385 | 587069 386 | ] 387 | }, 388 | { 389 | "name": "no more parties in L.A.", 390 | "artist": "Kanye West, Kendrick Lamar", 391 | "source": "youtube", 392 | "startOffset": 0, 393 | "yt-id": "NnMuFqsmYSE", 394 | "songs": [ 395 | 1090791 396 | ] 397 | }, 398 | { 399 | "name": "Night of Fire", 400 | "artist": "N.I.K.O.", 401 | "source": "youtube", 402 | "startOffset": 0, 403 | "yt-id": "SRbhLtjOiRc", 404 | "songs": [ 405 | 797022 406 | ] 407 | }, 408 | { 409 | "name": "I Love You Lalala", 410 | "artist": "Tree Palm", 411 | "source": "youtube", 412 | "startOffset": 0, 413 | "yt-id": "scZYRRX39zA", 414 | "songs": [ 415 | 1228671 416 | ] 417 | }, 418 | { 419 | "name": "Estrelar", 420 | "artist": "DJ Ze Pedro", 421 | "source": "youtube", 422 | "startOffset": 0, 423 | "yt-id": "gWiHro7_lZ4", 424 | "songs": [ 425 | 500706 426 | ] 427 | }, 428 | { 429 | "name": "Stay with me", 430 | "artist": "1nonly", 431 | "source": "youtube", 432 | "startOffset": 0, 433 | "yt-id": "1RzV5X6ocO4", 434 | "songs": [ 435 | 70 436 | ] 437 | }, 438 | { 439 | "name": "XXX.", 440 | "artist": "Kendrick Lamar", 441 | "source": "youtube", 442 | "startOffset": 0, 443 | "yt-id": "TFr4br_GrSc", 444 | "songs": [ 445 | 1336801 446 | ] 447 | }, 448 | { 449 | "name": "WASTED (murkish & huken nightcore remix)", 450 | "artist": "Juice WRLD, Lil Uzi Vert", 451 | "source": "youtube", 452 | "startOffset": 0, 453 | "yt-id": "-UHnOA3Caww", 454 | "songs": [ 455 | 1199528 456 | ] 457 | }, 458 | { 459 | "name": "Creator", 460 | "artist": "Lena Raine", 461 | "source": "youtube", 462 | "startOffset": 0, 463 | "yt-id": "Qtf8YFw8iZg", 464 | "songs": [ 465 | 34567 466 | ] 467 | }, 468 | { 469 | "name": "Rush B", 470 | "artist": "Sheet Music Boss", 471 | "source": "youtube", 472 | "startOffset": 0, 473 | "yt-id": "5zo7BYoaqAA", 474 | "songs": [ 475 | 571236 476 | ] 477 | }, 478 | { 479 | "name": "Rush D", 480 | "artist": "Sheet Music Boss", 481 | "source": "youtube", 482 | "startOffset": 9000, 483 | "yt-id": "IVK_KPTC7xc", 484 | "songs": [ 485 | 67864 486 | ] 487 | }, 488 | { 489 | "name": "Ludi Letnji Ples", 490 | "artist": "Flamingosi", 491 | "source": "youtube", 492 | "startOffset": 0, 493 | "yt-id": "ahu6__i80MI", 494 | "songs": [ 495 | 342343 496 | ] 497 | }, 498 | { 499 | "name": "CUTE DEPRESSED", 500 | "artist": "Dyan Dxddy", 501 | "source": "youtube", 502 | "startOffset": 0, 503 | "yt-id": "abwf-BdPFsQ", 504 | "songs": [ 505 | 315202 506 | ] 507 | }, 508 | { 509 | "name": "In Time", 510 | "artist": "Momo's keys", 511 | "source": "youtube", 512 | "startOffset": 0, 513 | "yt-id": "FOqUKGtzQWU", 514 | "songs": [ 515 | 712418 516 | ] 517 | }, 518 | { 519 | "name": "Artcore | NamiRyo - Aisthimata", 520 | "artist": "namiryo", 521 | "source": "youtube", 522 | "startOffset": 0, 523 | "yt-id": "nJkvPCQqeUE", 524 | "songs": [ 525 | 646748 526 | ] 527 | }, 528 | { 529 | "name": "overdose party", 530 | "artist": "funyan", 531 | "source": "youtube", 532 | "startOffset": 0, 533 | "yt-id": "XDxFcZyMiNM", 534 | "songs": [ 535 | 1 536 | ] 537 | }, 538 | { 539 | "name": "XO", 540 | "artist": "Aaron Musslewhite", 541 | "source": "youtube", 542 | "startOffset": 0, 543 | "yt-id": "oE8g_zbjGWg", 544 | "songs": [ 545 | 766165 546 | ] 547 | }, 548 | { 549 | "name": "Creo x Marshmello - Sphere x Happier", 550 | "artist": "AidanTR (Uploaded by Zafkhiel17)", 551 | "source": "youtube", 552 | "startOffset": 0, 553 | "yt-id": "3WobR1H6B0Y", 554 | "songs": [ 555 | 739991 556 | ] 557 | }, 558 | { 559 | "name": "Rainshower", 560 | "artist": "Silentroom", 561 | "source": "youtube", 562 | "startOffset": 0, 563 | "yt-id": "tLL8cqRmaNE", 564 | "songs": [ 565 | 10101 566 | ] 567 | }, 568 | { 569 | "name": "Lost X Sidewalks & Skeletons Remix", 570 | "artist": "CRIM3S", 571 | "source": "youtube", 572 | "startOffset": 0, 573 | "yt-id": "fDOp2RoTJo8", 574 | "songs": [ 575 | 66666 576 | ] 577 | }, 578 | { 579 | "name": "Nine Circles x TiK ToK", 580 | "artist": "Rukkus", 581 | "source": "youtube", 582 | "startOffset": -109700, 583 | "yt-id": "GJ5Hj89ejGY", 584 | "songs": [ 585 | 533927 586 | ] 587 | }, 588 | { 589 | "name": "Ange du Blanc Pur", 590 | "artist": "Nanahira", 591 | "source": "youtube", 592 | "startOffset": 0, 593 | "yt-id": "5bfbmDB8rMM", 594 | "songs": [ 595 | 2222 596 | ] 597 | }, 598 | { 599 | "name": "Dancing In The Dark", 600 | "artist": "Joji", 601 | "source": "youtube", 602 | "startOffset": 0, 603 | "yt-id": "K3Qzzggn--s", 604 | "songs": [ 605 | 6 606 | ] 607 | }, 608 | { 609 | "name": "Back On Track (JamAttack Cover)", 610 | "artist": "DJVI", 611 | "source": "youtube", 612 | "startOffset": 0, 613 | "yt-id": "UTBXVCyLU28", 614 | "songs": [ 615 | 522654 616 | ] 617 | }, 618 | { 619 | "name": "Stalemate (piano cover)", 620 | "artist": "Kzx", 621 | "source": "youtube", 622 | "startOffset": 1000, 623 | "yt-id": "0UqB5DJL330", 624 | "songs": [ 625 | 482872 626 | ] 627 | }, 628 | { 629 | "name": "Zodiac x happier mashup", 630 | "artist": "AidanTR", 631 | "source": "youtube", 632 | "startOffset": -22000, 633 | "yt-id": "3ARqE-cxgjk", 634 | "songs": [ 635 | 739991 636 | ] 637 | }, 638 | { 639 | "name": "Ijime, Dame, Zettai", 640 | "artist": "BABYMETAL", 641 | "source": "youtube", 642 | "startOffset": 1800, 643 | "yt-id": "nDqaTXqCN-Q", 644 | "songs": [ 645 | 1237542 646 | ] 647 | }, 648 | { 649 | "name": "Sonic Blaster x Gangnam Style", 650 | "artist": "DeoxyShocK, PSY, F-777", 651 | "source": "youtube", 652 | "startOffset": 0, 653 | "yt-id": "KSAxZX4br3A", 654 | "songs": [ 655 | 574484 656 | ] 657 | }, 658 | { 659 | "name": "WOULD YOU RUN", 660 | "artist": "TRI.BE", 661 | "source": "youtube", 662 | "startOffset": 0, 663 | "yt-id": "nfQHnabtJfM", 664 | "songs": [ 665 | 100724 666 | ] 667 | }, 668 | { 669 | "name": "After Dark x Sweater Weather", 670 | "artist": "Gerson", 671 | "source": "youtube", 672 | "startOffset": 0, 673 | "yt-id": "KPq5DGaSQ9I", 674 | "songs": [ 675 | 10 676 | ] 677 | }, 678 | { 679 | "name": "Roundtable Rival", 680 | "artist": "Lindsey Stirling", 681 | "source": "youtube", 682 | "startOffset": 0, 683 | "yt-id": "jvipPYFebWc", 684 | "songs": [ 685 | 801461 686 | ] 687 | }, 688 | { 689 | "name": "AOD-BADMAN MASHUP", 690 | "artist": "BADMAN", 691 | "source": "youtube", 692 | "startOffset": 4, 693 | "yt-id": "NNnnrjs5qng", 694 | "songs": [ 695 | 513539 696 | ] 697 | }, 698 | { 699 | "name": "Infectious ( Original Mix )", 700 | "artist": "Tobu, 7obu", 701 | "source": "youtube", 702 | "startOffset": 0, 703 | "yt-id": "qlinKNqHCyg", 704 | "songs": [ 705 | 593702 706 | ] 707 | }, 708 | { 709 | "name": "Cloud 9 ( NoCopyrightSounds Mix )", 710 | "artist": "Tobu, 7obu, NoCopyrightSounds", 711 | "source": "youtube", 712 | "startOffset": 0, 713 | "yt-id": "FZa2yA7r-T0", 714 | "songs": [ 715 | 604269 716 | ] 717 | }, 718 | { 719 | "name": "Cloud 9", 720 | "artist": "Tobu, 7obu", 721 | "source": "youtube", 722 | "startOffset": 0, 723 | "yt-id": "1KqQQHpQc8w", 724 | "songs": [ 725 | 604269 726 | ] 727 | }, 728 | { 729 | "name": "See tinh remix", 730 | "artist": "tackehia123", 731 | "source": "youtube", 732 | "startOffset": 0, 733 | "yt-id": "cZdnL8Ysw4cqEHoz", 734 | "songs": [ 735 | 1659876 736 | ] 737 | }, 738 | { 739 | "name": "Life ( NoCopyrightSounds Mix )", 740 | "artist": "Tobu, 7obu, NoCopyrightSounds", 741 | "source": "youtube", 742 | "startOffset": 0, 743 | "yt-id": "wxPplfyl1_M", 744 | "songs": [ 745 | 604075 746 | ] 747 | }, 748 | { 749 | "name": "Hope ( Tobu Version )", 750 | "artist": "Tobu, 7obu", 751 | "source": "youtube", 752 | "startOffset": 0, 753 | "yt-id": "Y1Z3Q3O7IRE", 754 | "songs": [ 755 | 595696 756 | ] 757 | }, 758 | { 759 | "name": "Silly billy", 760 | "artist": "Hit single", 761 | "source": "youtube", 762 | "startOffset": 0, 763 | "yt-id": "jwhSUmN5zTk", 764 | "songs": [ 765 | 1 766 | ] 767 | }, 768 | { 769 | "name": "RINGO", 770 | "artist": "ITZY", 771 | "source": "youtube", 772 | "startOffset": 0, 773 | "yt-id": "57M-OOclIjU", 774 | "songs": [ 775 | 100324 776 | ] 777 | }, 778 | { 779 | "name": "Next to you", 780 | "artist": "Tree palm", 781 | "source": "youtube", 782 | "startOffset": 0, 783 | "yt-id": "49vEwLciLAo", 784 | "songs": [ 785 | 868059 786 | ] 787 | }, 788 | { 789 | "name": "腐蝕ルサンチマン、不死欲の猿楽座 (fushoku ressentiment)", 790 | "artist": "Imperial Circus Dead Decadence", 791 | "source": "youtube", 792 | "startOffset": 0, 793 | "yt-id": "Y1BIFydkcIQ", 794 | "songs": [ 795 | 1262293 796 | ] 797 | }, 798 | { 799 | "name": "PIKITO", 800 | "artist": "RUSOWSKY", 801 | "source": "youtube", 802 | "startOffset": 0, 803 | "yt-id": "DPqULcZXuGE", 804 | "songs": [ 805 | 8 806 | ] 807 | }, 808 | { 809 | "name": "You have to know this", 810 | "artist": "Bobby BoJanglles", 811 | "source": "youtube", 812 | "startOffset": 0, 813 | "yt-id": "YB5p0k8-DQo", 814 | "songs": [ 815 | 346 816 | ] 817 | }, 818 | { 819 | "name": "she's not in love with the concept", 820 | "artist": "KMB and Eden", 821 | "source": "youtube", 822 | "startOffset": 0, 823 | "yt-id": "fNqWpUVbx_c", 824 | "songs": [ 825 | 766165 826 | ] 827 | }, 828 | { 829 | "name": "FIREWORK MASHUP | Classical Idol - Classical VIP x IDOL | Geometry Dash", 830 | "artist": "Deji [GMD]", 831 | "source": "youtube", 832 | "startOffset": 0, 833 | "yt-id": "_PyRO7XXxq4", 834 | "songs": [ 835 | 502268 836 | ] 837 | }, 838 | { 839 | "name": "DANCE TILL YOU'RE DEAD", 840 | "artist": "RagenYT", 841 | "source": "youtube", 842 | "startOffset": 0, 843 | "yt-id": "r5_NvFTfAWc", 844 | "songs": [ 845 | 1 846 | ] 847 | }, 848 | { 849 | "name": "At Speed Of Light (lightcube remix)", 850 | "artist": "Dimrain47", 851 | "source": "youtube", 852 | "startOffset": 945, 853 | "yt-id": "_nHWc096QDU", 854 | "songs": [ 855 | 467339 856 | ] 857 | }, 858 | { 859 | "name": "Unity", 860 | "artist": "Thefatrat", 861 | "source": "youtube", 862 | "startOffset": 0, 863 | "yt-id": "n8X9_MgEdCg", 864 | "songs": [ 865 | 597861 866 | ] 867 | }, 868 | { 869 | "name": "If U Only knew", 870 | "artist": "ANAPOLI", 871 | "source": "youtube", 872 | "startOffset": 0, 873 | "yt-id": "bN3axtJJ7tY", 874 | "songs": [ 875 | 557117 876 | ] 877 | }, 878 | { 879 | "name": "Terbang Bersamaku", 880 | "artist": "DJ Asahan", 881 | "source": "youtube", 882 | "startOffset": 0, 883 | "yt-id": "E6Jxo_VBj3U", 884 | "songs": [ 885 | 755488 886 | ] 887 | }, 888 | { 889 | "name": "Times Up", 890 | "artist": "TheFatRatxHinkik", 891 | "source": "youtube", 892 | "startOffset": 0, 893 | "yt-id": "EbqT9oaLQ-o", 894 | "songs": [ 895 | 683996 896 | ] 897 | }, 898 | { 899 | "name": "INFINITY BLASTER (Sonic Blaster MASSIVE ULTIMATE MIX)", 900 | "artist": "Mecha-Ruben", 901 | "source": "youtube", 902 | "startOffset": 0, 903 | "yt-id": "NEZzfLfhnqs", 904 | "songs": [ 905 | 574484 906 | ] 907 | }, 908 | { 909 | "name": "Ludicrous Speed x After Party", 910 | "artist": "GeoBlitzy", 911 | "source": "youtube", 912 | "startOffset": 0, 913 | "yt-id": "civN_LZuWDc", 914 | "songs": [ 915 | 467267 916 | ] 917 | }, 918 | { 919 | "name": "Violeta", 920 | "artist": "Iz*one", 921 | "source": "youtube", 922 | "startOffset": 0, 923 | "yt-id": "ShSj6pGMMFo", 924 | "songs": [ 925 | 816303 926 | ] 927 | }, 928 | { 929 | "name": "Flawless Wings Of Yatagarasu x Bonfire", 930 | "artist": "EmpyriousGD", 931 | "source": "youtube", 932 | "startOffset": 0, 933 | "yt-id": "6th7J6ejl5w", 934 | "songs": [ 935 | 490479 936 | ] 937 | }, 938 | { 939 | "name": "Pumped up kicks", 940 | "artist": "Foster the people", 941 | "source": "youtube", 942 | "startOffset": 0, 943 | "yt-id": "xHpTu9oJJaY", 944 | "songs": [ 945 | 496892 946 | ] 947 | }, 948 | { 949 | "name": "Blame!", 950 | "artist": "EXODUS1900", 951 | "source": "youtube", 952 | "startOffset": 0, 953 | "yt-id": "12UoctW_JU8", 954 | "songs": [ 955 | 590533 956 | ] 957 | }, 958 | { 959 | "name": "Toxic", 960 | "artist": "BoyWithUke", 961 | "source": "youtube", 962 | "startOffset": 0, 963 | "yt-id": "Mvaosumc4hU", 964 | "songs": [ 965 | 1097636 966 | ] 967 | }, 968 | { 969 | "name": "Rythm hell", 970 | "artist": "Louie Zong", 971 | "source": "youtube", 972 | "startOffset": 0, 973 | "yt-id": "RYh3-YKM5bU", 974 | "songs": [ 975 | 1213840 976 | ] 977 | }, 978 | { 979 | "name": "Cityfade", 980 | "artist": "Against all logic", 981 | "source": "youtube", 982 | "startOffset": 0, 983 | "yt-id": "Ov5e0SLGEgg", 984 | "songs": [ 985 | 1307480 986 | ] 987 | }, 988 | { 989 | "name": "Freedom Dive (Suzu Remix)", 990 | "artist": "Suzu", 991 | "source": "youtube", 992 | "startOffset": 5, 993 | "yt-id": "pvV3ClwkzKY", 994 | "songs": [ 995 | 735623 996 | ] 997 | }, 998 | { 999 | "name": "Rebirth Blaster (2024)", 1000 | "artist": "Plexity", 1001 | "source": "youtube", 1002 | "startOffset": 0, 1003 | "yt-id": "6GotIsZi4xc", 1004 | "songs": [ 1005 | 574484 1006 | ] 1007 | }, 1008 | { 1009 | "name": "Stereo Madness (Rock Cover)", 1010 | "artist": "Creepy Team", 1011 | "source": "youtube", 1012 | "startOffset": 0, 1013 | "yt-id": "2ope1-3fvSg", 1014 | "songs": [ 1015 | 0 1016 | ] 1017 | }, 1018 | { 1019 | "name": "Sendan Life (Katagiri Bootleg)", 1020 | "artist": "Shoue, Katagiri", 1021 | "source": "youtube", 1022 | "startOffset": 0, 1023 | "yt-id": "ZgjrL8XDNEQ", 1024 | "songs": [ 1025 | 1 1026 | ] 1027 | }, 1028 | { 1029 | "name": "OOPARTS", 1030 | "artist": "Camellia", 1031 | "source": "youtube", 1032 | "startOffset": 0, 1033 | "yt-id": "lc4nTM6M9KY", 1034 | "songs": [ 1035 | 1 1036 | ] 1037 | }, 1038 | { 1039 | "name": "Bounce Reimu Fumo", 1040 | "artist": "Various Artists", 1041 | "source": "youtube", 1042 | "startOffset": 0, 1043 | "yt-id": "xc-NtHkhUaI", 1044 | "songs": [ 1045 | 111111 1046 | ] 1047 | }, 1048 | { 1049 | "name": "Dash & Strike", 1050 | "artist": "Hironobu Kageyama", 1051 | "source": "youtube", 1052 | "startOffset": 0, 1053 | "yt-id": "LXqVftthXN0", 1054 | "songs": [ 1055 | 125 1056 | ] 1057 | }, 1058 | { 1059 | "name": "Kocmoc unleashed(cover)", 1060 | "artist": "Killoway", 1061 | "source": "youtube", 1062 | "startOffset": 0, 1063 | "yt-id": "ioXKzmMcyao", 1064 | "songs": [ 1065 | 6666 1066 | ] 1067 | }, 1068 | { 1069 | "name": "Sakupen Hell x All of the Lights", 1070 | "artist": "mr-jazzman", 1071 | "source": "youtube", 1072 | "startOffset": 0, 1073 | "yt-id": "jzf0a9HWrBU", 1074 | "songs": [ 1075 | 360804 1076 | ] 1077 | }, 1078 | { 1079 | "name": "Isolation x 2.2 Predictions", 1080 | "artist": "NightHawk22", 1081 | "source": "youtube", 1082 | "startOffset": 0, 1083 | "yt-id": "KmCOLqXlQL0", 1084 | "songs": [ 1085 | 76743 1086 | ] 1087 | }, 1088 | { 1089 | "name": "Cradles (Live Performance)", 1090 | "artist": "Sur Urban", 1091 | "source": "youtube", 1092 | "startOffset": 0, 1093 | "yt-id": "cc95R8eIsnw", 1094 | "songs": [ 1095 | 10011223 1096 | ] 1097 | }, 1098 | { 1099 | "name": "Cradles x Melanie Martinez", 1100 | "artist": "Sur Urban", 1101 | "source": "youtube", 1102 | "startOffset": 1000, 1103 | "yt-id": "nYAooU_CnOg", 1104 | "songs": [ 1105 | 10011223 1106 | ] 1107 | }, 1108 | { 1109 | "name": "Cradles x Rabbit Hole x Cirque x Uh Oh x Freak", 1110 | "artist": "Sur Urban", 1111 | "source": "youtube", 1112 | "startOffset": 0, 1113 | "yt-id": "i3LhhIU8WD0", 1114 | "songs": [ 1115 | 10011223 1116 | ] 1117 | }, 1118 | { 1119 | "name": "Stereo Madness (Mellon Remix)", 1120 | "artist": "DJ-Mellon", 1121 | "source": "youtube", 1122 | "startOffset": 0, 1123 | "yt-id": "IXpLdfwm228", 1124 | "songs": [ 1125 | 0 1126 | ] 1127 | }, 1128 | { 1129 | "name": "Murder in my Mind", 1130 | "artist": "Kordhell", 1131 | "source": "youtube", 1132 | "startOffset": 0, 1133 | "yt-id": "w-sQRS-Lc9k", 1134 | "songs": [ 1135 | 701013 1136 | ] 1137 | }, 1138 | { 1139 | "name": "Mii Channel Music", 1140 | "artist": "Nintendo", 1141 | "source": "youtube", 1142 | "startOffset": 0, 1143 | "yt-id": "E9s1ltPGQOo", 1144 | "songs": [ 1145 | 754325 1146 | ] 1147 | }, 1148 | { 1149 | "name": "corps-sans-organes (Extended ver.)", 1150 | "artist": "cybermiso", 1151 | "source": "youtube", 1152 | "startOffset": 13030, 1153 | "yt-id": "oau2Pb0oRTM", 1154 | "songs": [ 1155 | 1239973 1156 | ] 1157 | }, 1158 | { 1159 | "name": "GIRL A villager mc (IA COVER)", 1160 | "artist": "sinammota", 1161 | "source": "youtube", 1162 | "startOffset": 0, 1163 | "yt-id": "9p2W8M2Y0X4", 1164 | "songs": [ 1165 | 1284048 1166 | ] 1167 | }, 1168 | { 1169 | "name": "Stereo Madness (Piano Cover)", 1170 | "artist": "PNG", 1171 | "source": "youtube", 1172 | "startOffset": 2650, 1173 | "yt-id": "TBHL-xX1ZLg", 1174 | "songs": [ 1175 | 0 1176 | ] 1177 | }, 1178 | { 1179 | "name": "Back On Track (Piano Cover)", 1180 | "artist": "PNG", 1181 | "source": "youtube", 1182 | "startOffset": 3870, 1183 | "yt-id": "XpXUQol0NCs", 1184 | "songs": [ 1185 | 1 1186 | ] 1187 | }, 1188 | { 1189 | "name": "Moonlight", 1190 | "artist": "Kali Uchis", 1191 | "source": "youtube", 1192 | "startOffset": 0, 1193 | "yt-id": "eNGDWBVel6w", 1194 | "songs": [ 1195 | 593046 1196 | ] 1197 | }, 1198 | { 1199 | "name": "Stereo Madness (2015)", 1200 | "artist": "ForeverBound", 1201 | "source": "youtube", 1202 | "startOffset": 0, 1203 | "yt-id": "JtwYgQ0B198", 1204 | "songs": [ 1205 | 0 1206 | ] 1207 | }, 1208 | { 1209 | "name": "Dr. Frinkelfracken's Cure x Chris Brown, Busta Rhymes & Lil Wayne", 1210 | "artist": "EmpyriousGD", 1211 | "source": "youtube", 1212 | "startOffset": 0, 1213 | "yt-id": "LHxniotDPuM", 1214 | "songs": [ 1215 | 383158 1216 | ] 1217 | }, 1218 | { 1219 | "name": "Just Dance", 1220 | "artist": "Lady Gaga", 1221 | "source": "youtube", 1222 | "startOffset": 0, 1223 | "yt-id": "ACNwMzZejQQ", 1224 | "songs": [ 1225 | 528136 1226 | ] 1227 | }, 1228 | { 1229 | "name": "@SrGuillester canta ErebuS (song remix) by Manuelito juega | Geometry Dash", 1230 | "artist": "Manuelito Juega", 1231 | "source": "youtube", 1232 | "startOffset": 0, 1233 | "yt-id": "t4NX9G1XqSA", 1234 | "songs": [ 1235 | 462681 1236 | ] 1237 | }, 1238 | { 1239 | "name": "fingerbang real", 1240 | "artist": "mdk", 1241 | "source": "youtube", 1242 | "startOffset": 0, 1243 | "yt-id": "BuPmq7yjDnI", 1244 | "songs": [ 1245 | 757266 1246 | ] 1247 | }, 1248 | { 1249 | "name": "Blast Processing (Zedrick Remix)", 1250 | "artist": "Zedrick", 1251 | "source": "youtube", 1252 | "startOffset": 0, 1253 | "yt-id": "pxdapEl0vQU", 1254 | "songs": [ 1255 | 16 1256 | ] 1257 | }, 1258 | { 1259 | "name": "Polargeist (AD Remix)", 1260 | "artist": "Eleme NTRIX", 1261 | "source": "youtube", 1262 | "startOffset": 0, 1263 | "yt-id": "OD24JxwJZ-4", 1264 | "songs": [ 1265 | 2 1266 | ] 1267 | }, 1268 | { 1269 | "name": "KOCMOC killoway cover", 1270 | "artist": "killoway", 1271 | "source": "youtube", 1272 | "startOffset": 81000, 1273 | "yt-id": "ioXKzmMcyao", 1274 | "songs": [ 1275 | 1163222 1276 | ] 1277 | }, 1278 | { 1279 | "name": "At The Speed Of Light (Josh/Neo Orchestral Remix)", 1280 | "artist": "ItzRealMR", 1281 | "source": "youtube", 1282 | "startOffset": 1000, 1283 | "yt-id": "Ia1eGZBqrnw", 1284 | "songs": [ 1285 | 467339 1286 | ] 1287 | }, 1288 | { 1289 | "name": "9. Symphony 4th movement (Ode to Joy)", 1290 | "artist": "Ludwig van Beethoven", 1291 | "source": "youtube", 1292 | "startOffset": 4000, 1293 | "yt-id": "XRCe86HVSJw", 1294 | "songs": [ 1295 | 92569 1296 | ] 1297 | }, 1298 | { 1299 | "name": "Creo - Spere X Rhett & Link: Nerd vs Geek rap battle. Mashup", 1300 | "artist": "Creo, Rhett, Link, RaQwA, Dorito0910", 1301 | "source": "youtube", 1302 | "startOffset": 0, 1303 | "yt-id": "HkHrc7S9-xk", 1304 | "songs": [ 1305 | 739991 1306 | ] 1307 | }, 1308 | { 1309 | "name": "Candyland [NCS Release]", 1310 | "artist": "Tobu", 1311 | "source": "youtube", 1312 | "startOffset": 0, 1313 | "yt-id": "bJ-ldzTkJEA", 1314 | "songs": [ 1315 | 620710 1316 | ] 1317 | }, 1318 | { 1319 | "name": "ToE 2 x Final Theory (full)", 1320 | "artist": "DJ-Nate", 1321 | "source": "youtube", 1322 | "startOffset": 0, 1323 | "yt-id": "6P9OTt1cguA", 1324 | "songs": [ 1325 | 790340 1326 | ] 1327 | }, 1328 | { 1329 | "name": "Ouais Ouais (ft. SlyLeaf) x Into The Night", 1330 | "artist": "LemKuuja x Yoasobi", 1331 | "source": "youtube", 1332 | "startOffset": 0, 1333 | "yt-id": "4v2FZq2pDg0", 1334 | "songs": [ 1335 | 787153 1336 | ] 1337 | }, 1338 | { 1339 | "name": "Sacala a Bailar", 1340 | "artist": "Gianmarco", 1341 | "source": "youtube", 1342 | "startOffset": 0, 1343 | "yt-id": "suDoDRVdes4", 1344 | "songs": [ 1345 | 1317733 1346 | ] 1347 | }, 1348 | { 1349 | "name": "Infinite Repeating", 1350 | "artist": "Daft Punk", 1351 | "source": "youtube", 1352 | "startOffset": 0, 1353 | "yt-id": "imBlPXbAv6E", 1354 | "songs": [ 1355 | 1000000 1356 | ] 1357 | }, 1358 | { 1359 | "name": "Lost X World Cup", 1360 | "artist": "Bejski", 1361 | "source": "youtube", 1362 | "startOffset": 0, 1363 | "yt-id": "WIvlC88ynDg", 1364 | "songs": [ 1365 | 945695 1366 | ] 1367 | }, 1368 | { 1369 | "name": "Time Leaper x Etzer", 1370 | "artist": "Hinkik", 1371 | "source": "youtube", 1372 | "startOffset": 0, 1373 | "yt-id": "giNn4BdCPw0", 1374 | "songs": [ 1375 | 683996 1376 | ] 1377 | }, 1378 | { 1379 | "name": "Clubstep x Angry Birds Theme (GD Mashup)", 1380 | "artist": "yoot", 1381 | "source": "youtube", 1382 | "startOffset": 0, 1383 | "yt-id": "a8SyA0fTp-M", 1384 | "songs": [ 1385 | 13 1386 | ] 1387 | }, 1388 | { 1389 | "name": "Sphere x Henk Wijngaard", 1390 | "artist": "Creo", 1391 | "source": "youtube", 1392 | "startOffset": 0, 1393 | "yt-id": "FTcyZQMTSyY", 1394 | "songs": [ 1395 | 739991 1396 | ] 1397 | }, 1398 | { 1399 | "name": "Shallow Water", 1400 | "artist": "EPSSounds", 1401 | "source": "youtube", 1402 | "startOffset": 0, 1403 | "yt-id": "qgnWUjagtuY", 1404 | "songs": [ 1405 | 559315 1406 | ] 1407 | }, 1408 | { 1409 | "name": "iLLness LiLin", 1410 | "artist": "Kaneko Chiharu", 1411 | "source": "youtube", 1412 | "startOffset": 0, 1413 | "yt-id": "nvSXjLKJSY4", 1414 | "songs": [ 1415 | 101132 1416 | ] 1417 | }, 1418 | { 1419 | "name": "Precipice", 1420 | "artist": "Aaron Cherof", 1421 | "source": "youtube", 1422 | "startOffset": 0, 1423 | "yt-id": "LwzyuI0wUms", 1424 | "songs": [ 1425 | 683559 1426 | ] 1427 | }, 1428 | { 1429 | "name": "Pikito", 1430 | "artist": "Rusowsky", 1431 | "source": "youtube", 1432 | "startOffset": 0, 1433 | "yt-id": "DPqULcZXuGE", 1434 | "songs": [ 1435 | 19280 1436 | ] 1437 | }, 1438 | { 1439 | "name": "Jumper x Hello", 1440 | "artist": "Waterflame & OMFG", 1441 | "source": "youtube", 1442 | "startOffset": 0, 1443 | "yt-id": "Z_WrSy2muHs", 1444 | "songs": [ 1445 | 6 1446 | ] 1447 | }, 1448 | { 1449 | "name": "Lucy VIP (Elfen Lied)", 1450 | "artist": "Vespar", 1451 | "source": "youtube", 1452 | "startOffset": 0, 1453 | "yt-id": "nZ_wr06K058", 1454 | "songs": [ 1455 | 636526 1456 | ] 1457 | }, 1458 | { 1459 | "name": "It Burns! Burns! Burns!", 1460 | "artist": "Loco Loco", 1461 | "source": "youtube", 1462 | "startOffset": 0, 1463 | "yt-id": "rBhbxVmolTE", 1464 | "songs": [ 1465 | 666666 1466 | ] 1467 | }, 1468 | { 1469 | "name": "Shiawase", 1470 | "artist": "Dion Timmer", 1471 | "source": "youtube", 1472 | "startOffset": 0, 1473 | "yt-id": "ACX8jwUFZlo", 1474 | "songs": [ 1475 | 1255249 1476 | ] 1477 | }, 1478 | { 1479 | "name": "Sonic Blaster x Gas Gas Gas", 1480 | "artist": "FullSound", 1481 | "source": "youtube", 1482 | "startOffset": 0, 1483 | "yt-id": "_eAJV75L_U0", 1484 | "songs": [ 1485 | 574484 1486 | ] 1487 | }, 1488 | { 1489 | "name": "At The Speed of Light (Soullspa Cover)", 1490 | "artist": "Dimrain47", 1491 | "source": "youtube", 1492 | "startOffset": 0, 1493 | "yt-id": "rqfTO2vaKaM", 1494 | "songs": [ 1495 | 467339 1496 | ] 1497 | }, 1498 | { 1499 | "name": "At The Speed of Light (Orchestral Cover)", 1500 | "artist": "Dimrain47", 1501 | "source": "youtube", 1502 | "startOffset": 0, 1503 | "yt-id": "igFwe4Oal2Q", 1504 | "songs": [ 1505 | 467339 1506 | ] 1507 | }, 1508 | { 1509 | "name": "At The Speed of Light (Mixed Mashup)", 1510 | "artist": "Dimrain47", 1511 | "source": "youtube", 1512 | "startOffset": 0, 1513 | "yt-id": "dzag2wMUFok", 1514 | "songs": [ 1515 | 467339 1516 | ] 1517 | }, 1518 | { 1519 | "name": "At The Speed of Light x Face Off", 1520 | "artist": "Dimrain47", 1521 | "source": "youtube", 1522 | "startOffset": 0, 1523 | "yt-id": "Rs6WXfzbgAI", 1524 | "songs": [ 1525 | 467339 1526 | ] 1527 | }, 1528 | { 1529 | "name": "At the speed of light (AutoWronaX remix)", 1530 | "artist": "Dimrain47", 1531 | "source": "youtube", 1532 | "startOffset": 81, 1533 | "yt-id": "s0LGQAd1rHQ", 1534 | "songs": [ 1535 | 467339 1536 | ] 1537 | }, 1538 | { 1539 | "name": "Cradles x Billie Eilish", 1540 | "artist": "Sur Urban", 1541 | "source": "youtube", 1542 | "startOffset": 0, 1543 | "yt-id": "AoRTyenLL4U", 1544 | "songs": [ 1545 | 10011223 1546 | ] 1547 | }, 1548 | { 1549 | "name": "Cradles x Ashnikko (ft. Yung Baby Tate)", 1550 | "artist": "Sur Urban", 1551 | "source": "youtube", 1552 | "startOffset": 0, 1553 | "yt-id": "NOp2wwAyMm8", 1554 | "songs": [ 1555 | 10011223 1556 | ] 1557 | }, 1558 | { 1559 | "name": "Xo (Ab53 Cover)", 1560 | "artist": "Eden\\Ab53", 1561 | "source": "youtube", 1562 | "startOffset": 453, 1563 | "yt-id": "jfEiC7YvPgM", 1564 | "songs": [ 1565 | 766165 1566 | ] 1567 | }, 1568 | { 1569 | "name": "At the Speed of Light x Bad Piggies", 1570 | "artist": "razaplays", 1571 | "source": "youtube", 1572 | "startOffset": 0, 1573 | "yt-id": "bn5eDYEI9_w", 1574 | "songs": [ 1575 | 467339 1576 | ] 1577 | }, 1578 | { 1579 | "name": "Cradles x Ellise", 1580 | "artist": "Sur Urban", 1581 | "source": "youtube", 1582 | "startOffset": 0, 1583 | "yt-id": "IHlpuY2xLg0", 1584 | "songs": [ 1585 | 10011223 1586 | ] 1587 | }, 1588 | { 1589 | "name": "Shiawase (VIP)", 1590 | "artist": "Dion Timmer", 1591 | "source": "youtube", 1592 | "startOffset": 0, 1593 | "yt-id": "G-9EEDWvg9E", 1594 | "songs": [ 1595 | 820717 1596 | ] 1597 | }, 1598 | { 1599 | "name": "Take", 1600 | "artist": "Risshuu & Choko", 1601 | "source": "youtube", 1602 | "startOffset": 0, 1603 | "yt-id": "65Smh8rwdJI", 1604 | "songs": [ 1605 | 1130348 1606 | ] 1607 | }, 1608 | { 1609 | "name": "Shiawase (VIP) x Syn Cole", 1610 | "artist": "Timka", 1611 | "source": "youtube", 1612 | "startOffset": 0, 1613 | "yt-id": "X6ntzRC1tIo", 1614 | "songs": [ 1615 | 1266014 1616 | ] 1617 | }, 1618 | { 1619 | "name": "Clubstep x Lil Baby", 1620 | "artist": "DJ-Nate", 1621 | "source": "youtube", 1622 | "startOffset": 0, 1623 | "yt-id": "we6ky16K8c4", 1624 | "songs": [ 1625 | 13 1626 | ] 1627 | }, 1628 | { 1629 | "name": "Bailan Rochas y Chetas", 1630 | "artist": "Nene Malo", 1631 | "source": "youtube", 1632 | "startOffset": 0, 1633 | "yt-id": "ebmes8Ci7_0", 1634 | "songs": [ 1635 | 56 1636 | ] 1637 | }, 1638 | { 1639 | "name": "Shiawase (Original)", 1640 | "artist": "Dion Timmer", 1641 | "source": "youtube", 1642 | "startOffset": 0, 1643 | "yt-id": "N-V3zqvtbCM", 1644 | "songs": [ 1645 | 1266014 1646 | ] 1647 | }, 1648 | { 1649 | "name": "Path of pain song - Hollow knight", 1650 | "artist": "Christopher Larkin", 1651 | "source": "youtube", 1652 | "startOffset": 0, 1653 | "yt-id": "AQ71AUNdjL0", 1654 | "songs": [ 1655 | 10006026 1656 | ] 1657 | }, 1658 | { 1659 | "name": "Clubstep (Phonk Remix)", 1660 | "artist": "pohgii", 1661 | "source": "youtube", 1662 | "startOffset": 0, 1663 | "yt-id": "EJFM2e7lC54", 1664 | "songs": [ 1665 | 13 1666 | ] 1667 | }, 1668 | { 1669 | "name": "Clubstep (Geno Remix)", 1670 | "artist": "DJ-Nate", 1671 | "source": "youtube", 1672 | "startOffset": 0, 1673 | "yt-id": "1LrH5A2fOuo", 1674 | "songs": [ 1675 | 13 1676 | ] 1677 | }, 1678 | { 1679 | "name": "Clubstep (Geeser Remix) RobTop Cut Ver.", 1680 | "artist": "GeezerOkee", 1681 | "source": "youtube", 1682 | "startOffset": 0, 1683 | "yt-id": "JWUg2ZILWbM", 1684 | "songs": [ 1685 | 13 1686 | ] 1687 | }, 1688 | { 1689 | "name": "Brain Power", 1690 | "artist": "NOMA", 1691 | "source": "youtube", 1692 | "startOffset": 0, 1693 | "yt-id": "ThroGkahQFw", 1694 | "songs": [ 1695 | 1299591 1696 | ] 1697 | }, 1698 | { 1699 | "name": "Brain Power", 1700 | "artist": "NOMA", 1701 | "source": "youtube", 1702 | "startOffset": 0, 1703 | "yt-id": "ThroGkahQFw", 1704 | "songs": [ 1705 | 1299591 1706 | ] 1707 | }, 1708 | { 1709 | "name": "Master of Puppets (remastered)", 1710 | "artist": "Metallica", 1711 | "source": "youtube", 1712 | "startOffset": 0, 1713 | "yt-id": "kU0vHfMcRoc", 1714 | "songs": [ 1715 | 21152 1716 | ] 1717 | }, 1718 | { 1719 | "name": "Wake up", 1720 | "artist": "Kayzo, Riot", 1721 | "source": "youtube", 1722 | "startOffset": 0, 1723 | "yt-id": "FwSpKQaksVw", 1724 | "songs": [ 1725 | 535970 1726 | ] 1727 | }, 1728 | { 1729 | "name": "Acheron But Wulzy Sings It (AI COVER)", 1730 | "artist": "bobliver", 1731 | "source": "youtube", 1732 | "startOffset": 0, 1733 | "yt-id": "3W4hLPg8t2Q", 1734 | "songs": [ 1735 | 770520 1736 | ] 1737 | }, 1738 | { 1739 | "name": "Back on Track Piano Cover (working)", 1740 | "artist": "Symphoniac", 1741 | "source": "youtube", 1742 | "startOffset": 9800, 1743 | "yt-id": "QXnLoEW2_Ss", 1744 | "songs": [ 1745 | 1 1746 | ] 1747 | }, 1748 | { 1749 | "name": "Shiawase (VIP) x Shiawase", 1750 | "artist": "Dion Timmer", 1751 | "source": "youtube", 1752 | "startOffset": 0, 1753 | "yt-id": "zxtP_3htJhQ", 1754 | "songs": [ 1755 | 1266014 1756 | ] 1757 | }, 1758 | { 1759 | "name": "Shiawase (VIP) x Jay Eazy", 1760 | "artist": "Dion Timmer", 1761 | "source": "youtube", 1762 | "startOffset": 0, 1763 | "yt-id": "Xz3Ys4TyuYQ", 1764 | "songs": [ 1765 | 1266014 1766 | ] 1767 | }, 1768 | { 1769 | "name": "Clubstep X Party Rock Anthem", 1770 | "artist": "DJ Nate", 1771 | "source": "youtube", 1772 | "startOffset": 0, 1773 | "yt-id": "K1A82eiTxuE", 1774 | "songs": [ 1775 | 13 1776 | ] 1777 | }, 1778 | { 1779 | "name": "At The Speed Of Light (2023 Phonk Remix)", 1780 | "artist": "sxdboy", 1781 | "source": "youtube", 1782 | "startOffset": 0, 1783 | "yt-id": "qL6eG4OCPOs", 1784 | "songs": [ 1785 | 467339 1786 | ] 1787 | }, 1788 | { 1789 | "name": "At the Speed of Light (Garageband Remake)", 1790 | "artist": "UI_Bourne", 1791 | "source": "youtube", 1792 | "startOffset": 270, 1793 | "yt-id": "WtYPOwB_RW8", 1794 | "songs": [ 1795 | 467339 1796 | ] 1797 | }, 1798 | { 1799 | "name": "Polargeist Piano Cover", 1800 | "artist": "Symphoniac", 1801 | "source": "youtube", 1802 | "startOffset": 7700, 1803 | "yt-id": "hmaMeW0M6bQ", 1804 | "songs": [ 1805 | 2 1806 | ] 1807 | }, 1808 | { 1809 | "name": "Dry Out Piano Cover", 1810 | "artist": "Symphoniac", 1811 | "source": "youtube", 1812 | "startOffset": 9269, 1813 | "yt-id": "sj0k9f2rVDI", 1814 | "songs": [ 1815 | 3 1816 | ] 1817 | }, 1818 | { 1819 | "name": "Base After Base Piano Cover", 1820 | "artist": "Symphoniac", 1821 | "source": "youtube", 1822 | "startOffset": 9300, 1823 | "yt-id": "g6TMgQnydNI", 1824 | "songs": [ 1825 | 4 1826 | ] 1827 | }, 1828 | { 1829 | "name": "Cant Let Go Piano Cover", 1830 | "artist": "Symphoniac", 1831 | "source": "youtube", 1832 | "startOffset": 9250, 1833 | "yt-id": "9MzCxt1QpWg", 1834 | "songs": [ 1835 | 5 1836 | ] 1837 | }, 1838 | { 1839 | "name": "Jumper Piano Cover", 1840 | "artist": "Symphoniac", 1841 | "source": "youtube", 1842 | "startOffset": 9300, 1843 | "yt-id": "3_nnp2PHeBY", 1844 | "songs": [ 1845 | 6 1846 | ] 1847 | }, 1848 | { 1849 | "name": "Time Machine Piano Cover", 1850 | "artist": "Symphoniac", 1851 | "source": "youtube", 1852 | "startOffset": 7350, 1853 | "yt-id": "3Y7HEAgp9MM", 1854 | "songs": [ 1855 | 7 1856 | ] 1857 | }, 1858 | { 1859 | "name": "Cycles Piano Cover", 1860 | "artist": "Symphoniac", 1861 | "source": "youtube", 1862 | "startOffset": 9425, 1863 | "yt-id": "GUSuy73XnD8", 1864 | "songs": [ 1865 | 8 1866 | ] 1867 | }, 1868 | { 1869 | "name": "xStep Piano Cover", 1870 | "artist": "Symphoniac", 1871 | "source": "youtube", 1872 | "startOffset": 9200, 1873 | "yt-id": "p2IRRWbJTck", 1874 | "songs": [ 1875 | 9 1876 | ] 1877 | }, 1878 | { 1879 | "name": "Clutterfunk Piano Cover", 1880 | "artist": "Symphoniac", 1881 | "source": "youtube", 1882 | "startOffset": 9400, 1883 | "yt-id": "gqYf7RSceng", 1884 | "songs": [ 1885 | 10 1886 | ] 1887 | }, 1888 | { 1889 | "name": "Theory of Everything Piano Cover", 1890 | "artist": "Symphoniac", 1891 | "source": "youtube", 1892 | "startOffset": 9200, 1893 | "yt-id": "JwaZenpZask", 1894 | "songs": [ 1895 | 11 1896 | ] 1897 | }, 1898 | { 1899 | "name": "Electroman Adventures Piano Cover", 1900 | "artist": "Symphoniac", 1901 | "source": "youtube", 1902 | "startOffset": 9150, 1903 | "yt-id": "M0PnYXH3fTA", 1904 | "songs": [ 1905 | 12 1906 | ] 1907 | }, 1908 | { 1909 | "name": "Candyland", 1910 | "artist": "Tobu, 7obu", 1911 | "source": "youtube", 1912 | "startOffset": 0, 1913 | "yt-id": "IhchfhxvPKI", 1914 | "songs": [ 1915 | 620710 1916 | ] 1917 | }, 1918 | { 1919 | "name": "Nova", 1920 | "artist": "Ahrix", 1921 | "source": "youtube", 1922 | "startOffset": 0, 1923 | "yt-id": "X5mcY8ecs8I", 1924 | "songs": [ 1925 | 592052 1926 | ] 1927 | }, 1928 | { 1929 | "name": "At The Speed Of Light x Evoke", 1930 | "artist": "Dimrain47", 1931 | "source": "youtube", 1932 | "startOffset": 0, 1933 | "yt-id": "9TUWORf1n4A", 1934 | "songs": [ 1935 | 467339 1936 | ] 1937 | }, 1938 | { 1939 | "name": "Shiawase VIP (Super High Pitch)", 1940 | "artist": "Dion Timmer", 1941 | "source": "youtube", 1942 | "startOffset": 0, 1943 | "yt-id": "McbbV4XX4jM", 1944 | "songs": [ 1945 | 1266014 1946 | ] 1947 | }, 1948 | { 1949 | "name": "Five Nights At Freedy's 3 \"Die In A Fire\"", 1950 | "artist": "The Living Tombstone, EileMonty, Orko", 1951 | "source": "youtube", 1952 | "startOffset": 0, 1953 | "yt-id": "AibtyCAhyQE", 1954 | "songs": [ 1955 | 697828 1956 | ] 1957 | }, 1958 | { 1959 | "name": "Se** And I Know It", 1960 | "artist": "LMFAO", 1961 | "source": "youtube", 1962 | "startOffset": 0, 1963 | "yt-id": "wyx6JDQCslE", 1964 | "songs": [ 1965 | 593621 1966 | ] 1967 | }, 1968 | { 1969 | "name": "Reborn", 1970 | "artist": "Ahrix", 1971 | "source": "youtube", 1972 | "startOffset": 0, 1973 | "yt-id": "TPxh7W3Jdrc", 1974 | "songs": [ 1975 | 593057 1976 | ] 1977 | }, 1978 | { 1979 | "name": "E-Labyrinth (Rolling Sky Soundtrack)", 1980 | "artist": "Cheetah Mobile", 1981 | "source": "youtube", 1982 | "startOffset": 0, 1983 | "yt-id": "p4QxNPMnCKI", 1984 | "songs": [ 1985 | 746536 1986 | ] 1987 | }, 1988 | { 1989 | "name": "Walk Thru Fire", 1990 | "artist": "Vicetone, Meron Ryan", 1991 | "source": "youtube", 1992 | "startOffset": 0, 1993 | "yt-id": "kRauptdx_Is", 1994 | "songs": [ 1995 | 1 1996 | ] 1997 | }, 1998 | { 1999 | "name": "The Beginning", 2000 | "artist": "MrDumbDuck", 2001 | "source": "youtube", 2002 | "startOffset": 0, 2003 | "yt-id": "OefS5GdZxgw", 2004 | "songs": [ 2005 | 1343173 2006 | ] 2007 | }, 2008 | { 2009 | "name": "Yamada Perfect", 2010 | "artist": "jon-YAKITORY", 2011 | "source": "youtube", 2012 | "startOffset": 0, 2013 | "yt-id": "zGMftuCqLhk", 2014 | "songs": [ 2015 | 1001 2016 | ] 2017 | }, 2018 | { 2019 | "name": "Clubstep Piano Cover", 2020 | "artist": "Symphoniac", 2021 | "source": "youtube", 2022 | "startOffset": 9400, 2023 | "yt-id": "tvp8UogZFcc", 2024 | "songs": [ 2025 | 13 2026 | ] 2027 | }, 2028 | { 2029 | "name": "Press Start (Dex Arson Remix)", 2030 | "artist": "Dex Arson", 2031 | "source": "youtube", 2032 | "startOffset": 0, 2033 | "yt-id": "vleeZOEzkhE", 2034 | "songs": [ 2035 | 809899 2036 | ] 2037 | }, 2038 | { 2039 | "name": "Lost x Do You Rememeber The Rain", 2040 | "artist": "Crim3s", 2041 | "source": "youtube", 2042 | "startOffset": 0, 2043 | "yt-id": "b6fxlLSbqWk", 2044 | "songs": [ 2045 | 945695 2046 | ] 2047 | }, 2048 | { 2049 | "name": "At The Speed of Light (High Pitch)", 2050 | "artist": "Dimrain47", 2051 | "source": "youtube", 2052 | "startOffset": 0, 2053 | "yt-id": "BbPIcvaFafQ", 2054 | "songs": [ 2055 | 467339 2056 | ] 2057 | }, 2058 | { 2059 | "name": "Sonic Blaster x Spin Me Around", 2060 | "artist": "F-777", 2061 | "source": "youtube", 2062 | "startOffset": 0, 2063 | "yt-id": "2Fd8QAhddtw", 2064 | "songs": [ 2065 | 574484 2066 | ] 2067 | }, 2068 | { 2069 | "name": "Eternal Blaster", 2070 | "artist": "vvxcrystl", 2071 | "source": "youtube", 2072 | "startOffset": 0, 2073 | "yt-id": "A6e4PTui8LU", 2074 | "songs": [ 2075 | 574484 2076 | ] 2077 | }, 2078 | { 2079 | "name": "Electrodynamix Piano Cover", 2080 | "artist": "Symphoniac", 2081 | "source": "youtube", 2082 | "startOffset": 9150, 2083 | "yt-id": "kHAEWb8oShQ", 2084 | "songs": [ 2085 | 14 2086 | ] 2087 | }, 2088 | { 2089 | "name": "Hexagon Force Piano Cover", 2090 | "artist": "Symphoniac", 2091 | "source": "youtube", 2092 | "startOffset": 9100, 2093 | "yt-id": "6vcVT4S5l9o", 2094 | "songs": [ 2095 | 15 2096 | ] 2097 | }, 2098 | { 2099 | "name": "SS", 2100 | "artist": "Ken Carson", 2101 | "source": "youtube", 2102 | "startOffset": 0, 2103 | "yt-id": "TMzs6GvsZXU", 2104 | "songs": [ 2105 | 83671 2106 | ] 2107 | }, 2108 | { 2109 | "name": "Storyteller", 2110 | "artist": "Daisuke Ishiwatari", 2111 | "source": "youtube", 2112 | "startOffset": 0, 2113 | "yt-id": "mg8_7SfwdfY", 2114 | "songs": [ 2115 | 769216 2116 | ] 2117 | }, 2118 | { 2119 | "name": "Spooky Scary Skeletons (TLT Remix)", 2120 | "artist": "The Living Tombstone", 2121 | "source": "youtube", 2122 | "startOffset": 0, 2123 | "yt-id": "q6-ZGAGcJrk", 2124 | "songs": [ 2125 | 593260 2126 | ] 2127 | }, 2128 | { 2129 | "name": "~:Lunar Abyss:~ (Piano Cover)", 2130 | "artist": "PNG", 2131 | "source": "youtube", 2132 | "startOffset": 1800, 2133 | "yt-id": "8FilFU39rPc", 2134 | "songs": [ 2135 | 645631 2136 | ] 2137 | }, 2138 | { 2139 | "name": "~:Lunar Abyss:~ x Bad Apple", 2140 | "artist": "lchavasse", 2141 | "source": "youtube", 2142 | "startOffset": 0, 2143 | "yt-id": "jkt0pbh8SGo", 2144 | "songs": [ 2145 | 645631 2146 | ] 2147 | }, 2148 | { 2149 | "name": "Betrayal of Fear x Dragonforce", 2150 | "artist": "Goukisan", 2151 | "source": "youtube", 2152 | "startOffset": 0, 2153 | "yt-id": "ZW4UxnlRiDI", 2154 | "songs": [ 2155 | 167229 2156 | ] 2157 | }, 2158 | { 2159 | "name": "Clubstep x Low", 2160 | "artist": "GDmashup", 2161 | "source": "youtube", 2162 | "startOffset": 0, 2163 | "yt-id": "hhe5L2LGcx8", 2164 | "songs": [ 2165 | 13 2166 | ] 2167 | }, 2168 | { 2169 | "name": "Clutterfunk (Bad Apple Remix)", 2170 | "artist": "FadedConnerMario123", 2171 | "source": "youtube", 2172 | "startOffset": 300, 2173 | "yt-id": "7KNUEC3nbok", 2174 | "songs": [ 2175 | 10 2176 | ] 2177 | }, 2178 | { 2179 | "name": "Electroman Adventure (Bad Apple Remix)", 2180 | "artist": "FadedConnerMario123", 2181 | "source": "youtube", 2182 | "startOffset": 1800, 2183 | "yt-id": "ZvfDJCpyAGc", 2184 | "songs": [ 2185 | 12 2186 | ] 2187 | }, 2188 | { 2189 | "name": "Crystal Falls", 2190 | "artist": "1nf1n1ty", 2191 | "source": "youtube", 2192 | "startOffset": 0, 2193 | "yt-id": "7TqQ6tuOw2U", 2194 | "songs": [ 2195 | 646866 2196 | ] 2197 | }, 2198 | { 2199 | "name": "Peer Gynt x Eminem", 2200 | "artist": "cYsmix", 2201 | "source": "youtube", 2202 | "startOffset": 0, 2203 | "yt-id": "3U7A-cShWVk", 2204 | "songs": [ 2205 | 724710 2206 | ] 2207 | }, 2208 | { 2209 | "name": "Peepee Song", 2210 | "artist": "BoomKitty", 2211 | "source": "youtube", 2212 | "startOffset": 0, 2213 | "yt-id": "lItzkd_nqYc", 2214 | "songs": [ 2215 | 922510 2216 | ] 2217 | }, 2218 | { 2219 | "name": "Brain Power (Single)", 2220 | "artist": "NOMA", 2221 | "source": "youtube", 2222 | "startOffset": 0, 2223 | "yt-id": "dTGEw_x8d10", 2224 | "songs": [ 2225 | 886681 2226 | ] 2227 | }, 2228 | { 2229 | "name": "GEOMETRY DASH (Main Level Ver)", 2230 | "artist": "MDK", 2231 | "source": "youtube", 2232 | "startOffset": 0, 2233 | "yt-id": "rYt1COPaJ9g", 2234 | "songs": [ 2235 | 21 2236 | ] 2237 | }, 2238 | { 2239 | "name": "Dr. Finkelfracken's Cure x IShowSpeed", 2240 | "artist": "Bossfight", 2241 | "source": "youtube", 2242 | "startOffset": 350, 2243 | "yt-id": "VxmxftfBCSA", 2244 | "songs": [ 2245 | 383158 2246 | ] 2247 | }, 2248 | { 2249 | "name": "I Got No Time (High Pitch)", 2250 | "artist": "The Living Tombstone", 2251 | "source": "youtube", 2252 | "startOffset": 0, 2253 | "yt-id": "bxpPgiE2nkw", 2254 | "songs": [ 2255 | 672264 2256 | ] 2257 | }, 2258 | { 2259 | "name": "Skibididynamix", 2260 | "artist": "DJ-Nate", 2261 | "source": "youtube", 2262 | "startOffset": 0, 2263 | "yt-id": "j_PmyQMynJg", 2264 | "songs": [ 2265 | 14 2266 | ] 2267 | }, 2268 | { 2269 | "name": "Crystalia", 2270 | "artist": "DJ Totto", 2271 | "source": "youtube", 2272 | "startOffset": 0, 2273 | "yt-id": "LtE7SUCl4Yo", 2274 | "songs": [ 2275 | 3412 2276 | ] 2277 | }, 2278 | { 2279 | "name": "Space Invaders x MDK, Virtual Riot, Csx42, Noisestorm", 2280 | "artist": "teminiteofficial", 2281 | "source": "youtube", 2282 | "startOffset": 0, 2283 | "yt-id": "yQdK62c0qLs", 2284 | "songs": [ 2285 | 865364 2286 | ] 2287 | }, 2288 | { 2289 | "name": "Dash (Piano Cover)", 2290 | "artist": "guwunfish", 2291 | "source": "youtube", 2292 | "startOffset": 2300, 2293 | "yt-id": "r_27heTLE8s", 2294 | "songs": [ 2295 | 21 2296 | ] 2297 | }, 2298 | { 2299 | "name": "Disconnected", 2300 | "artist": "Pegboard Nerds", 2301 | "source": "youtube", 2302 | "startOffset": 0, 2303 | "yt-id": "MwSkC85TDgY", 2304 | "songs": [ 2305 | 588960 2306 | ] 2307 | }, 2308 | { 2309 | "name": "Kinetic", 2310 | "artist": "Condukta", 2311 | "source": "youtube", 2312 | "startOffset": 0, 2313 | "yt-id": "4oJiPDcLo60", 2314 | "songs": [ 2315 | 596775 2316 | ] 2317 | }, 2318 | { 2319 | "name": "~BH~ Hell's Maw (Low pitch)", 2320 | "artist": "Blackhole12", 2321 | "source": "youtube", 2322 | "startOffset": 0, 2323 | "yt-id": "oDqZ-U1LQrs", 2324 | "songs": [ 2325 | 120376 2326 | ] 2327 | }, 2328 | { 2329 | "name": "Plug in Baby", 2330 | "artist": "Muse", 2331 | "source": "youtube", 2332 | "startOffset": 0, 2333 | "yt-id": "Kler5kYbRqM", 2334 | "songs": [ 2335 | 306640 2336 | ] 2337 | }, 2338 | { 2339 | "name": "Zodiac Mega Mashup - Sphere x Dame tu cosita, El Pepe, Eso Tilín, Potaxio, Ete Sech", 2340 | "artist": "Yafet", 2341 | "source": "youtube", 2342 | "startOffset": 1, 2343 | "yt-id": "IPNA-gQhb_s", 2344 | "songs": [ 2345 | 739991 2346 | ] 2347 | }, 2348 | { 2349 | "name": "Pedro", 2350 | "artist": "Raffaella Carra", 2351 | "source": "youtube", 2352 | "startOffset": 0, 2353 | "yt-id": "OCZIzzQpJUw", 2354 | "songs": [ 2355 | 1987 2356 | ] 2357 | }, 2358 | { 2359 | "name": "Pedro", 2360 | "artist": "Raffaella Carra", 2361 | "source": "youtube", 2362 | "startOffset": 0, 2363 | "yt-id": "OCZIzzQpJUw", 2364 | "songs": [ 2365 | 1 2366 | ] 2367 | }, 2368 | { 2369 | "name": "Gas Gas Gas", 2370 | "artist": "Manuel", 2371 | "source": "youtube", 2372 | "startOffset": 0, 2373 | "yt-id": "atufSv2bLa8", 2374 | "songs": [ 2375 | 794665 2376 | ] 2377 | }, 2378 | { 2379 | "name": "dash full", 2380 | "artist": "MDK", 2381 | "source": "youtube", 2382 | "startOffset": 0, 2383 | "yt-id": "ljEWEfSr0zQ", 2384 | "songs": [ 2385 | 10007220 2386 | ] 2387 | }, 2388 | { 2389 | "name": "i dont wna cry", 2390 | "artist": "kurfew", 2391 | "source": "youtube", 2392 | "startOffset": 0, 2393 | "yt-id": "Y2CRe4z0P4I", 2394 | "songs": [ 2395 | 1303372 2396 | ] 2397 | }, 2398 | { 2399 | "name": "FUN 2 RHYME (English)", 2400 | "artist": "HOward MOody", 2401 | "source": "youtube", 2402 | "startOffset": 0, 2403 | "yt-id": "KiiTjwrOKjk", 2404 | "songs": [ 2405 | 1255249 2406 | ] 2407 | }, 2408 | { 2409 | "name": "Idols", 2410 | "artist": "Virtual Riot", 2411 | "source": "youtube", 2412 | "startOffset": 0, 2413 | "yt-id": "vZyenjZseXA", 2414 | "songs": [ 2415 | 794165 2416 | ] 2417 | }, 2418 | { 2419 | "name": "? x (Original + Piano)", 2420 | "artist": "Schtiffles", 2421 | "source": "youtube", 2422 | "startOffset": 0, 2423 | "yt-id": "be2H3mhtL_4", 2424 | "songs": [ 2425 | 727020 2426 | ] 2427 | }, 2428 | { 2429 | "name": "Life goes on", 2430 | "artist": "Oliver Tree", 2431 | "source": "youtube", 2432 | "startOffset": 0, 2433 | "yt-id": "8F2s8ivKXNY", 2434 | "songs": [ 2435 | 101010 2436 | ] 2437 | }, 2438 | { 2439 | "name": "Stereo Madness (Lyrics Version)", 2440 | "artist": "64Beastyman", 2441 | "source": "youtube", 2442 | "startOffset": 0, 2443 | "yt-id": "NA_CG-_mCIQ", 2444 | "songs": [ 2445 | 500476 2446 | ] 2447 | }, 2448 | { 2449 | "name": "time machine x n in paris", 2450 | "artist": "Xer07", 2451 | "source": "youtube", 2452 | "startOffset": 0, 2453 | "yt-id": "r-hYnjWRAGk", 2454 | "songs": [ 2455 | 7 2456 | ] 2457 | }, 2458 | { 2459 | "name": "At The Speed of Light x Squid Game vs. MrBeast", 2460 | "artist": "nadire", 2461 | "source": "youtube", 2462 | "startOffset": 0, 2463 | "yt-id": "ZEomMdwe77w", 2464 | "songs": [ 2465 | 467339 2466 | ] 2467 | }, 2468 | { 2469 | "name": "In The End", 2470 | "artist": "Linkin Park", 2471 | "source": "youtube", 2472 | "startOffset": 0, 2473 | "yt-id": "eVTXPUF4Oz4", 2474 | "songs": [ 2475 | 756941 2476 | ] 2477 | }, 2478 | { 2479 | "name": "Sphere x Everybody", 2480 | "artist": "Creo / Backstreet Boys", 2481 | "source": "youtube", 2482 | "startOffset": 0, 2483 | "yt-id": "-qkNdh5_Sjo", 2484 | "songs": [ 2485 | 739991 2486 | ] 2487 | }, 2488 | { 2489 | "name": "The Rumbling", 2490 | "artist": "AOT", 2491 | "source": "youtube", 2492 | "startOffset": 0, 2493 | "yt-id": "2S4qGKmzBJE", 2494 | "songs": [ 2495 | 25 2496 | ] 2497 | }, 2498 | { 2499 | "name": "UP!", 2500 | "artist": "Connor Price & Forrest Frank", 2501 | "source": "youtube", 2502 | "startOffset": 0, 2503 | "yt-id": "wCw-W-2Rs0k", 2504 | "songs": [ 2505 | 71421 2506 | ] 2507 | }, 2508 | { 2509 | "name": "After Dark", 2510 | "artist": "Mr.Kitty", 2511 | "source": "youtube", 2512 | "startOffset": 0, 2513 | "yt-id": "sVx1mJDeUjY", 2514 | "songs": [ 2515 | 1139004 2516 | ] 2517 | }, 2518 | { 2519 | "name": "Sonic Blaster x Bad Apple", 2520 | "artist": "F-777 x Alstroemeria Records (AlexeyElCrack_)", 2521 | "source": "youtube", 2522 | "startOffset": 0, 2523 | "yt-id": "Tm7cQqVaafY", 2524 | "songs": [ 2525 | 574484 2526 | ] 2527 | }, 2528 | { 2529 | "name": "Discord", 2530 | "artist": "The Living Tombstone", 2531 | "source": "youtube", 2532 | "startOffset": 0, 2533 | "yt-id": "5Z56MZFMp0k", 2534 | "songs": [ 2535 | 120374 2536 | ] 2537 | }, 2538 | { 2539 | "name": "Discord", 2540 | "artist": "The Living Tombstone", 2541 | "source": "youtube", 2542 | "startOffset": 0, 2543 | "yt-id": "5Z56MZFMp0k", 2544 | "songs": [ 2545 | 595320 2546 | ] 2547 | }, 2548 | { 2549 | "name": "Blast Processing Piano Cover", 2550 | "artist": "Symphoniac", 2551 | "source": "youtube", 2552 | "startOffset": 9400, 2553 | "yt-id": "-e2Fn9rTQ90", 2554 | "songs": [ 2555 | 16 2556 | ] 2557 | }, 2558 | { 2559 | "name": "I Like Me Better", 2560 | "artist": "Lauv", 2561 | "source": "youtube", 2562 | "startOffset": 0, 2563 | "yt-id": "a7fzkqLozwA", 2564 | "songs": [ 2565 | 922190 2566 | ] 2567 | }, 2568 | { 2569 | "name": "Kocmoc Evacore Remix V2", 2570 | "artist": "Evacore", 2571 | "source": "youtube", 2572 | "startOffset": 0, 2573 | "yt-id": "tHnbChc_5UU", 2574 | "songs": [ 2575 | 6666 2576 | ] 2577 | }, 2578 | { 2579 | "name": "Electrodynamix (Digital Liquid Remix) RobTop Cut Ver.", 2580 | "artist": "LiquaFusion", 2581 | "source": "youtube", 2582 | "startOffset": 0, 2583 | "yt-id": "MiC_3be2VbM", 2584 | "songs": [ 2585 | 14 2586 | ] 2587 | }, 2588 | { 2589 | "name": "It's Been So Long (FNAF Remix/Cover)", 2590 | "artist": "APAngryPiggy", 2591 | "source": "youtube", 2592 | "startOffset": 0, 2593 | "yt-id": "P4zBEiMTnAo", 2594 | "songs": [ 2595 | 600915 2596 | ] 2597 | }, 2598 | { 2599 | "name": "Take A Slice", 2600 | "artist": "Glass Animals", 2601 | "source": "youtube", 2602 | "startOffset": 0, 2603 | "yt-id": "wEtypAUozk0", 2604 | "songs": [ 2605 | 972002 2606 | ] 2607 | }, 2608 | { 2609 | "name": "Bling-bang-bang-born", 2610 | "artist": "Creepy Nuts", 2611 | "source": "youtube", 2612 | "startOffset": 0, 2613 | "yt-id": "mLW35YMzELE", 2614 | "songs": [ 2615 | 102030 2616 | ] 2617 | }, 2618 | { 2619 | "name": "Clubstep x Rihanna", 2620 | "artist": "miky", 2621 | "source": "youtube", 2622 | "startOffset": 0, 2623 | "yt-id": "5CatgOY5jbU", 2624 | "songs": [ 2625 | 396093 2626 | ] 2627 | }, 2628 | { 2629 | "name": "You Dashed in the Wrong Gauntlet 2", 2630 | "artist": "PixlTheAxolotl", 2631 | "source": "youtube", 2632 | "startOffset": 0, 2633 | "yt-id": "4vHDsm3_cU8", 2634 | "songs": [ 2635 | 372823 2636 | ] 2637 | }, 2638 | { 2639 | "name": "Voulez Vous", 2640 | "artist": "ABBA", 2641 | "source": "youtube", 2642 | "startOffset": 0, 2643 | "yt-id": "za05HBtGsgU", 2644 | "songs": [ 2645 | 2487 2646 | ] 2647 | }, 2648 | { 2649 | "name": "Crossing Field", 2650 | "artist": "LiSA", 2651 | "source": "youtube", 2652 | "startOffset": 0, 2653 | "yt-id": "KId6eunoiWk", 2654 | "songs": [ 2655 | 574678 2656 | ] 2657 | }, 2658 | { 2659 | "name": "A Nebula Inside", 2660 | "artist": "ELFL", 2661 | "source": "youtube", 2662 | "startOffset": 0, 2663 | "yt-id": "lMLyqDpSgGM", 2664 | "songs": [ 2665 | 156693 2666 | ] 2667 | }, 2668 | { 2669 | "name": "Clutterfunk X Rap God Mashup", 2670 | "artist": "Debug78", 2671 | "source": "youtube", 2672 | "startOffset": 0, 2673 | "yt-id": "hZ7w4KylA1k", 2674 | "songs": [ 2675 | 505816 2676 | ] 2677 | }, 2678 | { 2679 | "name": "[Orchestral Dubstep] Rukkus - Nine Circles [PastaYaY Remix]", 2680 | "artist": "PastaYaY", 2681 | "source": "youtube", 2682 | "startOffset": 0, 2683 | "yt-id": "cr9pRZIidyM", 2684 | "songs": [ 2685 | 533927 2686 | ] 2687 | }, 2688 | { 2689 | "name": "Final Boss", 2690 | "artist": "Nitro Fun", 2691 | "source": "youtube", 2692 | "startOffset": 0, 2693 | "yt-id": "VGh5DV0D3wk", 2694 | "songs": [ 2695 | 1058425 2696 | ] 2697 | }, 2698 | { 2699 | "name": "ATM III", 2700 | "artist": "FirstFeel, MZLFF and more", 2701 | "source": "youtube", 2702 | "startOffset": 0, 2703 | "yt-id": "YYYn1_Vto78", 2704 | "songs": [ 2705 | 12345 2706 | ] 2707 | }, 2708 | { 2709 | "name": "Kerosene *REAL*", 2710 | "artist": "Crystal Castles", 2711 | "source": "youtube", 2712 | "startOffset": 0, 2713 | "yt-id": "qR2QIJdtgiU", 2714 | "songs": [ 2715 | 785995 2716 | ] 2717 | }, 2718 | { 2719 | "name": "magic touch x never gonna give you up (PILLife)", 2720 | "artist": "Romos, Rick Asley", 2721 | "source": "youtube", 2722 | "startOffset": 500, 2723 | "yt-id": "Sdh_AVYAV1c", 2724 | "songs": [ 2725 | 595342 2726 | ] 2727 | }, 2728 | { 2729 | "name": "2 Phut Hon", 2730 | "artist": "Phao x Masew", 2731 | "source": "youtube", 2732 | "startOffset": 0, 2733 | "yt-id": "MxXKfq86E0I", 2734 | "songs": [ 2735 | 123231 2736 | ] 2737 | }, 2738 | { 2739 | "name": "dry out rmx", 2740 | "artist": "djvi (rmx by robotic wisp)", 2741 | "source": "youtube", 2742 | "startOffset": 0, 2743 | "yt-id": "Qpa-ETxt5Vg", 2744 | "songs": [ 2745 | 3 2746 | ] 2747 | }, 2748 | { 2749 | "name": "STAYSOLD - TEMPLAR", 2750 | "artist": "STAYSOLD", 2751 | "source": "youtube", 2752 | "startOffset": 0, 2753 | "yt-id": "qQqQvJTYdfg", 2754 | "songs": [ 2755 | 102995 2756 | ] 2757 | }, 2758 | { 2759 | "name": "Meteor Shower", 2760 | "artist": "cavetown", 2761 | "source": "youtube", 2762 | "startOffset": 0, 2763 | "yt-id": "vxG1HlT8n-I", 2764 | "songs": [ 2765 | 56 2766 | ] 2767 | }, 2768 | { 2769 | "name": "Broken Games", 2770 | "artist": "Shangri-la Frontier", 2771 | "source": "youtube", 2772 | "startOffset": 0, 2773 | "yt-id": "GasIaj6iNOU", 2774 | "songs": [ 2775 | 1124343 2776 | ] 2777 | }, 2778 | { 2779 | "name": "Flashback", 2780 | "artist": "Frizk", 2781 | "source": "youtube", 2782 | "startOffset": 0, 2783 | "yt-id": "yfSIWCjIayc", 2784 | "songs": [ 2785 | 1262691 2786 | ] 2787 | }, 2788 | { 2789 | "name": "Classic Pursuit (Low Pitch)", 2790 | "artist": "cYsmix", 2791 | "source": "youtube", 2792 | "startOffset": 152500, 2793 | "yt-id": "F6M38Rsv9YA", 2794 | "songs": [ 2795 | 718171 2796 | ] 2797 | }, 2798 | { 2799 | "name": "Everdream", 2800 | "artist": "The Living Proof", 2801 | "source": "youtube", 2802 | "startOffset": 0, 2803 | "yt-id": "WbwKZyv4izQ", 2804 | "songs": [ 2805 | 123 2806 | ] 2807 | }, 2808 | { 2809 | "name": "Sphere ultimate mashup", 2810 | "artist": "Creo, Miranda Cosgrove, eminem, El chombo, Dj jazzy jeff, will smith, doja cat, backstreet boys, kanye west, childish gambino, the living tombstone", 2811 | "source": "youtube", 2812 | "startOffset": 23, 2813 | "yt-id": "vtaUc-9_554", 2814 | "songs": [ 2815 | 739991 2816 | ] 2817 | }, 2818 | { 2819 | "name": "Sonic Blaster - F777 (DOKI DOKI WAKU WAKU Remix) FULL", 2820 | "artist": "EpikDARK", 2821 | "source": "youtube", 2822 | "startOffset": 0, 2823 | "yt-id": "g7tKsJiCNcI", 2824 | "songs": [ 2825 | 574484 2826 | ] 2827 | }, 2828 | { 2829 | "name": "racing into the night (vietnamese ver)", 2830 | "artist": "Lacie⭐DesuKa?", 2831 | "source": "youtube", 2832 | "startOffset": 0, 2833 | "yt-id": "9Q5DKUYNewo", 2834 | "songs": [ 2835 | 1024087 2836 | ] 2837 | }, 2838 | { 2839 | "name": "Seirogan 2000", 2840 | "artist": "saradisk", 2841 | "source": "youtube", 2842 | "startOffset": 0, 2843 | "yt-id": "mx90x5wsDT0", 2844 | "songs": [ 2845 | 69420 2846 | ] 2847 | }, 2848 | { 2849 | "name": "Me And The Birds (Sisyphus Song)", 2850 | "artist": "Duster", 2851 | "source": "youtube", 2852 | "startOffset": 0, 2853 | "yt-id": "YI2201OepoY", 2854 | "songs": [ 2855 | 1 2856 | ] 2857 | }, 2858 | { 2859 | "name": "Akzeriyyuth", 2860 | "artist": "Feryquitous", 2861 | "source": "youtube", 2862 | "startOffset": 0, 2863 | "yt-id": "Ri2NKT7107k", 2864 | "songs": [ 2865 | 1 2866 | ] 2867 | }, 2868 | { 2869 | "name": "Sphere x Leviating", 2870 | "artist": "Nightvail Team", 2871 | "source": "youtube", 2872 | "startOffset": 23, 2873 | "yt-id": "6qr6GFEvn8Y", 2874 | "songs": [ 2875 | 739991 2876 | ] 2877 | }, 2878 | { 2879 | "name": "TheFatRat - Windfall x Close To The Sun Mashup", 2880 | "artist": "TheFatRat", 2881 | "source": "youtube", 2882 | "startOffset": 0, 2883 | "yt-id": "-QK6lnbNsOA", 2884 | "songs": [ 2885 | 621135 2886 | ] 2887 | }, 2888 | { 2889 | "name": "Stay", 2890 | "artist": "The Kid LAROI, Creo", 2891 | "source": "youtube", 2892 | "startOffset": 3800, 2893 | "yt-id": "WRqfT-8X4Nk", 2894 | "songs": [ 2895 | 732714 2896 | ] 2897 | }, 2898 | { 2899 | "name": "Ice Cave", 2900 | "artist": "Leon Riskin", 2901 | "source": "youtube", 2902 | "startOffset": 0, 2903 | "yt-id": "KpR4AZkQpYM", 2904 | "songs": [ 2905 | 201617 2906 | ] 2907 | }, 2908 | { 2909 | "name": "Honeypie", 2910 | "artist": "JAWNY", 2911 | "source": "youtube", 2912 | "startOffset": 0, 2913 | "yt-id": "9l4YS4h1VqA", 2914 | "songs": [ 2915 | 1000 2916 | ] 2917 | }, 2918 | { 2919 | "name": "Blue Bird", 2920 | "artist": "Ikimonogakari", 2921 | "source": "youtube", 2922 | "startOffset": 2000, 2923 | "yt-id": "0qP9jkdRsYU", 2924 | "songs": [ 2925 | 461609 2926 | ] 2927 | }, 2928 | { 2929 | "name": "the calling chickennugget", 2930 | "artist": "chickennugget", 2931 | "source": "youtube", 2932 | "startOffset": 0, 2933 | "yt-id": "s4MArDdtim0", 2934 | "songs": [ 2935 | 677785 2936 | ] 2937 | }, 2938 | { 2939 | "name": "Phobos x Big Shaq", 2940 | "artist": "Solkrieg", 2941 | "source": "youtube", 2942 | "startOffset": 0, 2943 | "yt-id": "voyk7fXRceY", 2944 | "songs": [ 2945 | 436814 2946 | ] 2947 | }, 2948 | { 2949 | "name": "Barracuda", 2950 | "artist": "NoiseStorm", 2951 | "source": "youtube", 2952 | "startOffset": 0, 2953 | "yt-id": "LGamaKv0zNg", 2954 | "songs": [ 2955 | 1260456 2956 | ] 2957 | }, 2958 | { 2959 | "name": "Baby Hotline", 2960 | "artist": "Jack Stauber", 2961 | "source": "youtube", 2962 | "startOffset": 0, 2963 | "yt-id": "jbTj2M3vmts", 2964 | "songs": [ 2965 | 1000 2966 | ] 2967 | }, 2968 | { 2969 | "name": "BLaze Or Iris", 2970 | "artist": "Phyrnna", 2971 | "source": "youtube", 2972 | "startOffset": 0, 2973 | "yt-id": "TOdjK4pYCUg", 2974 | "songs": [ 2975 | 359229 2976 | ] 2977 | }, 2978 | { 2979 | "name": "Lovely Bastards", 2980 | "artist": "ZWE1HVNDXR and yatashigang", 2981 | "source": "youtube", 2982 | "startOffset": 0, 2983 | "yt-id": "L5zE7EthV1o", 2984 | "songs": [ 2985 | 22222 2986 | ] 2987 | }, 2988 | { 2989 | "name": "enchanted love", 2990 | "artist": "linear ring", 2991 | "source": "youtube", 2992 | "startOffset": 0, 2993 | "yt-id": "qE6mruRB1PA", 2994 | "songs": [ 2995 | 949936 2996 | ] 2997 | }, 2998 | { 2999 | "name": "El Baile de La Gambeta", 3000 | "artist": "Bersuit Vergarabat", 3001 | "source": "youtube", 3002 | "startOffset": 0, 3003 | "yt-id": "DloRRUyJQGU", 3004 | "songs": [ 3005 | 55 3006 | ] 3007 | }, 3008 | { 3009 | "name": "One love", 3010 | "artist": "C.Z kind", 3011 | "source": "youtube", 3012 | "startOffset": 1, 3013 | "yt-id": "dZkOOi-L0aM", 3014 | "songs": [ 3015 | 7864 3016 | ] 3017 | }, 3018 | { 3019 | "name": "Dnyami Nochami", 3020 | "artist": "Pyrokinesis, MYKKA", 3021 | "source": "youtube", 3022 | "startOffset": 0, 3023 | "yt-id": "zY7yvZcZIoE", 3024 | "songs": [ 3025 | 928876 3026 | ] 3027 | }, 3028 | { 3029 | "name": "Dnyami Nochami (Hardstyle remix)", 3030 | "artist": "Pyrokinesis, MYKKA", 3031 | "source": "youtube", 3032 | "startOffset": 0, 3033 | "yt-id": "KplAOO33uRA", 3034 | "songs": [ 3035 | 928876 3036 | ] 3037 | }, 3038 | { 3039 | "name": "Power Trip (Piano Cover)", 3040 | "artist": "PNG", 3041 | "source": "youtube", 3042 | "startOffset": 1350, 3043 | "yt-id": "oHTR_ro0RnI", 3044 | "songs": [ 3045 | 39 3046 | ] 3047 | }, 3048 | { 3049 | "name": "Nock Em (Piano Cover)", 3050 | "artist": "PNG", 3051 | "source": "youtube", 3052 | "startOffset": 2000, 3053 | "yt-id": "aXnYTmadJMY", 3054 | "songs": [ 3055 | 38 3056 | ] 3057 | }, 3058 | { 3059 | "name": "The Seven Seas (Piano Cover)", 3060 | "artist": "PNG", 3061 | "source": "youtube", 3062 | "startOffset": 2400, 3063 | "yt-id": "SPSIjRmqt0Q", 3064 | "songs": [ 3065 | 23 3066 | ] 3067 | }, 3068 | { 3069 | "name": "Airborne Robots (Piano Cover)", 3070 | "artist": "PNG", 3071 | "source": "youtube", 3072 | "startOffset": 2150, 3073 | "yt-id": "nJUY1SdpBo0", 3074 | "songs": [ 3075 | 25 3076 | ] 3077 | }, 3078 | { 3079 | "name": "Snowman", 3080 | "artist": "sia", 3081 | "source": "youtube", 3082 | "startOffset": 0, 3083 | "yt-id": "gset79KMmt0", 3084 | "songs": [ 3085 | 754 3086 | ] 3087 | }, 3088 | { 3089 | "name": "Arcade", 3090 | "artist": "Vexento", 3091 | "source": "youtube", 3092 | "startOffset": 0, 3093 | "yt-id": "JV41UkBQDhE", 3094 | "songs": [ 3095 | 1124225 3096 | ] 3097 | }, 3098 | { 3099 | "name": "Last Dance (Nexlie Remix)", 3100 | "artist": "Xomu", 3101 | "source": "youtube", 3102 | "startOffset": 0, 3103 | "yt-id": "sBEKQo51L4U", 3104 | "songs": [ 3105 | 1044866 3106 | ] 3107 | }, 3108 | { 3109 | "name": "Crystallize - [All My Life]", 3110 | "artist": "Crystallize", 3111 | "source": "youtube", 3112 | "startOffset": 0, 3113 | "yt-id": "vmDqX3X-cEE", 3114 | "songs": [ 3115 | 302522 3116 | ] 3117 | }, 3118 | { 3119 | "name": "Crystallize - [All My Life] (Sync ver.)", 3120 | "artist": "Crystallize", 3121 | "source": "youtube", 3122 | "startOffset": 0, 3123 | "yt-id": "jZ-vsS5ZU90", 3124 | "songs": [ 3125 | 302522 3126 | ] 3127 | }, 3128 | { 3129 | "name": "clubstep x Tik tok", 3130 | "artist": "Ke$ha", 3131 | "source": "youtube", 3132 | "startOffset": 10, 3133 | "yt-id": "bx5GzRUVAzo", 3134 | "songs": [ 3135 | 13 3136 | ] 3137 | }, 3138 | { 3139 | "name": "Rebirth blaster", 3140 | "artist": "Plexity", 3141 | "source": "youtube", 3142 | "startOffset": 0, 3143 | "yt-id": "Swzg3jgEAgk", 3144 | "songs": [ 3145 | 574484 3146 | ] 3147 | }, 3148 | { 3149 | "name": "Darnell Wet Fart", 3150 | "artist": "Churgney Gurgney", 3151 | "source": "youtube", 3152 | "startOffset": 0, 3153 | "yt-id": "x6xtqI4k2gs", 3154 | "songs": [ 3155 | 122 3156 | ] 3157 | }, 3158 | { 3159 | "name": "Viking Arena", 3160 | "artist": "F-777", 3161 | "source": "youtube", 3162 | "startOffset": 0, 3163 | "yt-id": "oawvTsTInBU", 3164 | "songs": [ 3165 | 24 3166 | ] 3167 | }, 3168 | { 3169 | "name": "Payload", 3170 | "artist": "Dex Arson", 3171 | "source": "youtube", 3172 | "startOffset": 0, 3173 | "yt-id": "P2xYukG4F3c", 3174 | "songs": [ 3175 | 27 3176 | ] 3177 | }, 3178 | { 3179 | "name": "FE!N", 3180 | "artist": "Travis Scott", 3181 | "source": "youtube", 3182 | "startOffset": 0, 3183 | "yt-id": "U-l4ya3ejko", 3184 | "songs": [ 3185 | 1 3186 | ] 3187 | }, 3188 | { 3189 | "name": "Crying for Rain", 3190 | "artist": "Minami", 3191 | "source": "youtube", 3192 | "startOffset": 0, 3193 | "yt-id": "0YF8vecQWYs", 3194 | "songs": [ 3195 | 4123 3196 | ] 3197 | }, 3198 | { 3199 | "name": "Cannibal", 3200 | "artist": "Tally Hall", 3201 | "source": "youtube", 3202 | "startOffset": 0, 3203 | "yt-id": "5_QwMRE-BKc", 3204 | "songs": [ 3205 | 66901 3206 | ] 3207 | }, 3208 | { 3209 | "name": "Magic Touch X Magnolia", 3210 | "artist": "Romos X Playboi Carti", 3211 | "source": "youtube", 3212 | "startOffset": 0, 3213 | "yt-id": "anuupo5fhZ4", 3214 | "songs": [ 3215 | 595342 3216 | ] 3217 | }, 3218 | { 3219 | "name": "Second Warning", 3220 | "artist": "Dr.ReB", 3221 | "source": "youtube", 3222 | "startOffset": 0, 3223 | "yt-id": "pe3h62MrlPE", 3224 | "songs": [ 3225 | 122 3226 | ] 3227 | }, 3228 | { 3229 | "name": "kuzureta", 3230 | "artist": "borame", 3231 | "source": "youtube", 3232 | "startOffset": 0, 3233 | "yt-id": "gBdKQVucA_c", 3234 | "songs": [ 3235 | 1024087 3236 | ] 3237 | }, 3238 | { 3239 | "name": "mzlff - privet", 3240 | "artist": "mazellovvv", 3241 | "source": "youtube", 3242 | "startOffset": 0, 3243 | "yt-id": "ZcSWyHxVlRQ", 3244 | "songs": [ 3245 | 1 3246 | ] 3247 | }, 3248 | { 3249 | "name": "Zodiac (Cursed Pitch)", 3250 | "artist": "Creo", 3251 | "source": "youtube", 3252 | "startOffset": 0, 3253 | "yt-id": "uD3nIUwFkuo", 3254 | "songs": [ 3255 | 739991 3256 | ] 3257 | }, 3258 | { 3259 | "name": "jump in the caac edit", 3260 | "artist": "epochgd", 3261 | "source": "youtube", 3262 | "startOffset": 0, 3263 | "yt-id": "lVOrE3OsFSo", 3264 | "songs": [ 3265 | 1001 3266 | ] 3267 | }, 3268 | { 3269 | "name": "Hamster Criminal", 3270 | "artist": "MC Beast", 3271 | "source": "youtube", 3272 | "startOffset": 0, 3273 | "yt-id": "WA4PsDoSLe8", 3274 | "songs": [ 3275 | 1 3276 | ] 3277 | }, 3278 | { 3279 | "name": "KOCMOC (korathink remix)", 3280 | "artist": "Korathink", 3281 | "source": "youtube", 3282 | "startOffset": 0, 3283 | "yt-id": "Yy9AEsP2PXo", 3284 | "songs": [ 3285 | 1348719 3286 | ] 3287 | }, 3288 | { 3289 | "name": "Jschlatt Aria Math", 3290 | "artist": "Levi Rochell", 3291 | "source": "youtube", 3292 | "startOffset": 0, 3293 | "yt-id": "ozOjWSe0kaA", 3294 | "songs": [ 3295 | 889642 3296 | ] 3297 | }, 3298 | { 3299 | "name": "Lost (Original)", 3300 | "artist": "Crim3s", 3301 | "source": "youtube", 3302 | "startOffset": -33750, 3303 | "yt-id": "cpEkXk6u_b4", 3304 | "songs": [ 3305 | 945695 3306 | ] 3307 | }, 3308 | { 3309 | "name": "KOCMOC (korathink remix)", 3310 | "artist": "Korathink", 3311 | "source": "youtube", 3312 | "startOffset": 80800, 3313 | "yt-id": "Yy9AEsP2PXo", 3314 | "songs": [ 3315 | 1163222 3316 | ] 3317 | }, 3318 | { 3319 | "name": "a", 3320 | "artist": "a", 3321 | "source": "youtube", 3322 | "startOffset": 0, 3323 | "yt-id": "-o68Za69bCc", 3324 | "songs": [ 3325 | 999999 3326 | ] 3327 | }, 3328 | { 3329 | "name": "At the Speed of Light (KingSammelot Cover)", 3330 | "artist": "Kingsammelot", 3331 | "source": "youtube", 3332 | "startOffset": 1000, 3333 | "yt-id": "zqjkuCPHoVc", 3334 | "songs": [ 3335 | 467339 3336 | ] 3337 | }, 3338 | { 3339 | "name": "Creo Sphere X Dont Threaten Me With A Good Time", 3340 | "artist": "Creo x P!ATD", 3341 | "source": "youtube", 3342 | "startOffset": 0, 3343 | "yt-id": "9eqJ4hsLBnA", 3344 | "songs": [ 3345 | 739991 3346 | ] 3347 | }, 3348 | { 3349 | "name": "title wave", 3350 | "artist": "perplexing", 3351 | "source": "youtube", 3352 | "startOffset": 16000, 3353 | "yt-id": "T5cxiH9AoEQ", 3354 | "songs": [ 3355 | 1266014 3356 | ] 3357 | }, 3358 | { 3359 | "name": "Surface X chavo del ocho", 3360 | "artist": "Dinraim47", 3361 | "source": "youtube", 3362 | "startOffset": 0, 3363 | "yt-id": "wUIF2vCx0Ok", 3364 | "songs": [ 3365 | 63082 3366 | ] 3367 | }, 3368 | { 3369 | "name": "Sonic blaster X Last friday night", 3370 | "artist": "F-777", 3371 | "source": "youtube", 3372 | "startOffset": 0, 3373 | "yt-id": "lyZ66nL006s", 3374 | "songs": [ 3375 | 574484 3376 | ] 3377 | }, 3378 | { 3379 | "name": "filkoty", 3380 | "artist": "dsadfads", 3381 | "source": "youtube", 3382 | "startOffset": 0, 3383 | "yt-id": "IagC2wU2wfo", 3384 | "songs": [ 3385 | 111 3386 | ] 3387 | }, 3388 | { 3389 | "name": "Polish Song", 3390 | "artist": "TLauncherGD", 3391 | "source": "youtube", 3392 | "startOffset": 0, 3393 | "yt-id": "sk-tF8D3tho", 3394 | "songs": [ 3395 | 1 3396 | ] 3397 | }, 3398 | { 3399 | "name": "Take A Slice", 3400 | "artist": "Glass Animals", 3401 | "source": "youtube", 3402 | "startOffset": 0, 3403 | "yt-id": "WS0ZqIWSy84", 3404 | "songs": [ 3405 | 48 3406 | ] 3407 | }, 3408 | { 3409 | "name": "August", 3410 | "artist": "Intilligency", 3411 | "source": "youtube", 3412 | "startOffset": 0, 3413 | "yt-id": "ZPeJyu6n9iU", 3414 | "songs": [ 3415 | 48 3416 | ] 3417 | }, 3418 | { 3419 | "name": "505", 3420 | "artist": "Arctic Monkeys", 3421 | "source": "youtube", 3422 | "startOffset": 0, 3423 | "yt-id": "1Jd2DysfCW8", 3424 | "songs": [ 3425 | 48 3426 | ] 3427 | }, 3428 | { 3429 | "name": "Abyss of Darkness (ShadowBeatzInc - Death Note Dubstep [SB]) Low Pitch", 3430 | "artist": "Nightvail Team [GD]", 3431 | "source": "youtube", 3432 | "startOffset": 0, 3433 | "yt-id": "6RRsVScMBns", 3434 | "songs": [ 3435 | 513539 3436 | ] 3437 | }, 3438 | { 3439 | "name": "Flow X Not Like Us", 3440 | "artist": "Creo x Kendrick Lamar (spacepanda mashup)", 3441 | "source": "youtube", 3442 | "startOffset": 0, 3443 | "yt-id": "9T3twUoRGD8", 3444 | "songs": [ 3445 | 1132447 3446 | ] 3447 | }, 3448 | { 3449 | "name": "Surface (Xrim Remix)", 3450 | "artist": "Xrim", 3451 | "source": "youtube", 3452 | "startOffset": 0, 3453 | "yt-id": "OupsKq7fxA4", 3454 | "songs": [ 3455 | 63082 3456 | ] 3457 | }, 3458 | { 3459 | "name": "Anónimo", 3460 | "artist": "Cuarteto de Nos", 3461 | "source": "youtube", 3462 | "startOffset": 0, 3463 | "yt-id": "KH8PIsSUd9E", 3464 | "songs": [ 3465 | 1275022 3466 | ] 3467 | }, 3468 | { 3469 | "name": "She Wants Me Death", 3470 | "artist": "CAZZETTE", 3471 | "source": "youtube", 3472 | "startOffset": 0, 3473 | "yt-id": "FHccClTAdzc", 3474 | "songs": [ 3475 | 11006 3476 | ] 3477 | }, 3478 | { 3479 | "name": "Give Me Back The Night (Schtiffles Remix)", 3480 | "artist": "Schtiffles", 3481 | "source": "youtube", 3482 | "startOffset": 0, 3483 | "yt-id": "thzVnOiLViY", 3484 | "songs": [ 3485 | 762712 3486 | ] 3487 | }, 3488 | { 3489 | "name": "Endgame X Eminem", 3490 | "artist": "Waterflame", 3491 | "source": "youtube", 3492 | "startOffset": 0, 3493 | "yt-id": "AbhMgRP5IcU", 3494 | "songs": [ 3495 | 587069 3496 | ] 3497 | }, 3498 | { 3499 | "name": "FFM (I don't know which way to turn)", 3500 | "artist": "Cacola", 3501 | "source": "youtube", 3502 | "startOffset": 0, 3503 | "yt-id": "th8xY21wTPs", 3504 | "songs": [ 3505 | 1298493 3506 | ] 3507 | }, 3508 | { 3509 | "name": "Lonely - Yoe Mase (Geometry dash)", 3510 | "artist": "Yoe Mase", 3511 | "source": "youtube", 3512 | "startOffset": 0, 3513 | "yt-id": "VFErR0FdB0Q", 3514 | "songs": [ 3515 | 1254555 3516 | ] 3517 | }, 3518 | { 3519 | "name": "Creo - Sphere x Borderline", 3520 | "artist": "Creo x Tame Impala", 3521 | "source": "youtube", 3522 | "startOffset": 0, 3523 | "yt-id": "Z4p7r4HAG24", 3524 | "songs": [ 3525 | 739991 3526 | ] 3527 | }, 3528 | { 3529 | "name": "Flawless Wings of Yatagarasu (high Pitch)", 3530 | "artist": "Nightvail Team", 3531 | "source": "youtube", 3532 | "startOffset": 0, 3533 | "yt-id": "JnF47p2kcXI", 3534 | "songs": [ 3535 | 490479 3536 | ] 3537 | }, 3538 | { 3539 | "name": "esh govno", 3540 | "artist": "CIIEPMA", 3541 | "source": "youtube", 3542 | "startOffset": 0, 3543 | "yt-id": "Jf1ERgePgBE", 3544 | "songs": [ 3545 | 1 3546 | ] 3547 | }, 3548 | { 3549 | "name": "Wild Side", 3550 | "artist": "ALI", 3551 | "source": "youtube", 3552 | "startOffset": 0, 3553 | "yt-id": "u5heWZ9occg", 3554 | "songs": [ 3555 | 1037135 3556 | ] 3557 | }, 3558 | { 3559 | "name": "Time Leaper (Low Pitch)", 3560 | "artist": "Hinkik", 3561 | "source": "youtube", 3562 | "startOffset": 0, 3563 | "yt-id": "pgKFU1tmO1Y", 3564 | "songs": [ 3565 | 683996 3566 | ] 3567 | }, 3568 | { 3569 | "name": "CLXBBIN (Clubstep Phonk Remix)", 3570 | "artist": "MXGY", 3571 | "source": "youtube", 3572 | "startOffset": 0, 3573 | "yt-id": "-rK-5wrmRiM", 3574 | "songs": [ 3575 | 13 3576 | ] 3577 | }, 3578 | { 3579 | "name": "Stronger Than You", 3580 | "artist": "Steven Universe", 3581 | "source": "youtube", 3582 | "startOffset": 0, 3583 | "yt-id": "7GrmiTlaVgo", 3584 | "songs": [ 3585 | 1 3586 | ] 3587 | }, 3588 | { 3589 | "name": "Dream On", 3590 | "artist": "Pegboard Nerds", 3591 | "source": "youtube", 3592 | "startOffset": 0, 3593 | "yt-id": "pMx36VC8R-Q", 3594 | "songs": [ 3595 | 10006751 3596 | ] 3597 | }, 3598 | { 3599 | "name": "Tokyo(MRHSLMusic Remix)", 3600 | "artist": "Ivycomb Music", 3601 | "source": "youtube", 3602 | "startOffset": 0, 3603 | "yt-id": "Y-UPgQOt874", 3604 | "songs": [ 3605 | 1202803 3606 | ] 3607 | }, 3608 | { 3609 | "name": "Clubstep x Money Machine", 3610 | "artist": "30th century homer alternative", 3611 | "source": "youtube", 3612 | "startOffset": 0, 3613 | "yt-id": "FTkHz5Pbm_0", 3614 | "songs": [ 3615 | 13 3616 | ] 3617 | }, 3618 | { 3619 | "name": "Sakupen Circles x Gangsta paradise piano (Diamond ver)", 3620 | "artist": "mr-jazzman", 3621 | "source": "youtube", 3622 | "startOffset": 0, 3623 | "yt-id": "sWE_YX-SNWs", 3624 | "songs": [ 3625 | 360804 3626 | ] 3627 | }, 3628 | { 3629 | "name": "Sonic blaster X 2 Phut Hon", 3630 | "artist": "Light night music", 3631 | "source": "youtube", 3632 | "startOffset": 0, 3633 | "yt-id": "hlG9meH2lhQ", 3634 | "songs": [ 3635 | 574484 3636 | ] 3637 | }, 3638 | { 3639 | "name": "Electric Angel", 3640 | "artist": "Yasuo", 3641 | "source": "youtube", 3642 | "startOffset": 0, 3643 | "yt-id": "sSYoz0JmnZo", 3644 | "songs": [ 3645 | 593489 3646 | ] 3647 | }, 3648 | { 3649 | "name": "Undertale - Megalovania (Oscar Santos EDM Remix 2019)", 3650 | "artist": "Drop the Bassline", 3651 | "source": "youtube", 3652 | "startOffset": 0, 3653 | "yt-id": "zqBnYGwlr0Q", 3654 | "songs": [ 3655 | 695513 3656 | ] 3657 | }, 3658 | { 3659 | "name": "Epilogue x King Von", 3660 | "artist": "CREO", 3661 | "source": "youtube", 3662 | "startOffset": 0, 3663 | "yt-id": "sXmVOoTKhs4", 3664 | "songs": [ 3665 | 723714 3666 | ] 3667 | }, 3668 | { 3669 | "name": "Lost (Low Pitch)", 3670 | "artist": "CRIM3S", 3671 | "source": "youtube", 3672 | "startOffset": 351000, 3673 | "yt-id": "ySQg0FUQMSc", 3674 | "songs": [ 3675 | 945695 3676 | ] 3677 | }, 3678 | { 3679 | "name": "What's a Future Funk? (High Pitch)", 3680 | "artist": "LemKuuja", 3681 | "source": "youtube", 3682 | "startOffset": 0, 3683 | "yt-id": "wuDNYVIEMf8", 3684 | "songs": [ 3685 | 701013 3686 | ] 3687 | }, 3688 | { 3689 | "name": "At the Speed of Light x Rap God", 3690 | "artist": "Dimrain47", 3691 | "source": "youtube", 3692 | "startOffset": 0, 3693 | "yt-id": "Wv2NLzBeX5Q", 3694 | "songs": [ 3695 | 467339 3696 | ] 3697 | }, 3698 | { 3699 | "name": "Surface (Low Pitch)", 3700 | "artist": "Dimrain47", 3701 | "source": "youtube", 3702 | "startOffset": 0, 3703 | "yt-id": "T8kjvZUXwm8", 3704 | "songs": [ 3705 | 63082 3706 | ] 3707 | }, 3708 | { 3709 | "name": "Europapa", 3710 | "artist": "Joost Klein", 3711 | "source": "youtube", 3712 | "startOffset": 0, 3713 | "yt-id": "gInOau6EFdI", 3714 | "songs": [ 3715 | 1326193 3716 | ] 3717 | }, 3718 | { 3719 | "name": "Wild Side (Anime Version)", 3720 | "artist": "ALI", 3721 | "source": "youtube", 3722 | "startOffset": 0, 3723 | "yt-id": "R9PNKMwVW5M", 3724 | "songs": [ 3725 | 200 3726 | ] 3727 | }, 3728 | { 3729 | "name": "Stickerbrush Symphony", 3730 | "artist": "David Wise", 3731 | "source": "youtube", 3732 | "startOffset": 0, 3733 | "yt-id": "lndBgOrTWxo", 3734 | "songs": [ 3735 | 452513 3736 | ] 3737 | }, 3738 | { 3739 | "name": "Skyfall", 3740 | "artist": "Adele", 3741 | "source": "youtube", 3742 | "startOffset": 0, 3743 | "yt-id": "DeumyOzKqgI", 3744 | "songs": [ 3745 | 1117628 3746 | ] 3747 | }, 3748 | { 3749 | "name": "Night Flight", 3750 | "artist": "KLYDIX", 3751 | "source": "youtube", 3752 | "startOffset": 0, 3753 | "yt-id": "ddszgJcQvIU", 3754 | "songs": [ 3755 | 1000 3756 | ] 3757 | }, 3758 | { 3759 | "name": "Crunched Up", 3760 | "artist": "HammSlamm", 3761 | "source": "youtube", 3762 | "startOffset": 750, 3763 | "yt-id": "UXZFpNgWu8U", 3764 | "songs": [ 3765 | 1126904 3766 | ] 3767 | }, 3768 | { 3769 | "name": "Spooky Scary Skeleton rmx", 3770 | "artist": "The Living Tombstones", 3771 | "source": "youtube", 3772 | "startOffset": 0, 3773 | "yt-id": "q6-ZGAGcJrk", 3774 | "songs": [ 3775 | 589755 3776 | ] 3777 | }, 3778 | { 3779 | "name": "i wanna be here", 3780 | "artist": "Deathbrain", 3781 | "source": "youtube", 3782 | "startOffset": 0, 3783 | "yt-id": "sqKmB684jTU", 3784 | "songs": [ 3785 | 827 3786 | ] 3787 | }, 3788 | { 3789 | "name": "hopes and dreams", 3790 | "artist": "toby fox", 3791 | "source": "youtube", 3792 | "startOffset": 0, 3793 | "yt-id": "tz82xbLvK_k", 3794 | "songs": [ 3795 | 12899 3796 | ] 3797 | }, 3798 | { 3799 | "name": "Murder Drones OST - Dissasembly Required", 3800 | "artist": "Liam Vickers", 3801 | "source": "youtube", 3802 | "startOffset": 0, 3803 | "yt-id": "8FtmQr0zDyE", 3804 | "songs": [ 3805 | 1088357 3806 | ] 3807 | }, 3808 | { 3809 | "name": "Idolize x I knew you were trouble.", 3810 | "artist": "Creo", 3811 | "source": "youtube", 3812 | "startOffset": 0, 3813 | "yt-id": "4Cn-YXDPkFc", 3814 | "songs": [ 3815 | 829777 3816 | ] 3817 | }, 3818 | { 3819 | "name": "Thermodynamix x Burn it down", 3820 | "artist": "dj-Nate x Linkin Park by IDKMusic", 3821 | "source": "youtube", 3822 | "startOffset": 92, 3823 | "yt-id": "i1arPI5V944", 3824 | "songs": [ 3825 | 770520 3826 | ] 3827 | }, 3828 | { 3829 | "name": "Harder, Better, Faster, Stronger", 3830 | "artist": "Daft Punk", 3831 | "source": "youtube", 3832 | "startOffset": 0, 3833 | "yt-id": "gAjR4_CbPpQ", 3834 | "songs": [ 3835 | 328383 3836 | ] 3837 | }, 3838 | { 3839 | "name": "KOCMOC (G2691 remix)", 3840 | "artist": "G2691", 3841 | "source": "youtube", 3842 | "startOffset": 0, 3843 | "yt-id": "7BL5ZF3smgk", 3844 | "songs": [ 3845 | 1163222 3846 | ] 3847 | }, 3848 | { 3849 | "name": "How-D - DASH (ft. Peter Griffin)", 3850 | "artist": "HowD", 3851 | "source": "youtube", 3852 | "startOffset": 0, 3853 | "yt-id": "0KlwHJpUC24", 3854 | "songs": [ 3855 | 21 3856 | ] 3857 | }, 3858 | { 3859 | "name": "Sonic Blaster x Bad Apple", 3860 | "artist": "F-777 x Alstroemeria Records (Fluorine0)", 3861 | "source": "youtube", 3862 | "startOffset": 0, 3863 | "yt-id": "0B0YuLyVLwM", 3864 | "songs": [ 3865 | 574484 3866 | ] 3867 | }, 3868 | { 3869 | "name": "Proud Heroes", 3870 | "artist": "Citokid", 3871 | "source": "youtube", 3872 | "startOffset": 0, 3873 | "yt-id": "UPvMYXrp6Gc", 3874 | "songs": [ 3875 | 631299 3876 | ] 3877 | }, 3878 | { 3879 | "name": "Such a Whore (Stellular Remix)", 3880 | "artist": "JVLA", 3881 | "source": "youtube", 3882 | "startOffset": 0, 3883 | "yt-id": "8fFOtGETlrU", 3884 | "songs": [ 3885 | 969494 3886 | ] 3887 | }, 3888 | { 3889 | "name": "Can You Feel My Heart - Remix (Gigachad)", 3890 | "artist": "G6400", 3891 | "source": "youtube", 3892 | "startOffset": 0, 3893 | "yt-id": "m81NQ8tFR7s", 3894 | "songs": [ 3895 | 1110953 3896 | ] 3897 | }, 3898 | { 3899 | "name": "TARZAN", 3900 | "artist": "Unicorn On Ketamine", 3901 | "source": "youtube", 3902 | "startOffset": 0, 3903 | "yt-id": "OsHP2deFii8", 3904 | "songs": [ 3905 | 123321 3906 | ] 3907 | }, 3908 | { 3909 | "name": "i wonder", 3910 | "artist": "kanye west", 3911 | "source": "youtube", 3912 | "startOffset": 0, 3913 | "yt-id": "MxEjnYdfLXU", 3914 | "songs": [ 3915 | 1154615 3916 | ] 3917 | }, 3918 | { 3919 | "name": "647", 3920 | "artist": "instupendo", 3921 | "source": "youtube", 3922 | "startOffset": 0, 3923 | "yt-id": "YHlcmmkiwbU", 3924 | "songs": [ 3925 | 1295762 3926 | ] 3927 | }, 3928 | { 3929 | "name": "this comes from the inside x its been so long (JJOZIAH JERSEY REMIX)", 3930 | "artist": "JJOZIAH", 3931 | "source": "youtube", 3932 | "startOffset": 0, 3933 | "yt-id": "eA1NOr5sues", 3934 | "songs": [ 3935 | 622262 3936 | ] 3937 | }, 3938 | { 3939 | "name": "hong kong", 3940 | "artist": "Yuno Miles Ultra", 3941 | "source": "youtube", 3942 | "startOffset": 0, 3943 | "yt-id": "HeCZZ131-HQ", 3944 | "songs": [ 3945 | 100 3946 | ] 3947 | }, 3948 | { 3949 | "name": "awareness", 3950 | "artist": "KENTENSHI", 3951 | "source": "youtube", 3952 | "startOffset": 0, 3953 | "yt-id": "LTM5bSPrOFw", 3954 | "songs": [ 3955 | 1 3956 | ] 3957 | }, 3958 | { 3959 | "name": "Infiltration x Sexyback", 3960 | "artist": "paragonx9", 3961 | "source": "youtube", 3962 | "startOffset": 0, 3963 | "yt-id": "cjbY9zZoP44", 3964 | "songs": [ 3965 | 157014 3966 | ] 3967 | }, 3968 | { 3969 | "name": "Acu (Ultra low pitch)", 3970 | "artist": "HyperDemented", 3971 | "source": "youtube", 3972 | "startOffset": 0, 3973 | "yt-id": "vcWXG2K1s9E", 3974 | "songs": [ 3975 | 723714 3976 | ] 3977 | }, 3978 | { 3979 | "name": "Glint X Fetty wap", 3980 | "artist": "Dominuus", 3981 | "source": "youtube", 3982 | "startOffset": 0, 3983 | "yt-id": "PBqWGQGBECw", 3984 | "songs": [ 3985 | 1052435 3986 | ] 3987 | }, 3988 | { 3989 | "name": "Peer Gynt x Crazy Frog", 3990 | "artist": "cYsmix", 3991 | "source": "youtube", 3992 | "startOffset": 0, 3993 | "yt-id": "wykijD1hj30", 3994 | "songs": [ 3995 | 724710 3996 | ] 3997 | }, 3998 | { 3999 | "name": "DNA. X Classic Pursuit", 4000 | "artist": "Kendrick Lamar x cYsmix", 4001 | "source": "youtube", 4002 | "startOffset": 0, 4003 | "yt-id": "PN3f9lYAWxM", 4004 | "songs": [ 4005 | 718171 4006 | ] 4007 | }, 4008 | { 4009 | "name": "Space Abyss (Lunar & Solar Mashup)", 4010 | "artist": "Lchavasse", 4011 | "source": "youtube", 4012 | "startOffset": 0, 4013 | "yt-id": "WjAWl5wQGLo", 4014 | "songs": [ 4015 | 737166 4016 | ] 4017 | }, 4018 | { 4019 | "name": "Space abyss VIP", 4020 | "artist": "Lchavasse", 4021 | "source": "youtube", 4022 | "startOffset": 0, 4023 | "yt-id": "vw_6VfBWgrg", 4024 | "songs": [ 4025 | 737166 4026 | ] 4027 | }, 4028 | { 4029 | "name": "future funk x static", 4030 | "artist": "asj", 4031 | "source": "youtube", 4032 | "startOffset": 25, 4033 | "yt-id": "8LZRCxw4YM0", 4034 | "songs": [ 4035 | 701013 4036 | ] 4037 | }, 4038 | { 4039 | "name": "ta1lsd0ll", 4040 | "artist": "g2961", 4041 | "source": "youtube", 4042 | "startOffset": 0, 4043 | "yt-id": "CljzyH_c3Uo", 4044 | "songs": [ 4045 | 1326366 4046 | ] 4047 | }, 4048 | { 4049 | "name": "Houdini", 4050 | "artist": "Eminem", 4051 | "source": "youtube", 4052 | "startOffset": 650, 4053 | "yt-id": "h4I8qWmJgm4", 4054 | "songs": [ 4055 | 1 4056 | ] 4057 | }, 4058 | { 4059 | "name": "At The Speed Of Light X Face Of", 4060 | "artist": "saiveeon", 4061 | "source": "youtube", 4062 | "startOffset": 0, 4063 | "yt-id": "Rs6WXfzbgAI", 4064 | "songs": [ 4065 | 467339 4066 | ] 4067 | }, 4068 | { 4069 | "name": "Crazy x Ultimate", 4070 | "artist": "Creo", 4071 | "source": "youtube", 4072 | "startOffset": 1190, 4073 | "yt-id": "6WQSSTq0p2g", 4074 | "songs": [ 4075 | 905108 4076 | ] 4077 | }, 4078 | { 4079 | "name": "Blast Processing [Piano Cover]", 4080 | "artist": "Waterflame", 4081 | "source": "youtube", 4082 | "startOffset": 0, 4083 | "yt-id": "LQcXnV2C3tQ", 4084 | "songs": [ 4085 | 16 4086 | ] 4087 | }, 4088 | { 4089 | "name": "Theory of Everything 2 [Piano Cover]", 4090 | "artist": "PNG - Music", 4091 | "source": "youtube", 4092 | "startOffset": 4750, 4093 | "yt-id": "xvkBphyhvf4", 4094 | "songs": [ 4095 | 17 4096 | ] 4097 | }, 4098 | { 4099 | "name": "Electrodynamix [Piano Cover]", 4100 | "artist": "PNG - Music & Covers", 4101 | "source": "youtube", 4102 | "startOffset": 3750, 4103 | "yt-id": "TlEno2xwxWE", 4104 | "songs": [ 4105 | 14 4106 | ] 4107 | }, 4108 | { 4109 | "name": "crim3s - lost [korathink remix]", 4110 | "artist": "Korathink", 4111 | "source": "youtube", 4112 | "startOffset": 0, 4113 | "yt-id": "oPfJ6sXzSNU", 4114 | "songs": [ 4115 | 945695 4116 | ] 4117 | }, 4118 | { 4119 | "name": "Step - Polargeist REMIX", 4120 | "artist": "fendroca", 4121 | "source": "youtube", 4122 | "startOffset": 850, 4123 | "yt-id": "_LlJScME4w4", 4124 | "songs": [ 4125 | 2 4126 | ] 4127 | }, 4128 | { 4129 | "name": "Kibo", 4130 | "artist": "Dion Timmer", 4131 | "source": "youtube", 4132 | "startOffset": 0, 4133 | "yt-id": "sVzpEAdBivs", 4134 | "songs": [ 4135 | 456732 4136 | ] 4137 | }, 4138 | { 4139 | "name": "Bad Apple!!", 4140 | "artist": "ZUN (ft. nomico)", 4141 | "source": "youtube", 4142 | "startOffset": 0, 4143 | "yt-id": "FtutLA63Cp8", 4144 | "songs": [ 4145 | 10011422 4146 | ] 4147 | }, 4148 | { 4149 | "name": "Ballace", 4150 | "artist": "Manny Heffley", 4151 | "source": "youtube", 4152 | "startOffset": 0, 4153 | "yt-id": "rMFwCn14Mx0", 4154 | "songs": [ 4155 | 1304920 4156 | ] 4157 | }, 4158 | { 4159 | "name": "Legends Never Die (remix)", 4160 | "artist": "onumi", 4161 | "source": "youtube", 4162 | "startOffset": 0, 4163 | "yt-id": "unE2xjAUG7M", 4164 | "songs": [ 4165 | 1266782 4166 | ] 4167 | }, 4168 | { 4169 | "name": "The Hallucination(Right version)", 4170 | "artist": "Fashrod", 4171 | "source": "youtube", 4172 | "startOffset": 44500, 4173 | "yt-id": "YsgelW8ocYc", 4174 | "songs": [ 4175 | 568369 4176 | ] 4177 | }, 4178 | { 4179 | "name": "Plug in baby", 4180 | "artist": "Muse", 4181 | "source": "youtube", 4182 | "startOffset": 104000, 4183 | "yt-id": "dbB-mICjkQM", 4184 | "songs": [ 4185 | 423 4186 | ] 4187 | }, 4188 | { 4189 | "name": "Idolize x I knew you were trouble.", 4190 | "artist": "Creo", 4191 | "source": "youtube", 4192 | "startOffset": 0, 4193 | "yt-id": "4Cn-YXDPkFc", 4194 | "songs": [ 4195 | 829777 4196 | ] 4197 | }, 4198 | { 4199 | "name": "Lost X Shotta Flow", 4200 | "artist": "Eltxzu", 4201 | "source": "youtube", 4202 | "startOffset": 0, 4203 | "yt-id": "YXsEUWvkjMM", 4204 | "songs": [ 4205 | 945695 4206 | ] 4207 | }, 4208 | { 4209 | "name": "Es epico", 4210 | "artist": "Canserbero", 4211 | "source": "youtube", 4212 | "startOffset": 0, 4213 | "yt-id": "sq6oc066w14", 4214 | "songs": [ 4215 | 1 4216 | ] 4217 | }, 4218 | { 4219 | "name": "The Storm TPOT 13", 4220 | "artist": "Ian Woodside", 4221 | "source": "youtube", 4222 | "startOffset": 0, 4223 | "yt-id": "aBeCz050k98", 4224 | "songs": [ 4225 | 1000 4226 | ] 4227 | }, 4228 | { 4229 | "name": "Se hacen realidad", 4230 | "artist": "Ancud", 4231 | "source": "youtube", 4232 | "startOffset": 0, 4233 | "yt-id": "WvkGVGXG9KU", 4234 | "songs": [ 4235 | 120 4236 | ] 4237 | }, 4238 | { 4239 | "name": "Isolation (Piano Cover)", 4240 | "artist": "siomaca", 4241 | "source": "youtube", 4242 | "startOffset": 2500, 4243 | "yt-id": "P2COuITTRAk", 4244 | "songs": [ 4245 | 76743 4246 | ] 4247 | }, 4248 | { 4249 | "name": "Blast Processing Fusion Collab", 4250 | "artist": "OMFG, Toby Fox, Crazy Frog, Daft Punk and more", 4251 | "source": "youtube", 4252 | "startOffset": 0, 4253 | "yt-id": "5wQ2rFS-Zd4", 4254 | "songs": [ 4255 | 507560 4256 | ] 4257 | }, 4258 | { 4259 | "name": "What's a future funk? x All stars", 4260 | "artist": "EpochGD", 4261 | "source": "youtube", 4262 | "startOffset": 3800, 4263 | "yt-id": "VLy5cI28vHQ", 4264 | "songs": [ 4265 | 701013 4266 | ] 4267 | }, 4268 | { 4269 | "name": "Crim3s Lost (XVA REMIX) SYSDRDA", 4270 | "artist": "B4uti Firememes", 4271 | "source": "youtube", 4272 | "startOffset": -34000, 4273 | "yt-id": "FLtAHFrZSPM", 4274 | "songs": [ 4275 | 945695 4276 | ] 4277 | }, 4278 | { 4279 | "name": "Deadlocked (Piano Cover)", 4280 | "artist": "Luigui 28", 4281 | "source": "youtube", 4282 | "startOffset": 4000, 4283 | "yt-id": "hwKeBSGgBiY", 4284 | "songs": [ 4285 | 19 4286 | ] 4287 | }, 4288 | { 4289 | "name": "Fingerdash (Piano Cover)", 4290 | "artist": "Luigui 28", 4291 | "source": "youtube", 4292 | "startOffset": 4000, 4293 | "yt-id": "EtfskNzml7E", 4294 | "songs": [ 4295 | 20 4296 | ] 4297 | }, 4298 | { 4299 | "name": "Magnolia Pimp Named Slickback", 4300 | "artist": "iLuvUso", 4301 | "source": "youtube", 4302 | "startOffset": 0, 4303 | "yt-id": "ZGwAJiBSl0E", 4304 | "songs": [ 4305 | 151515 4306 | ] 4307 | }, 4308 | { 4309 | "name": "Nine Circles (Piano Cover)", 4310 | "artist": "NexTeR", 4311 | "source": "youtube", 4312 | "startOffset": -3300, 4313 | "yt-id": "xz8INTwgo74", 4314 | "songs": [ 4315 | 533927 4316 | ] 4317 | }, 4318 | { 4319 | "name": "At the Speed of Light (Piano Ver)", 4320 | "artist": "Sheet Music Boss", 4321 | "source": "youtube", 4322 | "startOffset": 5000, 4323 | "yt-id": "H1IxUIiwwr4", 4324 | "songs": [ 4325 | 467339 4326 | ] 4327 | }, 4328 | { 4329 | "name": "Lost Umbrella", 4330 | "artist": "inabakumori", 4331 | "source": "youtube", 4332 | "startOffset": 0, 4333 | "yt-id": "DeKLpgzh-qQ", 4334 | "songs": [ 4335 | 1309753 4336 | ] 4337 | }, 4338 | { 4339 | "name": "Lick My Common Sense", 4340 | "artist": "Jack Stauber's Micropop", 4341 | "source": "youtube", 4342 | "startOffset": 0, 4343 | "yt-id": "PyRBe9jTU1o", 4344 | "songs": [ 4345 | 161616 4346 | ] 4347 | }, 4348 | { 4349 | "name": "Pigstep (AvM Remix)", 4350 | "artist": "Alan Becker", 4351 | "source": "youtube", 4352 | "startOffset": 0, 4353 | "yt-id": "oDZK3_c-Vkc", 4354 | "songs": [ 4355 | 951722 4356 | ] 4357 | }, 4358 | { 4359 | "name": "Lost x Can U Be", 4360 | "artist": "Kanye West, Travis Scott, Ty Dolla $ign, Y$", 4361 | "source": "youtube", 4362 | "startOffset": 35, 4363 | "yt-id": "2_N7Rx-53YQ", 4364 | "songs": [ 4365 | 945695 4366 | ] 4367 | }, 4368 | { 4369 | "name": "Lost x Can U Be", 4370 | "artist": "Kanye West, Travis Scott, Ty Dolla $ign, Y$", 4371 | "source": "youtube", 4372 | "startOffset": 35, 4373 | "yt-id": "2_N7Rx-53YQ", 4374 | "songs": [ 4375 | 945695 4376 | ] 4377 | }, 4378 | { 4379 | "name": "windows breakcore", 4380 | "artist": "proloxx", 4381 | "source": "youtube", 4382 | "startOffset": 0, 4383 | "yt-id": "AMc4kuUHmhw", 4384 | "songs": [ 4385 | 1001 4386 | ] 4387 | }, 4388 | { 4389 | "name": "Linkin Park - Given Up", 4390 | "artist": "Linkin Park", 4391 | "source": "youtube", 4392 | "startOffset": 0, 4393 | "yt-id": "0xyxtzD54rM", 4394 | "songs": [ 4395 | 814267 4396 | ] 4397 | }, 4398 | { 4399 | "name": "Tek It", 4400 | "artist": "Cafune", 4401 | "source": "youtube", 4402 | "startOffset": 0, 4403 | "yt-id": "oIvFXVqtzxg", 4404 | "songs": [ 4405 | 100 4406 | ] 4407 | }, 4408 | { 4409 | "name": "Christmas kids", 4410 | "artist": "Roar", 4411 | "source": "youtube", 4412 | "startOffset": 0, 4413 | "yt-id": "9o0pXI5jkyg", 4414 | "songs": [ 4415 | 1001 4416 | ] 4417 | }, 4418 | { 4419 | "name": "good 4 u", 4420 | "artist": "Olivia Rodrigo", 4421 | "source": "youtube", 4422 | "startOffset": 0, 4423 | "yt-id": "aeDdS9aIpck", 4424 | "songs": [ 4425 | 119 4426 | ] 4427 | }, 4428 | { 4429 | "name": "Linkin Park - No More Sorrow", 4430 | "artist": "Linkin Park", 4431 | "source": "youtube", 4432 | "startOffset": 0, 4433 | "yt-id": "rW4uBvP2Dqc", 4434 | "songs": [ 4435 | 814267 4436 | ] 4437 | }, 4438 | { 4439 | "name": "3008 Thursday theme", 4440 | "artist": "uglyburger0", 4441 | "source": "youtube", 4442 | "startOffset": 0, 4443 | "yt-id": "PGEhbK1okBU", 4444 | "songs": [ 4445 | 3008 4446 | ] 4447 | }, 4448 | { 4449 | "name": "do ya like x resonance", 4450 | "artist": "Marcella", 4451 | "source": "youtube", 4452 | "startOffset": 0, 4453 | "yt-id": "QxWKRrsDank", 4454 | "songs": [ 4455 | 171717 4456 | ] 4457 | }, 4458 | { 4459 | "name": "Watch The Party Die", 4460 | "artist": "Kendrick Lamar", 4461 | "source": "youtube", 4462 | "startOffset": 0, 4463 | "yt-id": "q67kDkmKkzQ", 4464 | "songs": [ 4465 | 1001 4466 | ] 4467 | }, 4468 | { 4469 | "name": "White Ferrari", 4470 | "artist": "Frank Ocean", 4471 | "source": "youtube", 4472 | "startOffset": 0, 4473 | "yt-id": "Dlz_XHeUUis", 4474 | "songs": [ 4475 | 1 4476 | ] 4477 | }, 4478 | { 4479 | "name": "Voilent Crimes x Jersy Club", 4480 | "artist": "ProdbyCpkShawn", 4481 | "source": "youtube", 4482 | "startOffset": 0, 4483 | "yt-id": "Z5xD6sNVabg", 4484 | "songs": [ 4485 | 181818 4486 | ] 4487 | }, 4488 | { 4489 | "name": "6:16 in LA", 4490 | "artist": "Kendrick Lamar", 4491 | "source": "youtube", 4492 | "startOffset": 0, 4493 | "yt-id": "MabjUIUj6uo", 4494 | "songs": [ 4495 | 1001 4496 | ] 4497 | }, 4498 | { 4499 | "name": "Blast Processing x Dracukeo", 4500 | "artist": "Trollo feat. Kidd Keo", 4501 | "source": "youtube", 4502 | "startOffset": 0, 4503 | "yt-id": "MCSls2xU9As", 4504 | "songs": [ 4505 | 16 4506 | ] 4507 | }, 4508 | { 4509 | "name": "shes in love with the rizzcept", 4510 | "artist": "eden", 4511 | "source": "youtube", 4512 | "startOffset": 0, 4513 | "yt-id": "2R7jciaDcFk", 4514 | "songs": [ 4515 | 766165 4516 | ] 4517 | }, 4518 | { 4519 | "name": "Time Machine x Bake a Pretty Cake", 4520 | "artist": "Waterflame", 4521 | "source": "youtube", 4522 | "startOffset": 0, 4523 | "yt-id": "Yn2OycGyiDg", 4524 | "songs": [ 4525 | 7 4526 | ] 4527 | }, 4528 | { 4529 | "name": "Running Off", 4530 | "artist": "Jshxwty", 4531 | "source": "youtube", 4532 | "startOffset": 0, 4533 | "yt-id": "1wI77WHHNZ0", 4534 | "songs": [ 4535 | 191919 4536 | ] 4537 | }, 4538 | { 4539 | "name": "HOARFROST", 4540 | "artist": "AXIUS LINK", 4541 | "source": "youtube", 4542 | "startOffset": 0, 4543 | "yt-id": "AGom-LAs8Zs", 4544 | "songs": [ 4545 | 1318989 4546 | ] 4547 | }, 4548 | { 4549 | "name": "GREEDY", 4550 | "artist": "plasterbrain", 4551 | "source": "youtube", 4552 | "startOffset": 0, 4553 | "yt-id": "xgF9TXmW75M", 4554 | "songs": [ 4555 | 202020 4556 | ] 4557 | }, 4558 | { 4559 | "name": "ARE WE STILL FRIENDS?", 4560 | "artist": "Tyler, The Creator", 4561 | "source": "youtube", 4562 | "startOffset": 0, 4563 | "yt-id": "qG1ITMWUsqk", 4564 | "songs": [ 4565 | 1001 4566 | ] 4567 | }, 4568 | { 4569 | "name": "Take a Slice", 4570 | "artist": "Glass Animals", 4571 | "source": "youtube", 4572 | "startOffset": 0, 4573 | "yt-id": "9DySfgEj1hY", 4574 | "songs": [ 4575 | 293809 4576 | ] 4577 | }, 4578 | { 4579 | "name": "Ragga Twins - BADMAN (Skrillex RMX)", 4580 | "artist": "Skrillex", 4581 | "source": "youtube", 4582 | "startOffset": 9400, 4583 | "yt-id": "zo7g6-Ssnfo", 4584 | "songs": [ 4585 | 1349726 4586 | ] 4587 | }, 4588 | { 4589 | "name": "XO (SiKkY cover)", 4590 | "artist": "Aaron Musslewhite & SiKky", 4591 | "source": "youtube", 4592 | "startOffset": 0, 4593 | "yt-id": "TCmswYU7ff4", 4594 | "songs": [ 4595 | 766165 4596 | ] 4597 | }, 4598 | { 4599 | "name": "Lite Show Magic", 4600 | "artist": "Crack Traxxxx", 4601 | "source": "youtube", 4602 | "startOffset": 0, 4603 | "yt-id": "lZgJFtsho94", 4604 | "songs": [ 4605 | 5334 4606 | ] 4607 | }, 4608 | { 4609 | "name": "Nice Boys", 4610 | "artist": "TEMPOREX", 4611 | "source": "youtube", 4612 | "startOffset": 0, 4613 | "yt-id": "1xL-GRBUNCw", 4614 | "songs": [ 4615 | 232323 4616 | ] 4617 | }, 4618 | { 4619 | "name": "Feel.Me", 4620 | "artist": "Driver", 4621 | "source": "youtube", 4622 | "startOffset": 0, 4623 | "yt-id": "V4ImI6AITFg", 4624 | "songs": [ 4625 | 252525 4626 | ] 4627 | }, 4628 | { 4629 | "name": "Life Force", 4630 | "artist": "Rj Pasin", 4631 | "source": "youtube", 4632 | "startOffset": 0, 4633 | "yt-id": "fJGmC4Q-qjU", 4634 | "songs": [ 4635 | 242424 4636 | ] 4637 | }, 4638 | { 4639 | "name": "Homage (Instrumental)", 4640 | "artist": "Mild High Club", 4641 | "source": "youtube", 4642 | "startOffset": 0, 4643 | "yt-id": "Xtio4oj9wGM", 4644 | "songs": [ 4645 | 2016 4646 | ] 4647 | }, 4648 | { 4649 | "name": "Se casa Fernanfloo", 4650 | "artist": "Bambiel", 4651 | "source": "youtube", 4652 | "startOffset": 0, 4653 | "yt-id": "PS8-NvccbSw", 4654 | "songs": [ 4655 | 621134 4656 | ] 4657 | }, 4658 | { 4659 | "name": "Time Machine x Reese's Puffs", 4660 | "artist": "Waterflame", 4661 | "source": "youtube", 4662 | "startOffset": 0, 4663 | "yt-id": "OxzOt8wWyfk", 4664 | "songs": [ 4665 | 7 4666 | ] 4667 | }, 4668 | { 4669 | "name": "F-777 - Sonic Blaster (Vaporwave Remix)", 4670 | "artist": "Valu Joy", 4671 | "source": "youtube", 4672 | "startOffset": 1800, 4673 | "yt-id": "o9yks4oN3GE", 4674 | "songs": [ 4675 | 574484 4676 | ] 4677 | }, 4678 | { 4679 | "name": "Purgatori X Sakupen Circles", 4680 | "artist": "OmerAras55", 4681 | "source": "youtube", 4682 | "startOffset": 0, 4683 | "yt-id": "X3wouk0lecc", 4684 | "songs": [ 4685 | 895761 4686 | ] 4687 | }, 4688 | { 4689 | "name": "Iron God: Sakupen Hell Yes RMX x Purgatori", 4690 | "artist": "OmerAras55", 4691 | "source": "youtube", 4692 | "startOffset": 0, 4693 | "yt-id": "ZCkT9jkHzJk", 4694 | "songs": [ 4695 | 360804 4696 | ] 4697 | }, 4698 | { 4699 | "name": "hatsune miku", 4700 | "artist": "hapi =>", 4701 | "source": "youtube", 4702 | "startOffset": 250, 4703 | "yt-id": "VQOJ_SZ0Nto", 4704 | "songs": [ 4705 | 832007 4706 | ] 4707 | }, 4708 | { 4709 | "name": "Tidal Wave x Kibo", 4710 | "artist": "Dion Timmer", 4711 | "source": "youtube", 4712 | "startOffset": 0, 4713 | "yt-id": "AjM9mSQiBzk", 4714 | "songs": [ 4715 | 1266014 4716 | ] 4717 | }, 4718 | { 4719 | "name": "vacuuming the birdcage", 4720 | "artist": "shelbybryant", 4721 | "source": "youtube", 4722 | "startOffset": 0, 4723 | "yt-id": "sRb31zNFfj0", 4724 | "songs": [ 4725 | 993109 4726 | ] 4727 | }, 4728 | { 4729 | "name": "I got no time(russian version)", 4730 | "artist": "TheLivingTownstone", 4731 | "source": "youtube", 4732 | "startOffset": 0, 4733 | "yt-id": "", 4734 | "songs": [ 4735 | 672264 4736 | ] 4737 | }, 4738 | { 4739 | "name": "carnage mode x uptown funk", 4740 | "artist": "arturZaluPPa", 4741 | "source": "youtube", 4742 | "startOffset": 0, 4743 | "yt-id": "Nwew4ylpfuQ", 4744 | "songs": [ 4745 | 564162 4746 | ] 4747 | } 4748 | ] 4749 | --------------------------------------------------------------------------------