From a9bb17a38122a8792aa9d47d94560596b8ed84e6 Mon Sep 17 00:00:00 2001 From: 544146 Date: Thu, 28 Sep 2023 21:06:31 +0100 Subject: [PATCH] Use highest bpm always & feet saber WIP --- README.md | 6 + drs2dd.py | 13 +- .../difficulty_1a.json | 890 ++--- .../difficulty_1a_blockless.json | 818 ++-- .../difficulty_1b.json | 396 +- .../difficulty_1b_blockless.json | 310 +- .../info.json | 2 +- .../7 to Smoke/difficulty_1a.json | 966 ++--- .../7 to Smoke/difficulty_1a_blockless.json | 942 ++--- .../7 to Smoke/difficulty_1b.json | 654 ++-- .../7 to Smoke/difficulty_1b_blockless.json | 638 +-- .../7 to Smoke/info.json | 2 +- .../Crystal Clear/difficulty_1a.json | 1898 ++++----- .../difficulty_1a_blockless.json | 1892 ++++----- .../Crystal Clear/difficulty_1b.json | 662 ++-- .../difficulty_1b_blockless.json | 658 ++-- .../Crystal Clear/info.json | 2 +- .../Jetcoaster Windy/difficulty_1a.json | 586 +-- .../difficulty_1a_blockless.json | 544 +-- .../Jetcoaster Windy/difficulty_1b.json | 402 +- .../difficulty_1b_blockless.json | 384 +- .../Jetcoaster Windy/info.json | 2 +- .../LIKE A VAMPIRE/difficulty_1a.json | 928 ++--- .../difficulty_1a_blockless.json | 898 ++--- .../LIKE A VAMPIRE/difficulty_1b.json | 586 +-- .../difficulty_1b_blockless.json | 572 +-- .../LIKE A VAMPIRE/info.json | 2 +- .../Tropical White/difficulty_1a.json | 636 +-- .../difficulty_1a_blockless.json | 612 +-- .../Tropical White/difficulty_1b.json | 416 +- .../difficulty_1b_blockless.json | 382 +- .../Tropical White/info.json | 2 +- .../USA/difficulty_1a.json | 602 +-- .../USA/difficulty_1a_blockless.json | 532 +-- .../USA/difficulty_1b.json | 314 +- .../USA/difficulty_1b_blockless.json | 270 +- .../USA/info.json | 2 +- .../Wheres The Party At/difficulty_1a.json | 888 ++--- .../difficulty_1a_blockless.json | 846 ++-- .../Wheres The Party At/difficulty_1b.json | 446 +-- .../difficulty_1b_blockless.json | 394 +- .../Wheres The Party At/info.json | 2 +- .../You You You/difficulty_1a.json | 696 ++-- .../You You You/difficulty_1a_blockless.json | 664 ++-- .../You You You/difficulty_1b.json | 462 +-- .../You You You/difficulty_1b_blockless.json | 454 +-- .../You You You/info.json | 2 +- .../DANCERUSH STARDOM (2022121400)/info.json | 380 +- .../difficulty_1a.json | 1268 +++--- .../difficulty_1a_blockless.json | 1230 +++--- .../difficulty_1b.json | 902 ++--- .../difficulty_1b_blockless.json | 876 ++--- .../オネガイディスコミュージック/info.json | 2 +- .../difficulty_1a.json | 820 ++-- .../difficulty_1a_blockless.json | 774 ++-- .../difficulty_1b.json | 622 +-- .../difficulty_1b_blockless.json | 588 +-- .../スーパー戦湯ババンバーン/info.json | 2 +- .../ハッピーシンセサイザ/difficulty_1a.json | 560 +-- .../difficulty_1a_blockless.json | 530 +-- .../ハッピーシンセサイザ/difficulty_1b.json | 430 +- .../difficulty_1b_blockless.json | 378 +- .../ハッピーシンセサイザ/info.json | 2 +- .../ピアノ体操第一/difficulty_1a.json | 1282 +++--- .../difficulty_1a_blockless.json | 1224 +++--- .../ピアノ体操第一/difficulty_1b.json | 894 ++--- .../difficulty_1b_blockless.json | 852 ++-- .../ピアノ体操第一/info.json | 2 +- .../ユメブキ/difficulty_1a.json | 916 ++--- .../ユメブキ/difficulty_1a_blockless.json | 890 ++--- .../ユメブキ/difficulty_1b.json | 570 +-- .../ユメブキ/difficulty_1b_blockless.json | 542 +-- .../ユメブキ/info.json | 2 +- .../difficulty_1a.json | 1038 ++--- .../difficulty_1a_blockless.json | 944 ++--- .../difficulty_1b.json | 630 +-- .../difficulty_1b_blockless.json | 546 +-- .../info.json | 2 +- .../difficulty_1a.json | 3488 ++++++++--------- .../difficulty_1a_blockless.json | 3370 ++++++++-------- .../difficulty_1b.json | 538 +-- .../difficulty_1b_blockless.json | 446 +-- .../info.json | 2 +- 83 files changed, 25914 insertions(+), 25903 deletions(-) diff --git a/README.md b/README.md index b442ae42..51d67224 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,9 @@ Generate full DD Beat Map from json files in repository (no --song-id does all) ```bash .venv/Scripts/python drs2dd.py --song-id 187 ``` + +Generate full DD Beat Map from Feet Saber directory (WIP) + +```bash +.venv/Scripts/python fs2dd.py ... # WIP when I have time. +``` diff --git a/drs2dd.py b/drs2dd.py index 56b3906b..97d774cc 100644 --- a/drs2dd.py +++ b/drs2dd.py @@ -161,8 +161,13 @@ def create_dd_tracks_from_DRSSongData(drs_song_data: DRSSongData, target_dir: st if not target_dir: target_dir = f'{DEFAULT_TRACK_DIR}/{create_valid_filename(drs_song_data.info.title_name)}/' - dd_bmp = int(drs_song_data.info.bpm_max / 100) - dd_bps = dd_bmp / 60 + highest_bpm = max( + drs_song_data.difficulties.difficulty_1a.track.info.bpm_info, key=lambda x: x.bpm, + ).bpm + # note we don't use drs_song_data.info.bpm_max as it is not always correct... sometimes higher bpms exist. + # not sure why. + dd_bpm = int(highest_bpm / 100) + dd_bps = dd_bpm / 60 folder_path = TRACK_ID_TO_PATH.get(drs_song_data.song_id) song_path, song_length = get_drs_ogg_and_duration(folder_path) @@ -212,7 +217,7 @@ def create_dd_tracks_from_DRSSongData(drs_song_data: DRSSongData, target_dir: st lineNodes=line_notes, roadBlockNodes=road_block_notes, ), - BPM=dd_bmp, + BPM=dd_bpm, NPS=str(round(total_note_count / song_length_f, 2)), ) @@ -236,7 +241,7 @@ def create_dd_tracks_from_DRSSongData(drs_song_data: DRSSongData, target_dir: st SongName=drs_song_data.info.title_name, SongLength=song_length, SongAuthorName=drs_song_data.info.artist_name, - Bpm=str(dd_bmp), + Bpm=str(dd_bpm), SongPath=os.path.basename(song_path), CoverPath=os.path.basename(song_cover_path or '') or None, DRS_Easy=os.path.basename(easy_no_blocks), diff --git a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a.json index c0d3d309..a4e29395 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "50th Memorial Songs -Flagship medley- difficulty_1a", "sphereNodes": [ { - "noteOrder": 107, + "noteOrder": 139, "time": 0.01762167457171427, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 150, + "noteOrder": 194, "time": 0.02467034440039998, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 249, "time": 0.031719014229085685, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 235, + "noteOrder": 305, "time": 0.038767684057771395, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 278, + "noteOrder": 360, "time": 0.04581635388645711, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 321, + "noteOrder": 416, "time": 0.05286502371514281, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 363, + "noteOrder": 471, "time": 0.05991369354382852, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 428, + "noteOrder": 554, "time": 0.07048669828685708, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 610, "time": 0.07753536811554279, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 513, + "noteOrder": 665, "time": 0.0845840379442285, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 556, + "noteOrder": 721, "time": 0.09163270777291423, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 577, + "noteOrder": 748, "time": 0.09515704268725707, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 599, + "noteOrder": 776, "time": 0.09868137760159992, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 641, + "noteOrder": 831, "time": 0.10573004743028562, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 684, + "noteOrder": 887, "time": 0.11277871725897134, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 727, + "noteOrder": 942, "time": 0.11982738708765704, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 748, + "noteOrder": 970, "time": 0.12335172200199991, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 855, + "noteOrder": 1109, "time": 0.14097339657371416, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 1136, "time": 0.14449773148805703, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 898, + "noteOrder": 1164, "time": 0.14802206640239987, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 919, + "noteOrder": 1192, "time": 0.1515464013167427, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1026, + "noteOrder": 1330, "time": 0.169168075888457, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1048, + "noteOrder": 1358, "time": 0.17269241080279985, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1069, + "noteOrder": 1386, "time": 0.17621674571714271, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1090, + "noteOrder": 1413, "time": 0.17974108063148556, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1441, "time": 0.18326541554582845, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1133, + "noteOrder": 1469, "time": 0.1867897504601713, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1197, + "noteOrder": 1552, "time": 0.19736275520319985, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1219, + "noteOrder": 1580, "time": 0.2008870901175427, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1774, "time": 0.2255574345179427, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1390, + "noteOrder": 1801, "time": 0.22908176943228553, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1411, + "noteOrder": 1829, "time": 0.23260610434662837, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1432, + "noteOrder": 1857, "time": 0.23613043926097124, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1454, + "noteOrder": 1885, "time": 0.23965477417531408, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1486, + "noteOrder": 1926, "time": 0.24494127654682837, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1982, "time": 0.2519899463755141, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1982, "time": 0.2519899463755141, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1625, + "noteOrder": 2106, "time": 0.26784945349005695, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1646, + "noteOrder": 2134, "time": 0.2713737884043998, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 2245, "time": 0.2854711280617712, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1817, + "noteOrder": 2356, "time": 0.2995684677191426, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1839, + "noteOrder": 2383, "time": 0.3030928026334854, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 2411, "time": 0.3066171375478283, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.3242388121195426, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1988, + "noteOrder": 2577, "time": 0.3277631470338855, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2074, + "noteOrder": 2688, "time": 0.34186048669125685, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2159, + "noteOrder": 2799, "time": 0.35595782634862827, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2827, "time": 0.3594821612629711, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2202, + "noteOrder": 2854, "time": 0.36300649617731395, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2330, + "noteOrder": 3021, "time": 0.3841525056633711, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2416, + "noteOrder": 3132, "time": 0.39824984532074253, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2501, + "noteOrder": 3242, "time": 0.41234718497811396, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 3270, "time": 0.4158715198924568, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 3298, "time": 0.41939585480679964, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 3353, "time": 0.4264445246354853, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2630, + "noteOrder": 3409, "time": 0.4334931944641711, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2672, + "noteOrder": 3464, "time": 0.4405418642928568, "position": { "x": 3, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 3492, "time": 0.44406619920719964, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 3547, "time": 0.4511148690358854, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2758, + "noteOrder": 3575, "time": 0.4546392039502282, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2779, + "noteOrder": 3603, "time": 0.45816353886457106, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 3658, "time": 0.46521220869325675, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2865, + "noteOrder": 3714, "time": 0.4722608785219425, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3824, "time": 0.4863582181793139, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3824, "time": 0.4863582181793139, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3908, "time": 0.4969312229223425, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3935, "time": 0.5004555578366853, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3271, + "noteOrder": 4240, "time": 0.5392232418944567, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 4351, "time": 0.5533205815518281, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3399, + "noteOrder": 4406, "time": 0.5603692513805139, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3613, + "noteOrder": 4684, "time": 0.5956126005239424, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 4794, "time": 0.6097099401813137, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 5016, "time": 0.6379046194960567, "position": { "x": 7, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 5072, "time": 0.6449532893247424, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3955, + "noteOrder": 5127, "time": 0.6520019591534281, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3998, + "noteOrder": 5182, "time": 0.6590506289821138, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4041, + "noteOrder": 5238, "time": 0.6660992988107994, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 5293, "time": 0.6731479686394852, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 5321, "time": 0.676672303553828, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4126, + "noteOrder": 5349, "time": 0.6801966384681709, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4148, + "noteOrder": 5376, "time": 0.6837209733825137, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 5460, "time": 0.6942939781255423, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4233, + "noteOrder": 5487, "time": 0.6978183130398852, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 5570, "time": 0.7083913177829136, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4319, + "noteOrder": 5598, "time": 0.7119156526972565, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 7, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4361, + "noteOrder": 5654, "time": 0.7189643225259422, "position": { "x": 3, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4383, + "noteOrder": 5681, "time": 0.7224886574402851, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4404, + "noteOrder": 5709, "time": 0.7260129923546279, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4425, + "noteOrder": 5737, "time": 0.7295373272689708, "position": { "x": 6, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 5764, "time": 0.7330616621833138, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 5792, "time": 0.7365859970976565, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 5820, "time": 0.7401103320119995, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4511, + "noteOrder": 5848, "time": 0.7436346669263423, "position": { "x": 4, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4575, + "noteOrder": 5931, "time": 0.7542076716693709, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4618, + "noteOrder": 5986, "time": 0.7612563414980565, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 6014, "time": 0.7647806764123994, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 6042, "time": 0.7683050113267422, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4746, + "noteOrder": 6152, "time": 0.7824023509841137, "position": { "x": 4, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4789, + "noteOrder": 6208, "time": 0.7894510208127994, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4810, + "noteOrder": 6236, "time": 0.7929753557271422, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4832, + "noteOrder": 6263, "time": 0.7964996906414851, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 6319, "time": 0.8035483604701708, "position": { "x": 3, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4890, + "noteOrder": 6339, "time": 0.8061916116559279, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 6360, "time": 0.8088348628416852, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4923, + "noteOrder": 6381, "time": 0.8114781140274422, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 3, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5302, + "noteOrder": 6873, "time": 0.8740350587570279, "position": { "x": 6, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5323, + "noteOrder": 6901, "time": 0.8775593936713707, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5345, + "noteOrder": 6928, "time": 0.8810837285857136, "position": { "x": 4, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5366, + "noteOrder": 6956, "time": 0.8846080635000565, "position": { "x": 3, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 7206, "time": 0.9163270777291421, "position": { "x": 4, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5580, + "noteOrder": 7233, "time": 0.9198514126434849, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5601, + "noteOrder": 7261, "time": 0.9233757475578278, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 7289, "time": 0.9269000824721707, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5644, + "noteOrder": 7316, "time": 0.9304244173865135, "position": { "x": 7, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5665, + "noteOrder": 7344, "time": 0.9339487523008564, "position": { "x": 6, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5687, + "noteOrder": 7372, "time": 0.9374730872151992, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 5, @@ -2787,7 +2787,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 342, + "noteOrder": 443, "time": 0.05638935862948567, "position": { "x": 3, @@ -2810,7 +2810,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 3, @@ -2833,7 +2833,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 770, + "noteOrder": 998, "time": 0.12687605691634274, "position": { "x": 7, @@ -2856,7 +2856,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 7, @@ -2879,7 +2879,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 5, @@ -2902,7 +2902,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 812, + "noteOrder": 1053, "time": 0.13392472674502848, "position": { "x": 5, @@ -2925,7 +2925,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 812, + "noteOrder": 1053, "time": 0.13392472674502848, "position": { "x": 7, @@ -2948,7 +2948,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 7, @@ -2971,7 +2971,7 @@ { "lineGroupId": 28, "indexInLine": 3, - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 5, @@ -2994,7 +2994,7 @@ { "lineGroupId": 28, "indexInLine": 4, - "noteOrder": 855, + "noteOrder": 1109, "time": 0.14097339657371416, "position": { "x": 5, @@ -3017,7 +3017,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 941, + "noteOrder": 1219, "time": 0.15507073623108558, "position": { "x": 3, @@ -3040,7 +3040,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 3, @@ -3063,7 +3063,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 5, @@ -3086,7 +3086,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 983, + "noteOrder": 1275, "time": 0.1621194060597713, "position": { "x": 5, @@ -3109,7 +3109,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 983, + "noteOrder": 1275, "time": 0.1621194060597713, "position": { "x": 3, @@ -3132,7 +3132,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 3, @@ -3155,7 +3155,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 5, @@ -3178,7 +3178,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 1026, + "noteOrder": 1330, "time": 0.169168075888457, "position": { "x": 5, @@ -3201,7 +3201,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1497, "time": 0.19031408537451414, "position": { "x": 3, @@ -3224,7 +3224,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1197, + "noteOrder": 1552, "time": 0.19736275520319985, "position": { "x": 3, @@ -3247,7 +3247,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1240, + "noteOrder": 1607, "time": 0.20441142503188556, "position": { "x": 3, @@ -3270,7 +3270,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1283, + "noteOrder": 1663, "time": 0.21146009486057124, "position": { "x": 3, @@ -3293,7 +3293,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1283, + "noteOrder": 1663, "time": 0.21146009486057124, "position": { "x": 7, @@ -3316,7 +3316,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1325, + "noteOrder": 1718, "time": 0.21850876468925698, "position": { "x": 7, @@ -3339,7 +3339,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1325, + "noteOrder": 1718, "time": 0.21850876468925698, "position": { "x": 3, @@ -3362,7 +3362,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1774, "time": 0.2255574345179427, "position": { "x": 3, @@ -3385,7 +3385,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 4, @@ -3408,7 +3408,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1678, + "noteOrder": 2176, "time": 0.27666029077591403, "position": { "x": 4, @@ -3431,7 +3431,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1678, + "noteOrder": 2176, "time": 0.27666029077591403, "position": { "x": 5, @@ -3454,7 +3454,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 5, @@ -3477,7 +3477,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 7, @@ -3500,7 +3500,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1695.0, + "noteOrder": 2195.0, "time": 0.2784224582330855, "position": { "x": 7, @@ -3523,7 +3523,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 4, @@ -3546,7 +3546,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1700, + "noteOrder": 2203, "time": 0.2801846256902569, "position": { "x": 4, @@ -3569,7 +3569,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1700, + "noteOrder": 2203, "time": 0.2801846256902569, "position": { "x": 5, @@ -3592,7 +3592,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 5, @@ -3615,7 +3615,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 7, @@ -3638,7 +3638,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1716.0, + "noteOrder": 2223.0, "time": 0.2819467931474283, "position": { "x": 7, @@ -3661,7 +3661,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 6, @@ -3684,7 +3684,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 2286, "time": 0.29075763043328545, "position": { "x": 6, @@ -3707,7 +3707,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 2286, "time": 0.29075763043328545, "position": { "x": 5, @@ -3730,7 +3730,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 5, @@ -3753,7 +3753,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 3, @@ -3776,7 +3776,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 1780.0, + "noteOrder": 2306.0, "time": 0.2925197978904569, "position": { "x": 3, @@ -3799,7 +3799,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 6, @@ -3822,7 +3822,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1785, + "noteOrder": 2314, "time": 0.29428196534762835, "position": { "x": 6, @@ -3845,7 +3845,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1785, + "noteOrder": 2314, "time": 0.29428196534762835, "position": { "x": 5, @@ -3868,7 +3868,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 5, @@ -3891,7 +3891,7 @@ { "lineGroupId": 66, "indexInLine": 5, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 3, @@ -3914,7 +3914,7 @@ { "lineGroupId": 66, "indexInLine": 6, - "noteOrder": 1802.0, + "noteOrder": 2334.0, "time": 0.29604413280479974, "position": { "x": 3, @@ -3937,7 +3937,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 2439, "time": 0.31014147246217116, "position": { "x": 6, @@ -3960,7 +3960,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 6, @@ -3983,7 +3983,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 4, @@ -4006,7 +4006,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.3242388121195426, "position": { "x": 4, @@ -4029,7 +4029,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2010, + "noteOrder": 2605, "time": 0.3312874819482283, "position": { "x": 4, @@ -4052,7 +4052,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2020, + "noteOrder": 2619, "time": 0.3330496494053997, "position": { "x": 4, @@ -4075,7 +4075,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 2020, + "noteOrder": 2619, "time": 0.3330496494053997, "position": { "x": 5, @@ -4098,7 +4098,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 5, @@ -4121,7 +4121,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 7, @@ -4144,7 +4144,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 2037.0, + "noteOrder": 2639.0, "time": 0.33481181686257117, "position": { "x": 7, @@ -4167,7 +4167,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 4, @@ -4190,7 +4190,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2042, + "noteOrder": 2647, "time": 0.3365739843197426, "position": { "x": 4, @@ -4213,7 +4213,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 2042, + "noteOrder": 2647, "time": 0.3365739843197426, "position": { "x": 5, @@ -4236,7 +4236,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 5, @@ -4259,7 +4259,7 @@ { "lineGroupId": 78, "indexInLine": 5, - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 7, @@ -4282,7 +4282,7 @@ { "lineGroupId": 78, "indexInLine": 6, - "noteOrder": 2058.0, + "noteOrder": 2667.0, "time": 0.338336151776914, "position": { "x": 7, @@ -4305,7 +4305,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2716, "time": 0.3453848216055997, "position": { "x": 6, @@ -4328,7 +4328,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2106, + "noteOrder": 2730, "time": 0.34714698906277114, "position": { "x": 6, @@ -4351,7 +4351,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2106, + "noteOrder": 2730, "time": 0.34714698906277114, "position": { "x": 5, @@ -4374,7 +4374,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 5, @@ -4397,7 +4397,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 3, @@ -4420,7 +4420,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 2123.0, + "noteOrder": 2750.0, "time": 0.3489091565199426, "position": { "x": 3, @@ -4443,7 +4443,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 6, @@ -4466,7 +4466,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2127, + "noteOrder": 2757, "time": 0.350671323977114, "position": { "x": 6, @@ -4489,7 +4489,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2127, + "noteOrder": 2757, "time": 0.350671323977114, "position": { "x": 5, @@ -4512,7 +4512,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 5, @@ -4535,7 +4535,7 @@ { "lineGroupId": 82, "indexInLine": 5, - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 3, @@ -4558,7 +4558,7 @@ { "lineGroupId": 82, "indexInLine": 6, - "noteOrder": 2144.0, + "noteOrder": 2777.0, "time": 0.35243349143428543, "position": { "x": 3, @@ -4581,7 +4581,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2223, + "noteOrder": 2882, "time": 0.3665308310916569, "position": { "x": 6, @@ -4604,7 +4604,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2266, + "noteOrder": 2938, "time": 0.3735795009203426, "position": { "x": 6, @@ -4627,7 +4627,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2266, + "noteOrder": 2938, "time": 0.3735795009203426, "position": { "x": 4, @@ -4650,7 +4650,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 4, @@ -4673,7 +4673,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 7, @@ -4696,7 +4696,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2330, + "noteOrder": 3021, "time": 0.3841525056633711, "position": { "x": 7, @@ -4719,7 +4719,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 6, @@ -4742,7 +4742,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 6, @@ -4765,7 +4765,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2394, + "noteOrder": 3104, "time": 0.3947255104063997, "position": { "x": 3, @@ -4788,7 +4788,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2416, + "noteOrder": 3132, "time": 0.39824984532074253, "position": { "x": 3, @@ -4811,7 +4811,7 @@ { "lineGroupId": 96, "indexInLine": 3, - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 4, @@ -4834,7 +4834,7 @@ { "lineGroupId": 96, "indexInLine": 4, - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 4, @@ -4857,7 +4857,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2480, + "noteOrder": 3215, "time": 0.4088228500637711, "position": { "x": 6, @@ -4880,7 +4880,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 6, @@ -4903,7 +4903,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 4, @@ -4926,7 +4926,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 4, @@ -4949,7 +4949,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2843, + "noteOrder": 3686, "time": 0.4687365436075996, "position": { "x": 6, @@ -4972,7 +4972,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 6, @@ -4995,7 +4995,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 3741, "time": 0.4757852134362853, "position": { "x": 4, @@ -5018,7 +5018,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 4, @@ -5041,7 +5041,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3079, + "noteOrder": 3991, "time": 0.507504227665371, "position": { "x": 3, @@ -5064,7 +5064,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3089, + "noteOrder": 4005, "time": 0.5092663951225425, "position": { "x": 3, @@ -5087,7 +5087,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3089, + "noteOrder": 4005, "time": 0.5092663951225425, "position": { "x": 4, @@ -5110,7 +5110,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 4, @@ -5133,7 +5133,7 @@ { "lineGroupId": 128, "indexInLine": 5, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 6, @@ -5156,7 +5156,7 @@ { "lineGroupId": 128, "indexInLine": 6, - "noteOrder": 3106.0, + "noteOrder": 4024.0, "time": 0.5110285625797139, "position": { "x": 6, @@ -5179,7 +5179,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 3, @@ -5202,7 +5202,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3111, + "noteOrder": 4032, "time": 0.5127907300368854, "position": { "x": 3, @@ -5225,7 +5225,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3111, + "noteOrder": 4032, "time": 0.5127907300368854, "position": { "x": 4, @@ -5248,7 +5248,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 4, @@ -5271,7 +5271,7 @@ { "lineGroupId": 129, "indexInLine": 5, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 6, @@ -5294,7 +5294,7 @@ { "lineGroupId": 129, "indexInLine": 6, - "noteOrder": 3127.0, + "noteOrder": 4052.0, "time": 0.5145528974940567, "position": { "x": 6, @@ -5317,7 +5317,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 3, @@ -5340,7 +5340,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 4060, "time": 0.5163150649512281, "position": { "x": 3, @@ -5363,7 +5363,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 4060, "time": 0.5163150649512281, "position": { "x": 5, @@ -5386,7 +5386,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 5, @@ -5409,7 +5409,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 6, @@ -5432,7 +5432,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3149.0, + "noteOrder": 4080.0, "time": 0.5180772324083996, "position": { "x": 6, @@ -5455,7 +5455,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 3, @@ -5478,7 +5478,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3153, + "noteOrder": 4088, "time": 0.519839399865571, "position": { "x": 3, @@ -5501,7 +5501,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 3153, + "noteOrder": 4088, "time": 0.519839399865571, "position": { "x": 5, @@ -5524,7 +5524,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 5, @@ -5547,7 +5547,7 @@ { "lineGroupId": 131, "indexInLine": 5, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 6, @@ -5570,7 +5570,7 @@ { "lineGroupId": 131, "indexInLine": 6, - "noteOrder": 3170.0, + "noteOrder": 4108.0, "time": 0.5216015673227424, "position": { "x": 6, @@ -5593,7 +5593,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 4, @@ -5616,7 +5616,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3175, + "noteOrder": 4115, "time": 0.5233637347799138, "position": { "x": 4, @@ -5639,7 +5639,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3175, + "noteOrder": 4115, "time": 0.5233637347799138, "position": { "x": 5, @@ -5662,7 +5662,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 5, @@ -5685,7 +5685,7 @@ { "lineGroupId": 132, "indexInLine": 5, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 7, @@ -5708,7 +5708,7 @@ { "lineGroupId": 132, "indexInLine": 6, - "noteOrder": 3191.0, + "noteOrder": 4135.0, "time": 0.5251259022370853, "position": { "x": 7, @@ -5731,7 +5731,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 4, @@ -5754,7 +5754,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3196, + "noteOrder": 4143, "time": 0.5268880696942567, "position": { "x": 4, @@ -5777,7 +5777,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 3196, + "noteOrder": 4143, "time": 0.5268880696942567, "position": { "x": 5, @@ -5800,7 +5800,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 5, @@ -5823,7 +5823,7 @@ { "lineGroupId": 133, "indexInLine": 5, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 7, @@ -5846,7 +5846,7 @@ { "lineGroupId": 133, "indexInLine": 6, - "noteOrder": 3213.0, + "noteOrder": 4163.0, "time": 0.5286502371514281, "position": { "x": 7, @@ -5869,7 +5869,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 4, @@ -5892,7 +5892,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3218, + "noteOrder": 4171, "time": 0.5304124046085996, "position": { "x": 4, @@ -5915,7 +5915,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 3218, + "noteOrder": 4171, "time": 0.5304124046085996, "position": { "x": 6, @@ -5938,7 +5938,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 6, @@ -5961,7 +5961,7 @@ { "lineGroupId": 134, "indexInLine": 5, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 7, @@ -5984,7 +5984,7 @@ { "lineGroupId": 134, "indexInLine": 6, - "noteOrder": 3234.0, + "noteOrder": 4191.0, "time": 0.532174572065771, "position": { "x": 7, @@ -6007,7 +6007,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 4, @@ -6030,7 +6030,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3239, + "noteOrder": 4199, "time": 0.5339367395229424, "position": { "x": 4, @@ -6053,7 +6053,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3239, + "noteOrder": 4199, "time": 0.5339367395229424, "position": { "x": 6, @@ -6076,7 +6076,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 6, @@ -6099,7 +6099,7 @@ { "lineGroupId": 135, "indexInLine": 5, - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 7, @@ -6122,7 +6122,7 @@ { "lineGroupId": 135, "indexInLine": 6, - "noteOrder": 3256.0, + "noteOrder": 4218.0, "time": 0.5356989069801139, "position": { "x": 7, @@ -6145,7 +6145,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3292, + "noteOrder": 4268, "time": 0.5427475768087996, "position": { "x": 7, @@ -6168,7 +6168,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3303, + "noteOrder": 4282, "time": 0.544509744265971, "position": { "x": 7, @@ -6191,7 +6191,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 3303, + "noteOrder": 4282, "time": 0.544509744265971, "position": { "x": 5, @@ -6214,7 +6214,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 3309.0, + "noteOrder": 4288.0, "time": 0.544509744265971, "position": { "x": 5, @@ -6237,7 +6237,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3314, + "noteOrder": 4296, "time": 0.5462719117231424, "position": { "x": 3, @@ -6260,7 +6260,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3324, + "noteOrder": 4309, "time": 0.5480340791803139, "position": { "x": 3, @@ -6283,7 +6283,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3324, + "noteOrder": 4309, "time": 0.5480340791803139, "position": { "x": 5, @@ -6306,7 +6306,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3330.0, + "noteOrder": 4315.0, "time": 0.5480340791803139, "position": { "x": 5, @@ -6329,7 +6329,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3335, + "noteOrder": 4323, "time": 0.5497962466374853, "position": { "x": 6, @@ -6352,7 +6352,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3399, + "noteOrder": 4406, "time": 0.5603692513805139, "position": { "x": 6, @@ -6375,7 +6375,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4434, "time": 0.5638935862948566, "position": { "x": 7, @@ -6398,7 +6398,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3431, + "noteOrder": 4448, "time": 0.5656557537520281, "position": { "x": 7, @@ -6421,7 +6421,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 3431, + "noteOrder": 4448, "time": 0.5656557537520281, "position": { "x": 6, @@ -6444,7 +6444,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 6, @@ -6467,7 +6467,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 4, @@ -6490,7 +6490,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 3448.0, + "noteOrder": 4468.0, "time": 0.5674179212091995, "position": { "x": 4, @@ -6513,7 +6513,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 7, @@ -6536,7 +6536,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3453, + "noteOrder": 4476, "time": 0.569180088666371, "position": { "x": 7, @@ -6559,7 +6559,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 3453, + "noteOrder": 4476, "time": 0.569180088666371, "position": { "x": 6, @@ -6582,7 +6582,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 6, @@ -6605,7 +6605,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 4, @@ -6628,7 +6628,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 3469.0, + "noteOrder": 4496.0, "time": 0.5709422561235424, "position": { "x": 4, @@ -6651,7 +6651,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 7, @@ -6674,7 +6674,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3474, + "noteOrder": 4503, "time": 0.5727044235807137, "position": { "x": 7, @@ -6697,7 +6697,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3474, + "noteOrder": 4503, "time": 0.5727044235807137, "position": { "x": 5, @@ -6720,7 +6720,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 5, @@ -6743,7 +6743,7 @@ { "lineGroupId": 146, "indexInLine": 5, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 4, @@ -6766,7 +6766,7 @@ { "lineGroupId": 146, "indexInLine": 6, - "noteOrder": 3491.0, + "noteOrder": 4523.0, "time": 0.5744665910378852, "position": { "x": 4, @@ -6789,7 +6789,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 7, @@ -6812,7 +6812,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3495, + "noteOrder": 4531, "time": 0.5762287584950567, "position": { "x": 7, @@ -6835,7 +6835,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 3495, + "noteOrder": 4531, "time": 0.5762287584950567, "position": { "x": 5, @@ -6858,7 +6858,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 5, @@ -6881,7 +6881,7 @@ { "lineGroupId": 147, "indexInLine": 5, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 4, @@ -6904,7 +6904,7 @@ { "lineGroupId": 147, "indexInLine": 6, - "noteOrder": 3512.0, + "noteOrder": 4551.0, "time": 0.5779909259522281, "position": { "x": 4, @@ -6927,7 +6927,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 6, @@ -6950,7 +6950,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3517, + "noteOrder": 4559, "time": 0.5797530934093996, "position": { "x": 6, @@ -6973,7 +6973,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 3517, + "noteOrder": 4559, "time": 0.5797530934093996, "position": { "x": 5, @@ -6996,7 +6996,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 5, @@ -7019,7 +7019,7 @@ { "lineGroupId": 148, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 3, @@ -7042,7 +7042,7 @@ { "lineGroupId": 148, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 4579.0, "time": 0.5815152608665709, "position": { "x": 3, @@ -7065,7 +7065,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 6, @@ -7088,7 +7088,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3538, + "noteOrder": 4587, "time": 0.5832774283237424, "position": { "x": 6, @@ -7111,7 +7111,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3538, + "noteOrder": 4587, "time": 0.5832774283237424, "position": { "x": 5, @@ -7134,7 +7134,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 5, @@ -7157,7 +7157,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 3, @@ -7180,7 +7180,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3555.0, + "noteOrder": 4606.0, "time": 0.5850395957809138, "position": { "x": 3, @@ -7203,7 +7203,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 6, @@ -7226,7 +7226,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3560, + "noteOrder": 4614, "time": 0.5868017632380853, "position": { "x": 6, @@ -7249,7 +7249,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3560, + "noteOrder": 4614, "time": 0.5868017632380853, "position": { "x": 4, @@ -7272,7 +7272,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 4, @@ -7295,7 +7295,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 3, @@ -7318,7 +7318,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3576.0, + "noteOrder": 4634.0, "time": 0.5885639306952567, "position": { "x": 3, @@ -7341,7 +7341,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 6, @@ -7364,7 +7364,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3581, + "noteOrder": 4642, "time": 0.5903260981524281, "position": { "x": 6, @@ -7387,7 +7387,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3581, + "noteOrder": 4642, "time": 0.5903260981524281, "position": { "x": 4, @@ -7410,7 +7410,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 4, @@ -7433,7 +7433,7 @@ { "lineGroupId": 151, "indexInLine": 5, - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 3, @@ -7456,7 +7456,7 @@ { "lineGroupId": 151, "indexInLine": 6, - "noteOrder": 3598.0, + "noteOrder": 4662.0, "time": 0.5920882656095995, "position": { "x": 3, @@ -7479,7 +7479,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 3634, + "noteOrder": 4711, "time": 0.5991369354382852, "position": { "x": 3, @@ -7502,7 +7502,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3645, + "noteOrder": 4725, "time": 0.6008991028954567, "position": { "x": 3, @@ -7525,7 +7525,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 3645, + "noteOrder": 4725, "time": 0.6008991028954567, "position": { "x": 5, @@ -7548,7 +7548,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 3651.0, + "noteOrder": 4731.0, "time": 0.6008991028954567, "position": { "x": 5, @@ -7571,7 +7571,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3656, + "noteOrder": 4739, "time": 0.6026612703526281, "position": { "x": 7, @@ -7594,7 +7594,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3667, + "noteOrder": 4753, "time": 0.6044234378097996, "position": { "x": 7, @@ -7617,7 +7617,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 3667, + "noteOrder": 4753, "time": 0.6044234378097996, "position": { "x": 5, @@ -7640,7 +7640,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 3673.0, + "noteOrder": 4759.0, "time": 0.6044234378097996, "position": { "x": 5, @@ -7663,7 +7663,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 4767, "time": 0.6061856052669709, "position": { "x": 4, @@ -7686,7 +7686,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 4822, "time": 0.6132342750956566, "position": { "x": 4, @@ -7709,7 +7709,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 3741, + "noteOrder": 4850, "time": 0.6167586100099994, "position": { "x": 7, @@ -7732,7 +7732,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 7, @@ -7755,7 +7755,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 3, @@ -7778,7 +7778,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 3, @@ -7801,7 +7801,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4532, + "noteOrder": 5875, "time": 0.7471590018406852, "position": { "x": 3, @@ -7824,7 +7824,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 3, @@ -7847,7 +7847,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4575, + "noteOrder": 5931, "time": 0.7542076716693709, "position": { "x": 4, @@ -7870,7 +7870,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 4, @@ -7893,7 +7893,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 4618, + "noteOrder": 5986, "time": 0.7612563414980565, "position": { "x": 4, @@ -7916,7 +7916,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 4682, + "noteOrder": 6069, "time": 0.7718293462410851, "position": { "x": 3, @@ -7939,7 +7939,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4703, + "noteOrder": 6097, "time": 0.775353681155428, "position": { "x": 7, @@ -7962,7 +7962,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 7, @@ -7985,7 +7985,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 4746, + "noteOrder": 6152, "time": 0.7824023509841137, "position": { "x": 6, @@ -8008,7 +8008,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 6, @@ -8031,7 +8031,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 4789, + "noteOrder": 6208, "time": 0.7894510208127994, "position": { "x": 6, @@ -8054,7 +8054,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 4853, + "noteOrder": 6291, "time": 0.800024025555828, "position": { "x": 7, @@ -8077,7 +8077,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5045, + "noteOrder": 6540, "time": 0.8317430397849136, "position": { "x": 7, @@ -8100,7 +8100,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 7, @@ -8123,7 +8123,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 5, @@ -8146,7 +8146,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 5088, + "noteOrder": 6596, "time": 0.8387917096135993, "position": { "x": 5, @@ -8169,7 +8169,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 6596, "time": 0.8387917096135993, "position": { "x": 7, @@ -8192,7 +8192,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 7, @@ -8215,7 +8215,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 5, @@ -8238,7 +8238,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 5131, + "noteOrder": 6651, "time": 0.845840379442285, "position": { "x": 5, @@ -8261,7 +8261,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 5131, + "noteOrder": 6651, "time": 0.845840379442285, "position": { "x": 7, @@ -8284,7 +8284,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 7, @@ -8307,7 +8307,7 @@ { "lineGroupId": 215, "indexInLine": 3, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 5, @@ -8330,7 +8330,7 @@ { "lineGroupId": 215, "indexInLine": 4, - "noteOrder": 5174, + "noteOrder": 6707, "time": 0.8528890492709706, "position": { "x": 5, @@ -8353,7 +8353,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 5174, + "noteOrder": 6707, "time": 0.8528890492709706, "position": { "x": 7, @@ -8376,7 +8376,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 7, @@ -8399,7 +8399,7 @@ { "lineGroupId": 216, "indexInLine": 3, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 5, @@ -8422,7 +8422,7 @@ { "lineGroupId": 216, "indexInLine": 4, - "noteOrder": 5216, + "noteOrder": 6762, "time": 0.8599377190996566, "position": { "x": 5, @@ -8445,7 +8445,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 5216, + "noteOrder": 6762, "time": 0.8599377190996566, "position": { "x": 7, @@ -8468,7 +8468,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 5259, + "noteOrder": 6818, "time": 0.8669863889283422, "position": { "x": 7, @@ -8491,7 +8491,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5259, + "noteOrder": 6818, "time": 0.8669863889283422, "position": { "x": 3, @@ -8514,7 +8514,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5302, + "noteOrder": 6873, "time": 0.8740350587570279, "position": { "x": 3, @@ -8537,7 +8537,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5388, + "noteOrder": 6984, "time": 0.8881323984143993, "position": { "x": 3, @@ -8560,7 +8560,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 3, @@ -8583,7 +8583,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 5, @@ -8606,7 +8606,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 5415.0, + "noteOrder": 7018.0, "time": 0.8916567333287422, "position": { "x": 5, @@ -8629,7 +8629,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5430, + "noteOrder": 7039, "time": 0.895181068243085, "position": { "x": 7, @@ -8652,7 +8652,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 7, @@ -8675,7 +8675,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 5, @@ -8698,7 +8698,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5458.0, + "noteOrder": 7073.0, "time": 0.8987054031574279, "position": { "x": 5, @@ -8721,7 +8721,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 5473, + "noteOrder": 7095, "time": 0.9022297380717708, "position": { "x": 3, @@ -8744,7 +8744,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 3, @@ -8767,7 +8767,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 5, @@ -8790,7 +8790,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 5500.0, + "noteOrder": 7128.0, "time": 0.9057540729861135, "position": { "x": 5, @@ -8813,7 +8813,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5516, + "noteOrder": 7150, "time": 0.9092784079004564, "position": { "x": 7, @@ -8836,7 +8836,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 7, @@ -8859,7 +8859,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 5, @@ -8882,7 +8882,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5543.0, + "noteOrder": 7184.0, "time": 0.9128027428147992, "position": { "x": 5, @@ -8905,7 +8905,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 5708, + "noteOrder": 7400, "time": 0.9409974221295421, "position": { "x": 3, @@ -8928,7 +8928,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 5730, + "noteOrder": 7427, "time": 0.944521757043885, "position": { "x": 3, @@ -8951,7 +8951,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 3, @@ -8974,7 +8974,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 418.0, + "noteOrder": 539.0, "time": 0.06696236337251424, "position": { "x": 5, @@ -9002,7 +9002,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 450.5, + "noteOrder": 583.5, "time": 0.07401103320119994, "position": { "x": 5, @@ -9030,7 +9030,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 493.5, + "noteOrder": 638.5, "time": 0.08105970302988565, "position": { "x": 5, @@ -9058,7 +9058,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 535.5, + "noteOrder": 694.5, "time": 0.08810837285857136, "position": { "x": 5, @@ -9086,7 +9086,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 621.5, + "noteOrder": 805.5, "time": 0.10220571251594278, "position": { "x": 5, @@ -9114,7 +9114,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 664.5, + "noteOrder": 860.5, "time": 0.10925438234462849, "position": { "x": 5, @@ -9142,7 +9142,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 707.5, + "noteOrder": 916.5, "time": 0.11630305217331419, "position": { "x": 5, @@ -9170,7 +9170,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1177.5, + "noteOrder": 1525.5, "time": 0.193838420288857, "position": { "x": 5, @@ -9198,7 +9198,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1262.5, + "noteOrder": 1636.5, "time": 0.2079357599462284, "position": { "x": 5, @@ -9226,7 +9226,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1305.5, + "noteOrder": 1692.5, "time": 0.21498442977491414, "position": { "x": 5, @@ -9254,7 +9254,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1348.5, + "noteOrder": 1747.5, "time": 0.22203309960359982, "position": { "x": 5, @@ -9282,7 +9282,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1904.5, + "noteOrder": 2468.5, "time": 0.31366580737651406, "position": { "x": 5, @@ -9310,7 +9310,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1946.5, + "noteOrder": 2523.5, "time": 0.32071447720519974, "position": { "x": 5, @@ -9338,7 +9338,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2246.5, + "noteOrder": 2911.5, "time": 0.37005516600599975, "position": { "x": 5, @@ -9366,7 +9366,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2289.5, + "noteOrder": 2966.5, "time": 0.37710383583468543, "position": { "x": 5, @@ -9394,7 +9394,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2374.5, + "noteOrder": 3077.5, "time": 0.39120117549205685, "position": { "x": 5, @@ -9422,7 +9422,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2460.5, + "noteOrder": 3188.5, "time": 0.4052985151494282, "position": { "x": 5, @@ -9450,7 +9450,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2716.5, + "noteOrder": 3521.5, "time": 0.4475905341215425, "position": { "x": 5, @@ -9478,7 +9478,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2802.5, + "noteOrder": 3631.5, "time": 0.4616878737789139, "position": { "x": 5, @@ -9506,7 +9506,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2909.5, + "noteOrder": 3770.5, "time": 0.47930954835062817, "position": { "x": 5, @@ -9534,7 +9534,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2984.0, + "noteOrder": 3864.0, "time": 0.48988255309365675, "position": { "x": 5, @@ -9562,7 +9562,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3058.5, + "noteOrder": 3964.5, "time": 0.5039798927510282, "position": { "x": 5, @@ -9590,7 +9590,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3379.5, + "noteOrder": 4380.5, "time": 0.556844916466171, "position": { "x": 5, @@ -9618,7 +9618,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3721.5, + "noteOrder": 4823.5, "time": 0.6132342750956566, "position": { "x": 5, @@ -9646,7 +9646,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3849.5, + "noteOrder": 4989.5, "time": 0.6343802845817138, "position": { "x": 5, @@ -9674,7 +9674,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3935.5, + "noteOrder": 5100.5, "time": 0.6484776242390852, "position": { "x": 5, @@ -9702,7 +9702,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4020.5, + "noteOrder": 5211.5, "time": 0.6625749638964566, "position": { "x": 5, @@ -9730,7 +9730,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4191.5, + "noteOrder": 5433.5, "time": 0.6907696432111994, "position": { "x": 5, @@ -9758,7 +9758,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4277.5, + "noteOrder": 5544.5, "time": 0.7048669828685709, "position": { "x": 5, @@ -9786,7 +9786,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4683.5, + "noteOrder": 6070.5, "time": 0.7718293462410851, "position": { "x": 5, @@ -9814,7 +9814,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4854.5, + "noteOrder": 6292.5, "time": 0.800024025555828, "position": { "x": 5, @@ -9842,7 +9842,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4951.0, + "noteOrder": 6414.0, "time": 0.8141213652131993, "position": { "x": 5, @@ -9870,7 +9870,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5239.5, + "noteOrder": 6791.5, "time": 0.8634620540139993, "position": { "x": 5, @@ -9898,7 +9898,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5282.5, + "noteOrder": 6846.5, "time": 0.870510723842685, "position": { "x": 5, @@ -9926,7 +9926,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5731.5, + "noteOrder": 7428.5, "time": 0.944521757043885, "position": { "x": 5, @@ -9954,7 +9954,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5902.5, + "noteOrder": 7650.5, "time": 0.9727164363586278, "position": { "x": 5, @@ -9995,7 +9995,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 135, + "BPM": 175, "NPS": "3.95", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a_blockless.json index 75ec9cef..c97ff281 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "50th Memorial Songs -Flagship medley- difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 107, + "noteOrder": 139, "time": 0.01762167457171427, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 150, + "noteOrder": 194, "time": 0.02467034440039998, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 249, "time": 0.031719014229085685, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 235, + "noteOrder": 305, "time": 0.038767684057771395, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 278, + "noteOrder": 360, "time": 0.04581635388645711, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 321, + "noteOrder": 416, "time": 0.05286502371514281, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 363, + "noteOrder": 471, "time": 0.05991369354382852, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 428, + "noteOrder": 554, "time": 0.07048669828685708, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 610, "time": 0.07753536811554279, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 513, + "noteOrder": 665, "time": 0.0845840379442285, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 556, + "noteOrder": 721, "time": 0.09163270777291423, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 577, + "noteOrder": 748, "time": 0.09515704268725707, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 599, + "noteOrder": 776, "time": 0.09868137760159992, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 641, + "noteOrder": 831, "time": 0.10573004743028562, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 684, + "noteOrder": 887, "time": 0.11277871725897134, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 727, + "noteOrder": 942, "time": 0.11982738708765704, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 748, + "noteOrder": 970, "time": 0.12335172200199991, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 855, + "noteOrder": 1109, "time": 0.14097339657371416, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 1136, "time": 0.14449773148805703, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 898, + "noteOrder": 1164, "time": 0.14802206640239987, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 919, + "noteOrder": 1192, "time": 0.1515464013167427, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1026, + "noteOrder": 1330, "time": 0.169168075888457, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1048, + "noteOrder": 1358, "time": 0.17269241080279985, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1069, + "noteOrder": 1386, "time": 0.17621674571714271, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1090, + "noteOrder": 1413, "time": 0.17974108063148556, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1112, + "noteOrder": 1441, "time": 0.18326541554582845, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1133, + "noteOrder": 1469, "time": 0.1867897504601713, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1197, + "noteOrder": 1552, "time": 0.19736275520319985, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1219, + "noteOrder": 1580, "time": 0.2008870901175427, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1774, "time": 0.2255574345179427, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1390, + "noteOrder": 1801, "time": 0.22908176943228553, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1411, + "noteOrder": 1829, "time": 0.23260610434662837, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1432, + "noteOrder": 1857, "time": 0.23613043926097124, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1454, + "noteOrder": 1885, "time": 0.23965477417531408, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1486, + "noteOrder": 1926, "time": 0.24494127654682837, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1982, "time": 0.2519899463755141, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1529, + "noteOrder": 1982, "time": 0.2519899463755141, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1625, + "noteOrder": 2106, "time": 0.26784945349005695, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1646, + "noteOrder": 2134, "time": 0.2713737884043998, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 2245, "time": 0.2854711280617712, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1817, + "noteOrder": 2356, "time": 0.2995684677191426, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1839, + "noteOrder": 2383, "time": 0.3030928026334854, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 2411, "time": 0.3066171375478283, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.3242388121195426, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1988, + "noteOrder": 2577, "time": 0.3277631470338855, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2074, + "noteOrder": 2688, "time": 0.34186048669125685, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2159, + "noteOrder": 2799, "time": 0.35595782634862827, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2827, "time": 0.3594821612629711, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2202, + "noteOrder": 2854, "time": 0.36300649617731395, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2330, + "noteOrder": 3021, "time": 0.3841525056633711, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2416, + "noteOrder": 3132, "time": 0.39824984532074253, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2501, + "noteOrder": 3242, "time": 0.41234718497811396, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 3270, "time": 0.4158715198924568, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 3298, "time": 0.41939585480679964, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 3353, "time": 0.4264445246354853, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2630, + "noteOrder": 3409, "time": 0.4334931944641711, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2672, + "noteOrder": 3464, "time": 0.4405418642928568, "position": { "x": 3, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2694, + "noteOrder": 3492, "time": 0.44406619920719964, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 3547, "time": 0.4511148690358854, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2758, + "noteOrder": 3575, "time": 0.4546392039502282, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2779, + "noteOrder": 3603, "time": 0.45816353886457106, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2822, + "noteOrder": 3658, "time": 0.46521220869325675, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2865, + "noteOrder": 3714, "time": 0.4722608785219425, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3824, "time": 0.4863582181793139, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3824, "time": 0.4863582181793139, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3014, + "noteOrder": 3908, "time": 0.4969312229223425, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3036, + "noteOrder": 3935, "time": 0.5004555578366853, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3271, + "noteOrder": 4240, "time": 0.5392232418944567, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 4351, "time": 0.5533205815518281, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3399, + "noteOrder": 4406, "time": 0.5603692513805139, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3613, + "noteOrder": 4684, "time": 0.5956126005239424, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3699, + "noteOrder": 4794, "time": 0.6097099401813137, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 5016, "time": 0.6379046194960567, "position": { "x": 7, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 5072, "time": 0.6449532893247424, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3955, + "noteOrder": 5127, "time": 0.6520019591534281, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3998, + "noteOrder": 5182, "time": 0.6590506289821138, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4041, + "noteOrder": 5238, "time": 0.6660992988107994, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 5293, "time": 0.6731479686394852, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 5321, "time": 0.676672303553828, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4126, + "noteOrder": 5349, "time": 0.6801966384681709, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4148, + "noteOrder": 5376, "time": 0.6837209733825137, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 5460, "time": 0.6942939781255423, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4233, + "noteOrder": 5487, "time": 0.6978183130398852, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4297, + "noteOrder": 5570, "time": 0.7083913177829136, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4319, + "noteOrder": 5598, "time": 0.7119156526972565, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 7, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4361, + "noteOrder": 5654, "time": 0.7189643225259422, "position": { "x": 3, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4383, + "noteOrder": 5681, "time": 0.7224886574402851, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4404, + "noteOrder": 5709, "time": 0.7260129923546279, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4425, + "noteOrder": 5737, "time": 0.7295373272689708, "position": { "x": 6, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 5764, "time": 0.7330616621833138, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 5792, "time": 0.7365859970976565, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 5820, "time": 0.7401103320119995, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4511, + "noteOrder": 5848, "time": 0.7436346669263423, "position": { "x": 4, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4575, + "noteOrder": 5931, "time": 0.7542076716693709, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4618, + "noteOrder": 5986, "time": 0.7612563414980565, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 6014, "time": 0.7647806764123994, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4661, + "noteOrder": 6042, "time": 0.7683050113267422, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4746, + "noteOrder": 6152, "time": 0.7824023509841137, "position": { "x": 4, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4789, + "noteOrder": 6208, "time": 0.7894510208127994, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4810, + "noteOrder": 6236, "time": 0.7929753557271422, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4832, + "noteOrder": 6263, "time": 0.7964996906414851, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 6319, "time": 0.8035483604701708, "position": { "x": 3, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4890, + "noteOrder": 6339, "time": 0.8061916116559279, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4906, + "noteOrder": 6360, "time": 0.8088348628416852, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4923, + "noteOrder": 6381, "time": 0.8114781140274422, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 3, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5302, + "noteOrder": 6873, "time": 0.8740350587570279, "position": { "x": 6, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5323, + "noteOrder": 6901, "time": 0.8775593936713707, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5345, + "noteOrder": 6928, "time": 0.8810837285857136, "position": { "x": 4, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5366, + "noteOrder": 6956, "time": 0.8846080635000565, "position": { "x": 3, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5559, + "noteOrder": 7206, "time": 0.9163270777291421, "position": { "x": 4, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5580, + "noteOrder": 7233, "time": 0.9198514126434849, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5601, + "noteOrder": 7261, "time": 0.9233757475578278, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5623, + "noteOrder": 7289, "time": 0.9269000824721707, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5644, + "noteOrder": 7316, "time": 0.9304244173865135, "position": { "x": 7, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5665, + "noteOrder": 7344, "time": 0.9339487523008564, "position": { "x": 6, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5687, + "noteOrder": 7372, "time": 0.9374730872151992, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 5, @@ -2787,7 +2787,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 342, + "noteOrder": 443, "time": 0.05638935862948567, "position": { "x": 3, @@ -2810,7 +2810,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 3, @@ -2833,7 +2833,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 770, + "noteOrder": 998, "time": 0.12687605691634274, "position": { "x": 7, @@ -2856,7 +2856,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 7, @@ -2879,7 +2879,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 5, @@ -2902,7 +2902,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 812, + "noteOrder": 1053, "time": 0.13392472674502848, "position": { "x": 5, @@ -2925,7 +2925,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 812, + "noteOrder": 1053, "time": 0.13392472674502848, "position": { "x": 7, @@ -2948,7 +2948,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 7, @@ -2971,7 +2971,7 @@ { "lineGroupId": 28, "indexInLine": 3, - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 5, @@ -2994,7 +2994,7 @@ { "lineGroupId": 28, "indexInLine": 4, - "noteOrder": 855, + "noteOrder": 1109, "time": 0.14097339657371416, "position": { "x": 5, @@ -3017,7 +3017,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 941, + "noteOrder": 1219, "time": 0.15507073623108558, "position": { "x": 3, @@ -3040,7 +3040,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 3, @@ -3063,7 +3063,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 5, @@ -3086,7 +3086,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 983, + "noteOrder": 1275, "time": 0.1621194060597713, "position": { "x": 5, @@ -3109,7 +3109,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 983, + "noteOrder": 1275, "time": 0.1621194060597713, "position": { "x": 3, @@ -3132,7 +3132,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 3, @@ -3155,7 +3155,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 5, @@ -3178,7 +3178,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 1026, + "noteOrder": 1330, "time": 0.169168075888457, "position": { "x": 5, @@ -3201,7 +3201,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1497, "time": 0.19031408537451414, "position": { "x": 3, @@ -3224,7 +3224,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1197, + "noteOrder": 1552, "time": 0.19736275520319985, "position": { "x": 3, @@ -3247,7 +3247,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1240, + "noteOrder": 1607, "time": 0.20441142503188556, "position": { "x": 3, @@ -3270,7 +3270,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1283, + "noteOrder": 1663, "time": 0.21146009486057124, "position": { "x": 3, @@ -3293,7 +3293,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1283, + "noteOrder": 1663, "time": 0.21146009486057124, "position": { "x": 7, @@ -3316,7 +3316,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1325, + "noteOrder": 1718, "time": 0.21850876468925698, "position": { "x": 7, @@ -3339,7 +3339,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1325, + "noteOrder": 1718, "time": 0.21850876468925698, "position": { "x": 3, @@ -3362,7 +3362,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1774, "time": 0.2255574345179427, "position": { "x": 3, @@ -3385,7 +3385,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 4, @@ -3408,7 +3408,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1678, + "noteOrder": 2176, "time": 0.27666029077591403, "position": { "x": 4, @@ -3431,7 +3431,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1678, + "noteOrder": 2176, "time": 0.27666029077591403, "position": { "x": 5, @@ -3454,7 +3454,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 5, @@ -3477,7 +3477,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 7, @@ -3500,7 +3500,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1695.0, + "noteOrder": 2195.0, "time": 0.2784224582330855, "position": { "x": 7, @@ -3523,7 +3523,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1689, + "noteOrder": 2189, "time": 0.2784224582330855, "position": { "x": 4, @@ -3546,7 +3546,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1700, + "noteOrder": 2203, "time": 0.2801846256902569, "position": { "x": 4, @@ -3569,7 +3569,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1700, + "noteOrder": 2203, "time": 0.2801846256902569, "position": { "x": 5, @@ -3592,7 +3592,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 5, @@ -3615,7 +3615,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 7, @@ -3638,7 +3638,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1716.0, + "noteOrder": 2223.0, "time": 0.2819467931474283, "position": { "x": 7, @@ -3661,7 +3661,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 6, @@ -3684,7 +3684,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 2286, "time": 0.29075763043328545, "position": { "x": 6, @@ -3707,7 +3707,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 2286, "time": 0.29075763043328545, "position": { "x": 5, @@ -3730,7 +3730,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 5, @@ -3753,7 +3753,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 3, @@ -3776,7 +3776,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 1780.0, + "noteOrder": 2306.0, "time": 0.2925197978904569, "position": { "x": 3, @@ -3799,7 +3799,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1774, + "noteOrder": 2300, "time": 0.2925197978904569, "position": { "x": 6, @@ -3822,7 +3822,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1785, + "noteOrder": 2314, "time": 0.29428196534762835, "position": { "x": 6, @@ -3845,7 +3845,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1785, + "noteOrder": 2314, "time": 0.29428196534762835, "position": { "x": 5, @@ -3868,7 +3868,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 5, @@ -3891,7 +3891,7 @@ { "lineGroupId": 66, "indexInLine": 5, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 3, @@ -3914,7 +3914,7 @@ { "lineGroupId": 66, "indexInLine": 6, - "noteOrder": 1802.0, + "noteOrder": 2334.0, "time": 0.29604413280479974, "position": { "x": 3, @@ -3937,7 +3937,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 2439, "time": 0.31014147246217116, "position": { "x": 6, @@ -3960,7 +3960,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 6, @@ -3983,7 +3983,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 4, @@ -4006,7 +4006,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.3242388121195426, "position": { "x": 4, @@ -4029,7 +4029,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2010, + "noteOrder": 2605, "time": 0.3312874819482283, "position": { "x": 4, @@ -4052,7 +4052,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2020, + "noteOrder": 2619, "time": 0.3330496494053997, "position": { "x": 4, @@ -4075,7 +4075,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 2020, + "noteOrder": 2619, "time": 0.3330496494053997, "position": { "x": 5, @@ -4098,7 +4098,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 5, @@ -4121,7 +4121,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 7, @@ -4144,7 +4144,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 2037.0, + "noteOrder": 2639.0, "time": 0.33481181686257117, "position": { "x": 7, @@ -4167,7 +4167,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2031, + "noteOrder": 2633, "time": 0.33481181686257117, "position": { "x": 4, @@ -4190,7 +4190,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2042, + "noteOrder": 2647, "time": 0.3365739843197426, "position": { "x": 4, @@ -4213,7 +4213,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 2042, + "noteOrder": 2647, "time": 0.3365739843197426, "position": { "x": 5, @@ -4236,7 +4236,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 5, @@ -4259,7 +4259,7 @@ { "lineGroupId": 78, "indexInLine": 5, - "noteOrder": 2052, + "noteOrder": 2661, "time": 0.338336151776914, "position": { "x": 7, @@ -4282,7 +4282,7 @@ { "lineGroupId": 78, "indexInLine": 6, - "noteOrder": 2058.0, + "noteOrder": 2667.0, "time": 0.338336151776914, "position": { "x": 7, @@ -4305,7 +4305,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2716, "time": 0.3453848216055997, "position": { "x": 6, @@ -4328,7 +4328,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2106, + "noteOrder": 2730, "time": 0.34714698906277114, "position": { "x": 6, @@ -4351,7 +4351,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2106, + "noteOrder": 2730, "time": 0.34714698906277114, "position": { "x": 5, @@ -4374,7 +4374,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 5, @@ -4397,7 +4397,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 3, @@ -4420,7 +4420,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 2123.0, + "noteOrder": 2750.0, "time": 0.3489091565199426, "position": { "x": 3, @@ -4443,7 +4443,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2117, + "noteOrder": 2744, "time": 0.3489091565199426, "position": { "x": 6, @@ -4466,7 +4466,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2127, + "noteOrder": 2757, "time": 0.350671323977114, "position": { "x": 6, @@ -4489,7 +4489,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2127, + "noteOrder": 2757, "time": 0.350671323977114, "position": { "x": 5, @@ -4512,7 +4512,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 5, @@ -4535,7 +4535,7 @@ { "lineGroupId": 82, "indexInLine": 5, - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 3, @@ -4558,7 +4558,7 @@ { "lineGroupId": 82, "indexInLine": 6, - "noteOrder": 2144.0, + "noteOrder": 2777.0, "time": 0.35243349143428543, "position": { "x": 3, @@ -4581,7 +4581,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2223, + "noteOrder": 2882, "time": 0.3665308310916569, "position": { "x": 6, @@ -4604,7 +4604,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2266, + "noteOrder": 2938, "time": 0.3735795009203426, "position": { "x": 6, @@ -4627,7 +4627,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2266, + "noteOrder": 2938, "time": 0.3735795009203426, "position": { "x": 4, @@ -4650,7 +4650,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 4, @@ -4673,7 +4673,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 7, @@ -4696,7 +4696,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2330, + "noteOrder": 3021, "time": 0.3841525056633711, "position": { "x": 7, @@ -4719,7 +4719,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 6, @@ -4742,7 +4742,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 6, @@ -4765,7 +4765,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2394, + "noteOrder": 3104, "time": 0.3947255104063997, "position": { "x": 3, @@ -4788,7 +4788,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2416, + "noteOrder": 3132, "time": 0.39824984532074253, "position": { "x": 3, @@ -4811,7 +4811,7 @@ { "lineGroupId": 96, "indexInLine": 3, - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 4, @@ -4834,7 +4834,7 @@ { "lineGroupId": 96, "indexInLine": 4, - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 4, @@ -4857,7 +4857,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2480, + "noteOrder": 3215, "time": 0.4088228500637711, "position": { "x": 6, @@ -4880,7 +4880,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 6, @@ -4903,7 +4903,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 4, @@ -4926,7 +4926,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 4, @@ -4949,7 +4949,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2843, + "noteOrder": 3686, "time": 0.4687365436075996, "position": { "x": 6, @@ -4972,7 +4972,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 6, @@ -4995,7 +4995,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 3741, "time": 0.4757852134362853, "position": { "x": 4, @@ -5018,7 +5018,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 4, @@ -5041,7 +5041,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3079, + "noteOrder": 3991, "time": 0.507504227665371, "position": { "x": 3, @@ -5064,7 +5064,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3089, + "noteOrder": 4005, "time": 0.5092663951225425, "position": { "x": 3, @@ -5087,7 +5087,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3089, + "noteOrder": 4005, "time": 0.5092663951225425, "position": { "x": 4, @@ -5110,7 +5110,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 4, @@ -5133,7 +5133,7 @@ { "lineGroupId": 128, "indexInLine": 5, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 6, @@ -5156,7 +5156,7 @@ { "lineGroupId": 128, "indexInLine": 6, - "noteOrder": 3106.0, + "noteOrder": 4024.0, "time": 0.5110285625797139, "position": { "x": 6, @@ -5179,7 +5179,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 3, @@ -5202,7 +5202,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3111, + "noteOrder": 4032, "time": 0.5127907300368854, "position": { "x": 3, @@ -5225,7 +5225,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3111, + "noteOrder": 4032, "time": 0.5127907300368854, "position": { "x": 4, @@ -5248,7 +5248,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 4, @@ -5271,7 +5271,7 @@ { "lineGroupId": 129, "indexInLine": 5, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 6, @@ -5294,7 +5294,7 @@ { "lineGroupId": 129, "indexInLine": 6, - "noteOrder": 3127.0, + "noteOrder": 4052.0, "time": 0.5145528974940567, "position": { "x": 6, @@ -5317,7 +5317,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 3, @@ -5340,7 +5340,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 4060, "time": 0.5163150649512281, "position": { "x": 3, @@ -5363,7 +5363,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 4060, "time": 0.5163150649512281, "position": { "x": 5, @@ -5386,7 +5386,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 5, @@ -5409,7 +5409,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 6, @@ -5432,7 +5432,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3149.0, + "noteOrder": 4080.0, "time": 0.5180772324083996, "position": { "x": 6, @@ -5455,7 +5455,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3143, + "noteOrder": 4074, "time": 0.5180772324083996, "position": { "x": 3, @@ -5478,7 +5478,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3153, + "noteOrder": 4088, "time": 0.519839399865571, "position": { "x": 3, @@ -5501,7 +5501,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 3153, + "noteOrder": 4088, "time": 0.519839399865571, "position": { "x": 5, @@ -5524,7 +5524,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 5, @@ -5547,7 +5547,7 @@ { "lineGroupId": 131, "indexInLine": 5, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 6, @@ -5570,7 +5570,7 @@ { "lineGroupId": 131, "indexInLine": 6, - "noteOrder": 3170.0, + "noteOrder": 4108.0, "time": 0.5216015673227424, "position": { "x": 6, @@ -5593,7 +5593,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 4, @@ -5616,7 +5616,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3175, + "noteOrder": 4115, "time": 0.5233637347799138, "position": { "x": 4, @@ -5639,7 +5639,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3175, + "noteOrder": 4115, "time": 0.5233637347799138, "position": { "x": 5, @@ -5662,7 +5662,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 5, @@ -5685,7 +5685,7 @@ { "lineGroupId": 132, "indexInLine": 5, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 7, @@ -5708,7 +5708,7 @@ { "lineGroupId": 132, "indexInLine": 6, - "noteOrder": 3191.0, + "noteOrder": 4135.0, "time": 0.5251259022370853, "position": { "x": 7, @@ -5731,7 +5731,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 4, @@ -5754,7 +5754,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3196, + "noteOrder": 4143, "time": 0.5268880696942567, "position": { "x": 4, @@ -5777,7 +5777,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 3196, + "noteOrder": 4143, "time": 0.5268880696942567, "position": { "x": 5, @@ -5800,7 +5800,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 5, @@ -5823,7 +5823,7 @@ { "lineGroupId": 133, "indexInLine": 5, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 7, @@ -5846,7 +5846,7 @@ { "lineGroupId": 133, "indexInLine": 6, - "noteOrder": 3213.0, + "noteOrder": 4163.0, "time": 0.5286502371514281, "position": { "x": 7, @@ -5869,7 +5869,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 4, @@ -5892,7 +5892,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3218, + "noteOrder": 4171, "time": 0.5304124046085996, "position": { "x": 4, @@ -5915,7 +5915,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 3218, + "noteOrder": 4171, "time": 0.5304124046085996, "position": { "x": 6, @@ -5938,7 +5938,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 6, @@ -5961,7 +5961,7 @@ { "lineGroupId": 134, "indexInLine": 5, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 7, @@ -5984,7 +5984,7 @@ { "lineGroupId": 134, "indexInLine": 6, - "noteOrder": 3234.0, + "noteOrder": 4191.0, "time": 0.532174572065771, "position": { "x": 7, @@ -6007,7 +6007,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3228, + "noteOrder": 4185, "time": 0.532174572065771, "position": { "x": 4, @@ -6030,7 +6030,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3239, + "noteOrder": 4199, "time": 0.5339367395229424, "position": { "x": 4, @@ -6053,7 +6053,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3239, + "noteOrder": 4199, "time": 0.5339367395229424, "position": { "x": 6, @@ -6076,7 +6076,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 6, @@ -6099,7 +6099,7 @@ { "lineGroupId": 135, "indexInLine": 5, - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 7, @@ -6122,7 +6122,7 @@ { "lineGroupId": 135, "indexInLine": 6, - "noteOrder": 3256.0, + "noteOrder": 4218.0, "time": 0.5356989069801139, "position": { "x": 7, @@ -6145,7 +6145,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3292, + "noteOrder": 4268, "time": 0.5427475768087996, "position": { "x": 7, @@ -6168,7 +6168,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3303, + "noteOrder": 4282, "time": 0.544509744265971, "position": { "x": 7, @@ -6191,7 +6191,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 3303, + "noteOrder": 4282, "time": 0.544509744265971, "position": { "x": 5, @@ -6214,7 +6214,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 3309.0, + "noteOrder": 4288.0, "time": 0.544509744265971, "position": { "x": 5, @@ -6237,7 +6237,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3314, + "noteOrder": 4296, "time": 0.5462719117231424, "position": { "x": 3, @@ -6260,7 +6260,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3324, + "noteOrder": 4309, "time": 0.5480340791803139, "position": { "x": 3, @@ -6283,7 +6283,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3324, + "noteOrder": 4309, "time": 0.5480340791803139, "position": { "x": 5, @@ -6306,7 +6306,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3330.0, + "noteOrder": 4315.0, "time": 0.5480340791803139, "position": { "x": 5, @@ -6329,7 +6329,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3335, + "noteOrder": 4323, "time": 0.5497962466374853, "position": { "x": 6, @@ -6352,7 +6352,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3399, + "noteOrder": 4406, "time": 0.5603692513805139, "position": { "x": 6, @@ -6375,7 +6375,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4434, "time": 0.5638935862948566, "position": { "x": 7, @@ -6398,7 +6398,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3431, + "noteOrder": 4448, "time": 0.5656557537520281, "position": { "x": 7, @@ -6421,7 +6421,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 3431, + "noteOrder": 4448, "time": 0.5656557537520281, "position": { "x": 6, @@ -6444,7 +6444,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 6, @@ -6467,7 +6467,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 4, @@ -6490,7 +6490,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 3448.0, + "noteOrder": 4468.0, "time": 0.5674179212091995, "position": { "x": 4, @@ -6513,7 +6513,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3442, + "noteOrder": 4462, "time": 0.5674179212091995, "position": { "x": 7, @@ -6536,7 +6536,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3453, + "noteOrder": 4476, "time": 0.569180088666371, "position": { "x": 7, @@ -6559,7 +6559,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 3453, + "noteOrder": 4476, "time": 0.569180088666371, "position": { "x": 6, @@ -6582,7 +6582,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 6, @@ -6605,7 +6605,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 4, @@ -6628,7 +6628,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 3469.0, + "noteOrder": 4496.0, "time": 0.5709422561235424, "position": { "x": 4, @@ -6651,7 +6651,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 7, @@ -6674,7 +6674,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3474, + "noteOrder": 4503, "time": 0.5727044235807137, "position": { "x": 7, @@ -6697,7 +6697,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3474, + "noteOrder": 4503, "time": 0.5727044235807137, "position": { "x": 5, @@ -6720,7 +6720,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 5, @@ -6743,7 +6743,7 @@ { "lineGroupId": 146, "indexInLine": 5, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 4, @@ -6766,7 +6766,7 @@ { "lineGroupId": 146, "indexInLine": 6, - "noteOrder": 3491.0, + "noteOrder": 4523.0, "time": 0.5744665910378852, "position": { "x": 4, @@ -6789,7 +6789,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 7, @@ -6812,7 +6812,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3495, + "noteOrder": 4531, "time": 0.5762287584950567, "position": { "x": 7, @@ -6835,7 +6835,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 3495, + "noteOrder": 4531, "time": 0.5762287584950567, "position": { "x": 5, @@ -6858,7 +6858,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 5, @@ -6881,7 +6881,7 @@ { "lineGroupId": 147, "indexInLine": 5, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 4, @@ -6904,7 +6904,7 @@ { "lineGroupId": 147, "indexInLine": 6, - "noteOrder": 3512.0, + "noteOrder": 4551.0, "time": 0.5779909259522281, "position": { "x": 4, @@ -6927,7 +6927,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 6, @@ -6950,7 +6950,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3517, + "noteOrder": 4559, "time": 0.5797530934093996, "position": { "x": 6, @@ -6973,7 +6973,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 3517, + "noteOrder": 4559, "time": 0.5797530934093996, "position": { "x": 5, @@ -6996,7 +6996,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 5, @@ -7019,7 +7019,7 @@ { "lineGroupId": 148, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 3, @@ -7042,7 +7042,7 @@ { "lineGroupId": 148, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 4579.0, "time": 0.5815152608665709, "position": { "x": 3, @@ -7065,7 +7065,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 4573, "time": 0.5815152608665709, "position": { "x": 6, @@ -7088,7 +7088,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3538, + "noteOrder": 4587, "time": 0.5832774283237424, "position": { "x": 6, @@ -7111,7 +7111,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3538, + "noteOrder": 4587, "time": 0.5832774283237424, "position": { "x": 5, @@ -7134,7 +7134,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 5, @@ -7157,7 +7157,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 3, @@ -7180,7 +7180,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3555.0, + "noteOrder": 4606.0, "time": 0.5850395957809138, "position": { "x": 3, @@ -7203,7 +7203,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 6, @@ -7226,7 +7226,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3560, + "noteOrder": 4614, "time": 0.5868017632380853, "position": { "x": 6, @@ -7249,7 +7249,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3560, + "noteOrder": 4614, "time": 0.5868017632380853, "position": { "x": 4, @@ -7272,7 +7272,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 4, @@ -7295,7 +7295,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 3, @@ -7318,7 +7318,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3576.0, + "noteOrder": 4634.0, "time": 0.5885639306952567, "position": { "x": 3, @@ -7341,7 +7341,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 6, @@ -7364,7 +7364,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3581, + "noteOrder": 4642, "time": 0.5903260981524281, "position": { "x": 6, @@ -7387,7 +7387,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3581, + "noteOrder": 4642, "time": 0.5903260981524281, "position": { "x": 4, @@ -7410,7 +7410,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 4, @@ -7433,7 +7433,7 @@ { "lineGroupId": 151, "indexInLine": 5, - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 3, @@ -7456,7 +7456,7 @@ { "lineGroupId": 151, "indexInLine": 6, - "noteOrder": 3598.0, + "noteOrder": 4662.0, "time": 0.5920882656095995, "position": { "x": 3, @@ -7479,7 +7479,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 3634, + "noteOrder": 4711, "time": 0.5991369354382852, "position": { "x": 3, @@ -7502,7 +7502,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3645, + "noteOrder": 4725, "time": 0.6008991028954567, "position": { "x": 3, @@ -7525,7 +7525,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 3645, + "noteOrder": 4725, "time": 0.6008991028954567, "position": { "x": 5, @@ -7548,7 +7548,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 3651.0, + "noteOrder": 4731.0, "time": 0.6008991028954567, "position": { "x": 5, @@ -7571,7 +7571,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3656, + "noteOrder": 4739, "time": 0.6026612703526281, "position": { "x": 7, @@ -7594,7 +7594,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3667, + "noteOrder": 4753, "time": 0.6044234378097996, "position": { "x": 7, @@ -7617,7 +7617,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 3667, + "noteOrder": 4753, "time": 0.6044234378097996, "position": { "x": 5, @@ -7640,7 +7640,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 3673.0, + "noteOrder": 4759.0, "time": 0.6044234378097996, "position": { "x": 5, @@ -7663,7 +7663,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 4767, "time": 0.6061856052669709, "position": { "x": 4, @@ -7686,7 +7686,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 4822, "time": 0.6132342750956566, "position": { "x": 4, @@ -7709,7 +7709,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 3741, + "noteOrder": 4850, "time": 0.6167586100099994, "position": { "x": 7, @@ -7732,7 +7732,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 7, @@ -7755,7 +7755,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 3, @@ -7778,7 +7778,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 3, @@ -7801,7 +7801,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4532, + "noteOrder": 5875, "time": 0.7471590018406852, "position": { "x": 3, @@ -7824,7 +7824,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 3, @@ -7847,7 +7847,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4575, + "noteOrder": 5931, "time": 0.7542076716693709, "position": { "x": 4, @@ -7870,7 +7870,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 4, @@ -7893,7 +7893,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 4618, + "noteOrder": 5986, "time": 0.7612563414980565, "position": { "x": 4, @@ -7916,7 +7916,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 4682, + "noteOrder": 6069, "time": 0.7718293462410851, "position": { "x": 3, @@ -7939,7 +7939,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4703, + "noteOrder": 6097, "time": 0.775353681155428, "position": { "x": 7, @@ -7962,7 +7962,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 7, @@ -7985,7 +7985,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 4746, + "noteOrder": 6152, "time": 0.7824023509841137, "position": { "x": 6, @@ -8008,7 +8008,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 6, @@ -8031,7 +8031,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 4789, + "noteOrder": 6208, "time": 0.7894510208127994, "position": { "x": 6, @@ -8054,7 +8054,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 4853, + "noteOrder": 6291, "time": 0.800024025555828, "position": { "x": 7, @@ -8077,7 +8077,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5045, + "noteOrder": 6540, "time": 0.8317430397849136, "position": { "x": 7, @@ -8100,7 +8100,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 7, @@ -8123,7 +8123,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 5, @@ -8146,7 +8146,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 5088, + "noteOrder": 6596, "time": 0.8387917096135993, "position": { "x": 5, @@ -8169,7 +8169,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 6596, "time": 0.8387917096135993, "position": { "x": 7, @@ -8192,7 +8192,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 7, @@ -8215,7 +8215,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 5, @@ -8238,7 +8238,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 5131, + "noteOrder": 6651, "time": 0.845840379442285, "position": { "x": 5, @@ -8261,7 +8261,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 5131, + "noteOrder": 6651, "time": 0.845840379442285, "position": { "x": 7, @@ -8284,7 +8284,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 7, @@ -8307,7 +8307,7 @@ { "lineGroupId": 215, "indexInLine": 3, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 5, @@ -8330,7 +8330,7 @@ { "lineGroupId": 215, "indexInLine": 4, - "noteOrder": 5174, + "noteOrder": 6707, "time": 0.8528890492709706, "position": { "x": 5, @@ -8353,7 +8353,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 5174, + "noteOrder": 6707, "time": 0.8528890492709706, "position": { "x": 7, @@ -8376,7 +8376,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 7, @@ -8399,7 +8399,7 @@ { "lineGroupId": 216, "indexInLine": 3, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 5, @@ -8422,7 +8422,7 @@ { "lineGroupId": 216, "indexInLine": 4, - "noteOrder": 5216, + "noteOrder": 6762, "time": 0.8599377190996566, "position": { "x": 5, @@ -8445,7 +8445,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 5216, + "noteOrder": 6762, "time": 0.8599377190996566, "position": { "x": 7, @@ -8468,7 +8468,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 5259, + "noteOrder": 6818, "time": 0.8669863889283422, "position": { "x": 7, @@ -8491,7 +8491,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5259, + "noteOrder": 6818, "time": 0.8669863889283422, "position": { "x": 3, @@ -8514,7 +8514,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5302, + "noteOrder": 6873, "time": 0.8740350587570279, "position": { "x": 3, @@ -8537,7 +8537,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5388, + "noteOrder": 6984, "time": 0.8881323984143993, "position": { "x": 3, @@ -8560,7 +8560,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 3, @@ -8583,7 +8583,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 5, @@ -8606,7 +8606,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 5415.0, + "noteOrder": 7018.0, "time": 0.8916567333287422, "position": { "x": 5, @@ -8629,7 +8629,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5430, + "noteOrder": 7039, "time": 0.895181068243085, "position": { "x": 7, @@ -8652,7 +8652,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 7, @@ -8675,7 +8675,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 5, @@ -8698,7 +8698,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5458.0, + "noteOrder": 7073.0, "time": 0.8987054031574279, "position": { "x": 5, @@ -8721,7 +8721,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 5473, + "noteOrder": 7095, "time": 0.9022297380717708, "position": { "x": 3, @@ -8744,7 +8744,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 3, @@ -8767,7 +8767,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 5, @@ -8790,7 +8790,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 5500.0, + "noteOrder": 7128.0, "time": 0.9057540729861135, "position": { "x": 5, @@ -8813,7 +8813,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5516, + "noteOrder": 7150, "time": 0.9092784079004564, "position": { "x": 7, @@ -8836,7 +8836,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 7, @@ -8859,7 +8859,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 5, @@ -8882,7 +8882,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5543.0, + "noteOrder": 7184.0, "time": 0.9128027428147992, "position": { "x": 5, @@ -8905,7 +8905,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 5708, + "noteOrder": 7400, "time": 0.9409974221295421, "position": { "x": 3, @@ -8928,7 +8928,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 5730, + "noteOrder": 7427, "time": 0.944521757043885, "position": { "x": 3, @@ -8951,7 +8951,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 3, @@ -8986,7 +8986,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 135, + "BPM": 175, "NPS": "3.95", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b.json index 20a4cdc0..39571167 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "50th Memorial Songs -Flagship medley- difficulty_1b", "sphereNodes": [ { - "noteOrder": 107, + "noteOrder": 139, "time": 0.01762167457171427, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 150, + "noteOrder": 194, "time": 0.02467034440039998, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 249, "time": 0.031719014229085685, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 235, + "noteOrder": 305, "time": 0.038767684057771395, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 278, + "noteOrder": 360, "time": 0.04581635388645711, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 321, + "noteOrder": 416, "time": 0.05286502371514281, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 620, + "noteOrder": 804, "time": 0.10220571251594278, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 663, + "noteOrder": 859, "time": 0.10925438234462849, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 706, + "noteOrder": 915, "time": 0.11630305217331419, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 748, + "noteOrder": 970, "time": 0.12335172200199991, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1133, + "noteOrder": 1469, "time": 0.1867897504601713, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1497, "time": 0.19031408537451414, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1524, "time": 0.193838420288857, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1219, + "noteOrder": 1580, "time": 0.2008870901175427, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1240, + "noteOrder": 1607, "time": 0.20441142503188556, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1261, + "noteOrder": 1635, "time": 0.2079357599462284, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2010, + "noteOrder": 2606, "time": 0.3313755903210869, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2717, "time": 0.3454729299784583, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2159, + "noteOrder": 2799, "time": 0.35595782634862827, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2223, + "noteOrder": 2882, "time": 0.3665308310916569, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2245, + "noteOrder": 2910, "time": 0.37005516600599975, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2394, + "noteOrder": 3104, "time": 0.3947255104063997, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 3215, "time": 0.4088228500637711, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2501, + "noteOrder": 3242, "time": 0.41234718497811396, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 3270, "time": 0.4158715198924568, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 3298, "time": 0.41939585480679964, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 3547, "time": 0.4511148690358854, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2865, + "noteOrder": 3714, "time": 0.4722608785219425, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3079, + "noteOrder": 3991, "time": 0.507504227665371, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3271, + "noteOrder": 4240, "time": 0.5392232418944567, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 4268, "time": 0.5427475768087996, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3335, + "noteOrder": 4323, "time": 0.5497962466374853, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 4351, "time": 0.5533205815518281, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3378, + "noteOrder": 4379, "time": 0.556844916466171, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 4711, "time": 0.5991369354382852, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3656, + "noteOrder": 4739, "time": 0.6026612703526281, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3677, + "noteOrder": 4767, "time": 0.6061856052669709, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 4822, "time": 0.6132342750956566, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 5016, "time": 0.6379046194960567, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 5072, "time": 0.6449532893247424, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3955, + "noteOrder": 5127, "time": 0.6520019591534281, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3998, + "noteOrder": 5182, "time": 0.6590506289821138, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4041, + "noteOrder": 5238, "time": 0.6660992988107994, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 5293, "time": 0.6731479686394852, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 5321, "time": 0.676672303553828, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4361, + "noteOrder": 5654, "time": 0.7189643225259422, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4404, + "noteOrder": 5709, "time": 0.7260129923546279, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 5764, "time": 0.7330616621833138, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 5820, "time": 0.7401103320119995, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 2, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 6014, "time": 0.7647806764123994, "position": { "x": 2, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 8, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4810, + "noteOrder": 6236, "time": 0.7929753557271422, "position": { "x": 8, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 6319, "time": 0.8035483604701708, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4917, + "noteOrder": 6374, "time": 0.8105970302988564, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 6790, "time": 0.8634620540139993, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5281, + "noteOrder": 6845, "time": 0.870510723842685, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 7039, "time": 0.895181068243085, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5516, + "noteOrder": 7150, "time": 0.9092784079004564, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 4, @@ -1887,7 +1887,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 342, + "noteOrder": 443, "time": 0.05638935862948567, "position": { "x": 6, @@ -1910,7 +1910,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 6, @@ -1933,7 +1933,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 877, + "noteOrder": 1136, "time": 0.14449773148805703, "position": { "x": 7, @@ -1956,7 +1956,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 919, + "noteOrder": 1192, "time": 0.1515464013167427, "position": { "x": 7, @@ -1979,7 +1979,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1048, + "noteOrder": 1358, "time": 0.17269241080279985, "position": { "x": 3, @@ -2002,7 +2002,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1090, + "noteOrder": 1413, "time": 0.17974108063148556, "position": { "x": 3, @@ -2025,7 +2025,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 1390, + "noteOrder": 1801, "time": 0.22908176943228553, "position": { "x": 6, @@ -2048,7 +2048,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 1539, + "noteOrder": 1995, "time": 0.2537521138326855, "position": { "x": 6, @@ -2071,7 +2071,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1432, + "noteOrder": 1857, "time": 0.23613043926097124, "position": { "x": 4, @@ -2094,7 +2094,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1539, + "noteOrder": 1995, "time": 0.2537521138326855, "position": { "x": 4, @@ -2117,7 +2117,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1625, + "noteOrder": 2106, "time": 0.26784945349005695, "position": { "x": 4, @@ -2140,7 +2140,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 4, @@ -2163,7 +2163,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 6, @@ -2186,7 +2186,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 6, @@ -2209,7 +2209,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 4, @@ -2232,7 +2232,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 2383, "time": 0.3030928026334854, "position": { "x": 4, @@ -2255,7 +2255,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 2439, "time": 0.31014147246217116, "position": { "x": 6, @@ -2278,7 +2278,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 6, @@ -2301,7 +2301,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.32432692049240114, "position": { "x": 4, @@ -2324,7 +2324,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2010, + "noteOrder": 2606, "time": 0.3313755903210869, "position": { "x": 4, @@ -2347,7 +2347,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 2053, + "noteOrder": 2661, "time": 0.3384242601497726, "position": { "x": 6, @@ -2370,7 +2370,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 2096, + "noteOrder": 2717, "time": 0.3454729299784583, "position": { "x": 6, @@ -2393,7 +2393,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 6, @@ -2416,7 +2416,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 6, @@ -2439,7 +2439,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2822, + "noteOrder": 3658, "time": 0.46521220869325675, "position": { "x": 6, @@ -2462,7 +2462,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 6, @@ -2485,7 +2485,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 3741, "time": 0.4757852134362853, "position": { "x": 4, @@ -2508,7 +2508,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 4, @@ -2531,7 +2531,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4434, "time": 0.5638935862948566, "position": { "x": 4, @@ -2554,7 +2554,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 4, @@ -2577,7 +2577,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 6, @@ -2600,7 +2600,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 6, @@ -2623,7 +2623,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 7, @@ -2646,7 +2646,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 7, @@ -2669,7 +2669,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 3, @@ -2692,7 +2692,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 3, @@ -2715,7 +2715,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 4126, + "noteOrder": 5349, "time": 0.6801966384681709, "position": { "x": 6, @@ -2738,7 +2738,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 6, @@ -2761,7 +2761,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4148, + "noteOrder": 5376, "time": 0.6837209733825137, "position": { "x": 4, @@ -2784,7 +2784,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 4, @@ -2807,7 +2807,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4212, + "noteOrder": 5460, "time": 0.6942939781255423, "position": { "x": 6, @@ -2830,7 +2830,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 6, @@ -2853,7 +2853,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 4233, + "noteOrder": 5487, "time": 0.6978183130398852, "position": { "x": 4, @@ -2876,7 +2876,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 4, @@ -2899,7 +2899,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4297, + "noteOrder": 5570, "time": 0.7083913177829136, "position": { "x": 4, @@ -2922,7 +2922,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 4, @@ -2945,7 +2945,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 4319, + "noteOrder": 5598, "time": 0.7119156526972565, "position": { "x": 6, @@ -2968,7 +2968,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 6, @@ -2991,7 +2991,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 4532, + "noteOrder": 5875, "time": 0.7471590018406852, "position": { "x": 5, @@ -3014,7 +3014,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 4661, + "noteOrder": 6042, "time": 0.7683050113267422, "position": { "x": 5, @@ -3037,7 +3037,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4703, + "noteOrder": 6097, "time": 0.775353681155428, "position": { "x": 5, @@ -3060,7 +3060,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4832, + "noteOrder": 6263, "time": 0.7964996906414851, "position": { "x": 5, @@ -3083,7 +3083,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 7, @@ -3106,7 +3106,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 7, @@ -3129,7 +3129,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 5323, + "noteOrder": 6901, "time": 0.8775593936713707, "position": { "x": 3, @@ -3152,7 +3152,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 5366, + "noteOrder": 6956, "time": 0.8846080635000565, "position": { "x": 3, @@ -3175,7 +3175,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5665, + "noteOrder": 7344, "time": 0.9339487523008564, "position": { "x": 6, @@ -3198,7 +3198,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 6, @@ -3221,7 +3221,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5708, + "noteOrder": 7400, "time": 0.9409974221295421, "position": { "x": 4, @@ -3244,7 +3244,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 4, @@ -3267,7 +3267,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 386.5, + "noteOrder": 500.5, "time": 0.06343802845817137, "position": { "x": 5, @@ -3295,7 +3295,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 450.5, + "noteOrder": 583.5, "time": 0.07401103320119994, "position": { "x": 5, @@ -3323,7 +3323,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 493.5, + "noteOrder": 638.5, "time": 0.08105970302988565, "position": { "x": 5, @@ -3351,7 +3351,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 535.5, + "noteOrder": 694.5, "time": 0.08810837285857136, "position": { "x": 5, @@ -3379,7 +3379,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 578.5, + "noteOrder": 749.5, "time": 0.09515704268725707, "position": { "x": 5, @@ -3407,7 +3407,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 920.5, + "noteOrder": 1193.5, "time": 0.1515464013167427, "position": { "x": 5, @@ -3435,7 +3435,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1091.5, + "noteOrder": 1414.5, "time": 0.17974108063148556, "position": { "x": 5, @@ -3463,7 +3463,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1305.5, + "noteOrder": 1692.5, "time": 0.21498442977491414, "position": { "x": 5, @@ -3491,7 +3491,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1348.5, + "noteOrder": 1747.5, "time": 0.22203309960359982, "position": { "x": 5, @@ -3519,7 +3519,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1455.5, + "noteOrder": 1886.5, "time": 0.23965477417531408, "position": { "x": 5, @@ -3547,7 +3547,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1498.5, + "noteOrder": 1941.5, "time": 0.24670344400399982, "position": { "x": 5, @@ -3575,7 +3575,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1540.5, + "noteOrder": 1996.5, "time": 0.2537521138326855, "position": { "x": 5, @@ -3603,7 +3603,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1840.5, + "noteOrder": 2384.5, "time": 0.3030928026334854, "position": { "x": 5, @@ -3631,7 +3631,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1925.5, + "noteOrder": 2495.5, "time": 0.3171901422908569, "position": { "x": 5, @@ -3659,7 +3659,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2182.5, + "noteOrder": 2828.5, "time": 0.3594821612629711, "position": { "x": 5, @@ -3687,7 +3687,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2267.5, + "noteOrder": 2939.5, "time": 0.3735795009203426, "position": { "x": 5, @@ -3715,7 +3715,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2609.5, + "noteOrder": 3382.5, "time": 0.4299688595498283, "position": { "x": 5, @@ -3743,7 +3743,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2673.5, + "noteOrder": 3465.5, "time": 0.4405418642928568, "position": { "x": 5, @@ -3771,7 +3771,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2716.5, + "noteOrder": 3521.5, "time": 0.4475905341215425, "position": { "x": 5, @@ -3799,7 +3799,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2759.5, + "noteOrder": 3576.5, "time": 0.4546392039502282, "position": { "x": 5, @@ -3827,7 +3827,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2802.5, + "noteOrder": 3631.5, "time": 0.4616878737789139, "position": { "x": 5, @@ -3855,7 +3855,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2909.5, + "noteOrder": 3770.5, "time": 0.47930954835062817, "position": { "x": 5, @@ -3883,7 +3883,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2951.5, + "noteOrder": 3825.5, "time": 0.4863582181793139, "position": { "x": 5, @@ -3911,7 +3911,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2984.0, + "noteOrder": 3864.0, "time": 0.48988255309365675, "position": { "x": 5, @@ -3939,7 +3939,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3144.5, + "noteOrder": 4075.5, "time": 0.5180772324083996, "position": { "x": 5, @@ -3967,7 +3967,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3229.5, + "noteOrder": 4186.5, "time": 0.532174572065771, "position": { "x": 5, @@ -3995,7 +3995,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3315.5, + "noteOrder": 4297.5, "time": 0.5462719117231424, "position": { "x": 5, @@ -4023,7 +4023,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3400.5, + "noteOrder": 4407.5, "time": 0.5603692513805139, "position": { "x": 5, @@ -4051,7 +4051,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3849.5, + "noteOrder": 4989.5, "time": 0.6343802845817138, "position": { "x": 5, @@ -4079,7 +4079,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3935.5, + "noteOrder": 5100.5, "time": 0.6484776242390852, "position": { "x": 5, @@ -4107,7 +4107,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4020.5, + "noteOrder": 5211.5, "time": 0.6625749638964566, "position": { "x": 5, @@ -4135,7 +4135,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4170.5, + "noteOrder": 5405.5, "time": 0.6872453082968566, "position": { "x": 5, @@ -4163,7 +4163,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4255.5, + "noteOrder": 5516.5, "time": 0.701342647954228, "position": { "x": 5, @@ -4191,7 +4191,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4341.5, + "noteOrder": 5627.5, "time": 0.7154399876115994, "position": { "x": 5, @@ -4219,7 +4219,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4512.5, + "noteOrder": 5849.5, "time": 0.7436346669263423, "position": { "x": 5, @@ -4247,7 +4247,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4662.5, + "noteOrder": 6043.5, "time": 0.7683050113267422, "position": { "x": 5, @@ -4275,7 +4275,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4833.5, + "noteOrder": 6264.5, "time": 0.7964996906414851, "position": { "x": 5, @@ -4303,7 +4303,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5196.5, + "noteOrder": 6735.5, "time": 0.8564133841853137, "position": { "x": 5, @@ -4331,7 +4331,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5367.5, + "noteOrder": 6957.5, "time": 0.8846080635000565, "position": { "x": 5, @@ -4359,7 +4359,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5581.5, + "noteOrder": 7234.5, "time": 0.9198514126434849, "position": { "x": 5, @@ -4387,7 +4387,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5624.5, + "noteOrder": 7290.5, "time": 0.9269000824721707, "position": { "x": 5, @@ -4415,7 +4415,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5731.5, + "noteOrder": 7428.5, "time": 0.944521757043885, "position": { "x": 5, @@ -4443,7 +4443,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5902.5, + "noteOrder": 7650.5, "time": 0.9727164363586278, "position": { "x": 5, @@ -4484,7 +4484,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 135, + "BPM": 175, "NPS": "1.75", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b_blockless.json index a7892371..ab2d255b 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "50th Memorial Songs -Flagship medley- difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 107, + "noteOrder": 139, "time": 0.01762167457171427, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 150, + "noteOrder": 194, "time": 0.02467034440039998, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 249, "time": 0.031719014229085685, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 235, + "noteOrder": 305, "time": 0.038767684057771395, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 278, + "noteOrder": 360, "time": 0.04581635388645711, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 321, + "noteOrder": 416, "time": 0.05286502371514281, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 620, + "noteOrder": 804, "time": 0.10220571251594278, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 663, + "noteOrder": 859, "time": 0.10925438234462849, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 706, + "noteOrder": 915, "time": 0.11630305217331419, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 748, + "noteOrder": 970, "time": 0.12335172200199991, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 791, + "noteOrder": 1025, "time": 0.1304003918306856, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 834, + "noteOrder": 1081, "time": 0.13744906165937132, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 962, + "noteOrder": 1247, "time": 0.15859507114542845, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1005, + "noteOrder": 1303, "time": 0.16564374097411416, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1133, + "noteOrder": 1469, "time": 0.1867897504601713, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1154, + "noteOrder": 1497, "time": 0.19031408537451414, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1524, "time": 0.193838420288857, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1219, + "noteOrder": 1580, "time": 0.2008870901175427, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1240, + "noteOrder": 1607, "time": 0.20441142503188556, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1261, + "noteOrder": 1635, "time": 0.2079357599462284, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2010, + "noteOrder": 2606, "time": 0.3313755903210869, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2096, + "noteOrder": 2717, "time": 0.3454729299784583, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2138, + "noteOrder": 2771, "time": 0.35243349143428543, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2159, + "noteOrder": 2799, "time": 0.35595782634862827, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2223, + "noteOrder": 2882, "time": 0.3665308310916569, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2245, + "noteOrder": 2910, "time": 0.37005516600599975, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2309, + "noteOrder": 2993, "time": 0.38062817074902827, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 3048, "time": 0.387676840577714, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2373, + "noteOrder": 3076, "time": 0.39120117549205685, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2394, + "noteOrder": 3104, "time": 0.3947255104063997, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2437, + "noteOrder": 3159, "time": 0.4017741802350854, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2459, + "noteOrder": 3187, "time": 0.4052985151494282, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2480, + "noteOrder": 3215, "time": 0.4088228500637711, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2501, + "noteOrder": 3242, "time": 0.41234718497811396, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2523, + "noteOrder": 3270, "time": 0.4158715198924568, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 3298, "time": 0.41939585480679964, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2651, + "noteOrder": 3436, "time": 0.43701752937851396, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2737, + "noteOrder": 3547, "time": 0.4511148690358854, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2865, + "noteOrder": 3714, "time": 0.4722608785219425, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3079, + "noteOrder": 3991, "time": 0.507504227665371, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3100, + "noteOrder": 4018, "time": 0.5110285625797139, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3121, + "noteOrder": 4046, "time": 0.5145528974940567, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3164, + "noteOrder": 4102, "time": 0.5216015673227424, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 4129, "time": 0.5251259022370853, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3207, + "noteOrder": 4157, "time": 0.5286502371514281, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3250, + "noteOrder": 4212, "time": 0.5356989069801139, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3271, + "noteOrder": 4240, "time": 0.5392232418944567, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 4268, "time": 0.5427475768087996, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3335, + "noteOrder": 4323, "time": 0.5497962466374853, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3357, + "noteOrder": 4351, "time": 0.5533205815518281, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3378, + "noteOrder": 4379, "time": 0.556844916466171, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3463, + "noteOrder": 4490, "time": 0.5709422561235424, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3549, + "noteOrder": 4600, "time": 0.5850395957809138, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3592, + "noteOrder": 4656, "time": 0.5920882656095995, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3634, + "noteOrder": 4711, "time": 0.5991369354382852, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3656, + "noteOrder": 4739, "time": 0.6026612703526281, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3677, + "noteOrder": 4767, "time": 0.6061856052669709, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 4822, "time": 0.6132342750956566, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 5016, "time": 0.6379046194960567, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 5072, "time": 0.6449532893247424, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3955, + "noteOrder": 5127, "time": 0.6520019591534281, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3998, + "noteOrder": 5182, "time": 0.6590506289821138, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4041, + "noteOrder": 5238, "time": 0.6660992988107994, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4083, + "noteOrder": 5293, "time": 0.6731479686394852, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4105, + "noteOrder": 5321, "time": 0.676672303553828, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4361, + "noteOrder": 5654, "time": 0.7189643225259422, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4404, + "noteOrder": 5709, "time": 0.7260129923546279, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 5764, "time": 0.7330616621833138, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4490, + "noteOrder": 5820, "time": 0.7401103320119995, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4554, + "noteOrder": 5903, "time": 0.750683336755028, "position": { "x": 2, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 5958, "time": 0.7577320065837138, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 6014, "time": 0.7647806764123994, "position": { "x": 2, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 6125, "time": 0.7788780160697708, "position": { "x": 8, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4768, + "noteOrder": 6180, "time": 0.7859266858984565, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4810, + "noteOrder": 6236, "time": 0.7929753557271422, "position": { "x": 8, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 6319, "time": 0.8035483604701708, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4917, + "noteOrder": 6374, "time": 0.8105970302988564, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4960, + "noteOrder": 6430, "time": 0.8176457001275422, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 6568, "time": 0.8352673746992564, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5110, + "noteOrder": 6624, "time": 0.8423160445279422, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5238, + "noteOrder": 6790, "time": 0.8634620540139993, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5281, + "noteOrder": 6845, "time": 0.870510723842685, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5409, + "noteOrder": 7012, "time": 0.8916567333287422, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 7039, "time": 0.895181068243085, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 7067, "time": 0.8987054031574279, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5494, + "noteOrder": 7122, "time": 0.9057540729861135, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5516, + "noteOrder": 7150, "time": 0.9092784079004564, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5537, + "noteOrder": 7178, "time": 0.9128027428147992, "position": { "x": 4, @@ -1887,7 +1887,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 342, + "noteOrder": 443, "time": 0.05638935862948567, "position": { "x": 6, @@ -1910,7 +1910,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 385, + "noteOrder": 499, "time": 0.06343802845817137, "position": { "x": 6, @@ -1933,7 +1933,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 877, + "noteOrder": 1136, "time": 0.14449773148805703, "position": { "x": 7, @@ -1956,7 +1956,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 919, + "noteOrder": 1192, "time": 0.1515464013167427, "position": { "x": 7, @@ -1979,7 +1979,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1048, + "noteOrder": 1358, "time": 0.17269241080279985, "position": { "x": 3, @@ -2002,7 +2002,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1090, + "noteOrder": 1413, "time": 0.17974108063148556, "position": { "x": 3, @@ -2025,7 +2025,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 1390, + "noteOrder": 1801, "time": 0.22908176943228553, "position": { "x": 6, @@ -2048,7 +2048,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 1539, + "noteOrder": 1995, "time": 0.2537521138326855, "position": { "x": 6, @@ -2071,7 +2071,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1432, + "noteOrder": 1857, "time": 0.23613043926097124, "position": { "x": 4, @@ -2094,7 +2094,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1539, + "noteOrder": 1995, "time": 0.2537521138326855, "position": { "x": 4, @@ -2117,7 +2117,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1625, + "noteOrder": 2106, "time": 0.26784945349005695, "position": { "x": 4, @@ -2140,7 +2140,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1668, + "noteOrder": 2162, "time": 0.27489812331874264, "position": { "x": 4, @@ -2163,7 +2163,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1710, + "noteOrder": 2217, "time": 0.2819467931474283, "position": { "x": 6, @@ -2186,7 +2186,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1753, + "noteOrder": 2273, "time": 0.28899546297611406, "position": { "x": 6, @@ -2209,7 +2209,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1796, + "noteOrder": 2328, "time": 0.29604413280479974, "position": { "x": 4, @@ -2232,7 +2232,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 2383, "time": 0.3030928026334854, "position": { "x": 4, @@ -2255,7 +2255,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 2439, "time": 0.31014147246217116, "position": { "x": 6, @@ -2278,7 +2278,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1924, + "noteOrder": 2494, "time": 0.3171901422908569, "position": { "x": 6, @@ -2301,7 +2301,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1967, + "noteOrder": 2550, "time": 0.32432692049240114, "position": { "x": 4, @@ -2324,7 +2324,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2010, + "noteOrder": 2606, "time": 0.3313755903210869, "position": { "x": 4, @@ -2347,7 +2347,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 2053, + "noteOrder": 2661, "time": 0.3384242601497726, "position": { "x": 6, @@ -2370,7 +2370,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 2096, + "noteOrder": 2717, "time": 0.3454729299784583, "position": { "x": 6, @@ -2393,7 +2393,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2565, + "noteOrder": 3326, "time": 0.4229201897211425, "position": { "x": 6, @@ -2416,7 +2416,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2608, + "noteOrder": 3381, "time": 0.4299688595498283, "position": { "x": 6, @@ -2439,7 +2439,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2822, + "noteOrder": 3658, "time": 0.46521220869325675, "position": { "x": 6, @@ -2462,7 +2462,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 6, @@ -2485,7 +2485,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 3741, "time": 0.4757852134362853, "position": { "x": 4, @@ -2508,7 +2508,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3769, "time": 0.47930954835062817, "position": { "x": 4, @@ -2531,7 +2531,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4434, "time": 0.5638935862948566, "position": { "x": 4, @@ -2554,7 +2554,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3485, + "noteOrder": 4517, "time": 0.5744665910378852, "position": { "x": 4, @@ -2577,7 +2577,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 3506, + "noteOrder": 4545, "time": 0.5779909259522281, "position": { "x": 6, @@ -2600,7 +2600,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 3570, + "noteOrder": 4628, "time": 0.5885639306952567, "position": { "x": 6, @@ -2623,7 +2623,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 7, @@ -2646,7 +2646,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 7, @@ -2669,7 +2669,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 3752, + "noteOrder": 4864, "time": 0.6185207774671709, "position": { "x": 3, @@ -2692,7 +2692,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 3848, + "noteOrder": 4988, "time": 0.6343802845817138, "position": { "x": 3, @@ -2715,7 +2715,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 4126, + "noteOrder": 5349, "time": 0.6801966384681709, "position": { "x": 6, @@ -2738,7 +2738,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 6, @@ -2761,7 +2761,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4148, + "noteOrder": 5376, "time": 0.6837209733825137, "position": { "x": 4, @@ -2784,7 +2784,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4169, + "noteOrder": 5404, "time": 0.6872453082968566, "position": { "x": 4, @@ -2807,7 +2807,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4212, + "noteOrder": 5460, "time": 0.6942939781255423, "position": { "x": 6, @@ -2830,7 +2830,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 6, @@ -2853,7 +2853,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 4233, + "noteOrder": 5487, "time": 0.6978183130398852, "position": { "x": 4, @@ -2876,7 +2876,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 5515, "time": 0.701342647954228, "position": { "x": 4, @@ -2899,7 +2899,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4297, + "noteOrder": 5570, "time": 0.7083913177829136, "position": { "x": 4, @@ -2922,7 +2922,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 4, @@ -2945,7 +2945,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 4319, + "noteOrder": 5598, "time": 0.7119156526972565, "position": { "x": 6, @@ -2968,7 +2968,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 4340, + "noteOrder": 5626, "time": 0.7154399876115994, "position": { "x": 6, @@ -2991,7 +2991,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 4532, + "noteOrder": 5875, "time": 0.7471590018406852, "position": { "x": 5, @@ -3014,7 +3014,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 4661, + "noteOrder": 6042, "time": 0.7683050113267422, "position": { "x": 5, @@ -3037,7 +3037,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4703, + "noteOrder": 6097, "time": 0.775353681155428, "position": { "x": 5, @@ -3060,7 +3060,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4832, + "noteOrder": 6263, "time": 0.7964996906414851, "position": { "x": 5, @@ -3083,7 +3083,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 5152, + "noteOrder": 6679, "time": 0.849364714356628, "position": { "x": 7, @@ -3106,7 +3106,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 6734, "time": 0.8564133841853137, "position": { "x": 7, @@ -3129,7 +3129,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 5323, + "noteOrder": 6901, "time": 0.8775593936713707, "position": { "x": 3, @@ -3152,7 +3152,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 5366, + "noteOrder": 6956, "time": 0.8846080635000565, "position": { "x": 3, @@ -3175,7 +3175,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5665, + "noteOrder": 7344, "time": 0.9339487523008564, "position": { "x": 6, @@ -3198,7 +3198,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 6, @@ -3221,7 +3221,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5708, + "noteOrder": 7400, "time": 0.9409974221295421, "position": { "x": 4, @@ -3244,7 +3244,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 7649, "time": 0.9727164363586278, "position": { "x": 4, @@ -3279,7 +3279,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 135, + "BPM": 175, "NPS": "1.75", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/info.json b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/info.json index b468ae4a..ca1f24ed 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/50th Memorial Songs -Flagship medley-/info.json @@ -3,7 +3,7 @@ "SongName": "50th Memorial Songs -Flagship medley-", "SongLength": "112.335465", "SongAuthorName": "BEMANI Sound Team", - "Bpm": "135", + "Bpm": "175", "SongPath": "133.ogg", "CreateTicks": 636917472000000000, "CreateTime": "636917472000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a.json index 8b52ab6a..2d9247ce 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "7 to Smoke difficulty_1a", "sphereNodes": [ { - "noteOrder": 90, + "noteOrder": 96, "time": 0.016948498136076056, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 112, + "noteOrder": 120, "time": 0.02118562267009507, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 180, + "noteOrder": 192, "time": 0.03389699627215211, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 202, + "noteOrder": 216, "time": 0.03813412080617113, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 225, + "noteOrder": 240, "time": 0.04237124534019014, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 247, + "noteOrder": 264, "time": 0.04660836987420916, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 8, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 2, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 384, "time": 0.06779399254430422, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 382, + "noteOrder": 408, "time": 0.07203111707832324, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 405, + "noteOrder": 432, "time": 0.07626824161234226, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 427, + "noteOrder": 456, "time": 0.08050536614636128, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 540, + "noteOrder": 576, "time": 0.10169098881645634, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 562, + "noteOrder": 600, "time": 0.10592811335047536, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 585, + "noteOrder": 624, "time": 0.11016523788449438, "position": { "x": 3, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 607, + "noteOrder": 648, "time": 0.1144023624185134, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 2, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 8, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 768, "time": 0.13558798508860845, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 742, + "noteOrder": 792, "time": 0.13982510962262748, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 765, + "noteOrder": 816, "time": 0.14406223415664648, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 787, + "noteOrder": 840, "time": 0.1482993586906655, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 821, + "noteOrder": 876, "time": 0.154655045491694, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 832, + "noteOrder": 888, "time": 0.15677360775870353, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 900, "time": 0.15889217002571304, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 900, + "noteOrder": 960, "time": 0.16948498136076057, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 945, + "noteOrder": 1008, "time": 0.1779592304287986, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1305, + "noteOrder": 1392, "time": 0.24575322297310281, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1665, + "noteOrder": 1776, "time": 0.31354721551740705, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1822, + "noteOrder": 1944, "time": 0.34320708725554017, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1912, + "noteOrder": 2040, "time": 0.36015558539161624, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1957, + "noteOrder": 2088, "time": 0.36862983445965425, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2136, "time": 0.3771040835276923, "position": { "x": 8, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 2, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2208, "time": 0.38981545712974935, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2092, + "noteOrder": 2232, "time": 0.39405258166376833, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2272, + "noteOrder": 2424, "time": 0.4279495779359205, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2295, + "noteOrder": 2448, "time": 0.4321867024699395, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 2, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 8, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2430, + "noteOrder": 2592, "time": 0.4576094496740536, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2616, "time": 0.46184657420807257, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2688, "time": 0.47455794781012967, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2531, + "noteOrder": 2700, "time": 0.4766765100771391, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2712, "time": 0.47879507234414864, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2554, + "noteOrder": 2724, "time": 0.4809136346111581, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2565, + "noteOrder": 2736, "time": 0.4830321968781676, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2748, "time": 0.48515075914517714, "position": { "x": 4, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 2760, "time": 0.4872693214121866, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2599, + "noteOrder": 2772, "time": 0.4893878836791961, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2801, + "noteOrder": 2988, "time": 0.5275220044853672, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 7, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2846, + "noteOrder": 3036, "time": 0.5359962535534053, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 3, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2902, + "noteOrder": 3096, "time": 0.5465890648884528, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2947, + "noteOrder": 3144, "time": 0.5550633139564909, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3360, "time": 0.593197434762662, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3161, + "noteOrder": 3372, "time": 0.5953159970296715, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3384, "time": 0.597434559296681, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3408, "time": 0.6016716838307, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3420, "time": 0.6037902460977096, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3432, "time": 0.605908808364719, "position": { "x": 7, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3564, "time": 0.6292129933018237, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3352, + "noteOrder": 3576, "time": 0.6313315555688331, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3588, "time": 0.6334501178358427, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 3, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 6, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3420, + "noteOrder": 3648, "time": 0.6440429291708902, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3465, + "noteOrder": 3696, "time": 0.6525171782389282, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3735, + "noteOrder": 3984, "time": 0.7033626726471564, "position": { "x": 8, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 4008, "time": 0.7075997971811754, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 3, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4095, + "noteOrder": 4368, "time": 0.7711566651914606, "position": { "x": 2, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4117, + "noteOrder": 4392, "time": 0.7753937897254797, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4632, "time": 0.8177650350656698, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4365, + "noteOrder": 4656, "time": 0.8220021595996888, "position": { "x": 4, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 6, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4432, + "noteOrder": 4728, "time": 0.8347135332017459, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4455, + "noteOrder": 4752, "time": 0.8389506577357649, "position": { "x": 6, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 4, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4522, + "noteOrder": 4824, "time": 0.8516620313378219, "position": { "x": 8, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4702, + "noteOrder": 5016, "time": 0.8855590276099741, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4747, + "noteOrder": 5064, "time": 0.8940332766780121, "position": { "x": 4, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4792, + "noteOrder": 5112, "time": 0.9025075257460501, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 4, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4837, + "noteOrder": 5160, "time": 0.9109817748140882, "position": { "x": 6, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 2, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 8, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 5280, "time": 0.9321673974841832, "position": { "x": 3, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4995, + "noteOrder": 5328, "time": 0.9406416465522213, "position": { "x": 7, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5376, "time": 0.9491158956202593, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5376, "time": 0.9491158956202593, "position": { "x": 4, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5418, "time": 0.9565308635547924, "position": { "x": 3, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5091, + "noteOrder": 5430, "time": 0.958649425821802, "position": { "x": 5, @@ -2887,7 +2887,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 4, @@ -2910,7 +2910,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 4, @@ -2933,7 +2933,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 6, @@ -2956,7 +2956,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 6, @@ -2979,7 +2979,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 6, @@ -3002,7 +3002,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 6, @@ -3025,7 +3025,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 4, @@ -3048,7 +3048,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 4, @@ -3071,7 +3071,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 630, + "noteOrder": 672, "time": 0.11863948695253242, "position": { "x": 4, @@ -3094,7 +3094,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 4, @@ -3117,7 +3117,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 675, + "noteOrder": 720, "time": 0.1271137360205704, "position": { "x": 6, @@ -3140,7 +3140,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 6, @@ -3163,7 +3163,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 990, + "noteOrder": 1056, "time": 0.18643347949683664, "position": { "x": 7, @@ -3186,7 +3186,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1001, + "noteOrder": 1068, "time": 0.18855204176384616, "position": { "x": 7, @@ -3209,7 +3209,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1001, + "noteOrder": 1068, "time": 0.18855204176384616, "position": { "x": 6, @@ -3232,7 +3232,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1007.0, + "noteOrder": 1074.0, "time": 0.18855204176384616, "position": { "x": 6, @@ -3255,7 +3255,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1012, + "noteOrder": 1080, "time": 0.19067060403085564, "position": { "x": 3, @@ -3278,7 +3278,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1024, + "noteOrder": 1092, "time": 0.19278916629786516, "position": { "x": 3, @@ -3301,7 +3301,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1024, + "noteOrder": 1092, "time": 0.19278916629786516, "position": { "x": 4, @@ -3324,7 +3324,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1030.0, + "noteOrder": 1098.0, "time": 0.19278916629786516, "position": { "x": 4, @@ -3347,7 +3347,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 7, @@ -3370,7 +3370,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1046, + "noteOrder": 1116, "time": 0.19702629083188417, "position": { "x": 7, @@ -3393,7 +3393,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1046, + "noteOrder": 1116, "time": 0.19702629083188417, "position": { "x": 6, @@ -3416,7 +3416,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 6, @@ -3439,7 +3439,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 7, @@ -3462,7 +3462,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1063.0, + "noteOrder": 1134.0, "time": 0.19914485309889368, "position": { "x": 7, @@ -3485,7 +3485,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1152, "time": 0.20338197763291269, "position": { "x": 3, @@ -3508,7 +3508,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1091, + "noteOrder": 1164, "time": 0.2055005398999222, "position": { "x": 3, @@ -3531,7 +3531,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1091, + "noteOrder": 1164, "time": 0.2055005398999222, "position": { "x": 4, @@ -3554,7 +3554,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 4, @@ -3577,7 +3577,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 5, @@ -3600,7 +3600,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 1108.0, + "noteOrder": 1182.0, "time": 0.20761910216693172, "position": { "x": 5, @@ -3623,7 +3623,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 3, @@ -3646,7 +3646,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1136, + "noteOrder": 1212, "time": 0.21397478896796024, "position": { "x": 3, @@ -3669,7 +3669,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1136, + "noteOrder": 1212, "time": 0.21397478896796024, "position": { "x": 4, @@ -3692,7 +3692,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 4, @@ -3715,7 +3715,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 5, @@ -3738,7 +3738,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 1153.0, + "noteOrder": 1230.0, "time": 0.21609335123496975, "position": { "x": 5, @@ -3761,7 +3761,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 3, @@ -3784,7 +3784,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1181, + "noteOrder": 1260, "time": 0.22244903803599828, "position": { "x": 3, @@ -3807,7 +3807,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1181, + "noteOrder": 1260, "time": 0.22244903803599828, "position": { "x": 4, @@ -3830,7 +3830,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 4, @@ -3853,7 +3853,7 @@ { "lineGroupId": 55, "indexInLine": 5, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 3, @@ -3876,7 +3876,7 @@ { "lineGroupId": 55, "indexInLine": 6, - "noteOrder": 1198.0, + "noteOrder": 1278.0, "time": 0.22456760030300776, "position": { "x": 3, @@ -3899,7 +3899,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 3, @@ -3922,7 +3922,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1226, + "noteOrder": 1308, "time": 0.23092328710403628, "position": { "x": 3, @@ -3945,7 +3945,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1226, + "noteOrder": 1308, "time": 0.23092328710403628, "position": { "x": 4, @@ -3968,7 +3968,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 4, @@ -3991,7 +3991,7 @@ { "lineGroupId": 57, "indexInLine": 5, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 3, @@ -4014,7 +4014,7 @@ { "lineGroupId": 57, "indexInLine": 6, - "noteOrder": 1243.0, + "noteOrder": 1326.0, "time": 0.2330418493710458, "position": { "x": 3, @@ -4037,7 +4037,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 3, @@ -4060,7 +4060,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 3, @@ -4083,7 +4083,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 6, @@ -4106,7 +4106,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 7, @@ -4129,7 +4129,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1361, + "noteOrder": 1452, "time": 0.25634603430815034, "position": { "x": 7, @@ -4152,7 +4152,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1361, + "noteOrder": 1452, "time": 0.25634603430815034, "position": { "x": 6, @@ -4175,7 +4175,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1367.0, + "noteOrder": 1458.0, "time": 0.25634603430815034, "position": { "x": 6, @@ -4198,7 +4198,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1372, + "noteOrder": 1464, "time": 0.25846459657515986, "position": { "x": 3, @@ -4221,7 +4221,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1384, + "noteOrder": 1476, "time": 0.26058315884216937, "position": { "x": 3, @@ -4244,7 +4244,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1384, + "noteOrder": 1476, "time": 0.26058315884216937, "position": { "x": 4, @@ -4267,7 +4267,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1390.0, + "noteOrder": 1482.0, "time": 0.26058315884216937, "position": { "x": 4, @@ -4290,7 +4290,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1395, + "noteOrder": 1488, "time": 0.2627017211091789, "position": { "x": 7, @@ -4313,7 +4313,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1406, + "noteOrder": 1500, "time": 0.2648202833761884, "position": { "x": 7, @@ -4336,7 +4336,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1406, + "noteOrder": 1500, "time": 0.2648202833761884, "position": { "x": 6, @@ -4359,7 +4359,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1412.0, + "noteOrder": 1506.0, "time": 0.2648202833761884, "position": { "x": 6, @@ -4382,7 +4382,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 3, @@ -4405,7 +4405,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1429, + "noteOrder": 1524, "time": 0.2690574079102074, "position": { "x": 3, @@ -4428,7 +4428,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1429, + "noteOrder": 1524, "time": 0.2690574079102074, "position": { "x": 4, @@ -4451,7 +4451,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1435.0, + "noteOrder": 1530.0, "time": 0.2690574079102074, "position": { "x": 4, @@ -4474,7 +4474,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1536, "time": 0.2711759701772169, "position": { "x": 7, @@ -4497,7 +4497,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1451, + "noteOrder": 1548, "time": 0.2732945324442264, "position": { "x": 7, @@ -4520,7 +4520,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1451, + "noteOrder": 1548, "time": 0.2732945324442264, "position": { "x": 6, @@ -4543,7 +4543,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 6, @@ -4566,7 +4566,7 @@ { "lineGroupId": 67, "indexInLine": 5, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 5, @@ -4589,7 +4589,7 @@ { "lineGroupId": 67, "indexInLine": 6, - "noteOrder": 1468.0, + "noteOrder": 1566.0, "time": 0.27541309471123593, "position": { "x": 5, @@ -4612,7 +4612,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 7, @@ -4635,7 +4635,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1496, + "noteOrder": 1596, "time": 0.2817687815122644, "position": { "x": 7, @@ -4658,7 +4658,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 1496, + "noteOrder": 1596, "time": 0.2817687815122644, "position": { "x": 6, @@ -4681,7 +4681,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 6, @@ -4704,7 +4704,7 @@ { "lineGroupId": 69, "indexInLine": 5, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 5, @@ -4727,7 +4727,7 @@ { "lineGroupId": 69, "indexInLine": 6, - "noteOrder": 1513.0, + "noteOrder": 1614.0, "time": 0.28388734377927394, "position": { "x": 5, @@ -4750,7 +4750,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 7, @@ -4773,7 +4773,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1541, + "noteOrder": 1644, "time": 0.2902430305803025, "position": { "x": 7, @@ -4796,7 +4796,7 @@ { "lineGroupId": 71, "indexInLine": 3, - "noteOrder": 1541, + "noteOrder": 1644, "time": 0.2902430305803025, "position": { "x": 6, @@ -4819,7 +4819,7 @@ { "lineGroupId": 71, "indexInLine": 4, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 6, @@ -4842,7 +4842,7 @@ { "lineGroupId": 71, "indexInLine": 5, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 7, @@ -4865,7 +4865,7 @@ { "lineGroupId": 71, "indexInLine": 6, - "noteOrder": 1558.0, + "noteOrder": 1662.0, "time": 0.292361592847312, "position": { "x": 7, @@ -4888,7 +4888,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 7, @@ -4911,7 +4911,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1586, + "noteOrder": 1692, "time": 0.2987172796483405, "position": { "x": 7, @@ -4934,7 +4934,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1586, + "noteOrder": 1692, "time": 0.2987172796483405, "position": { "x": 6, @@ -4957,7 +4957,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 6, @@ -4980,7 +4980,7 @@ { "lineGroupId": 73, "indexInLine": 5, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 7, @@ -5003,7 +5003,7 @@ { "lineGroupId": 73, "indexInLine": 6, - "noteOrder": 1603.0, + "noteOrder": 1710.0, "time": 0.30083584191535, "position": { "x": 7, @@ -5026,7 +5026,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 7, @@ -5049,7 +5049,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 7, @@ -5072,7 +5072,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 4, @@ -5095,7 +5095,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 3, @@ -5118,7 +5118,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 1721, + "noteOrder": 1836, "time": 0.3241400268524546, "position": { "x": 3, @@ -5141,7 +5141,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 1721, + "noteOrder": 1836, "time": 0.3241400268524546, "position": { "x": 4, @@ -5164,7 +5164,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 1727.0, + "noteOrder": 1842.0, "time": 0.3241400268524546, "position": { "x": 4, @@ -5187,7 +5187,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 1732, + "noteOrder": 1848, "time": 0.3262585891194641, "position": { "x": 7, @@ -5210,7 +5210,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 1744, + "noteOrder": 1860, "time": 0.3283771513864736, "position": { "x": 7, @@ -5233,7 +5233,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 1744, + "noteOrder": 1860, "time": 0.3283771513864736, "position": { "x": 6, @@ -5256,7 +5256,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 1750.0, + "noteOrder": 1866.0, "time": 0.3283771513864736, "position": { "x": 6, @@ -5279,7 +5279,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1872, "time": 0.3304957136534831, "position": { "x": 3, @@ -5302,7 +5302,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1766, + "noteOrder": 1884, "time": 0.33261427592049264, "position": { "x": 3, @@ -5325,7 +5325,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1766, + "noteOrder": 1884, "time": 0.33261427592049264, "position": { "x": 4, @@ -5348,7 +5348,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1772.0, + "noteOrder": 1890.0, "time": 0.33261427592049264, "position": { "x": 4, @@ -5371,7 +5371,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 7, @@ -5394,7 +5394,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1789, + "noteOrder": 1908, "time": 0.3368514004545116, "position": { "x": 7, @@ -5417,7 +5417,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1789, + "noteOrder": 1908, "time": 0.3368514004545116, "position": { "x": 6, @@ -5440,7 +5440,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1795.0, + "noteOrder": 1914.0, "time": 0.3368514004545116, "position": { "x": 6, @@ -5463,7 +5463,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 1920, "time": 0.33896996272152113, "position": { "x": 3, @@ -5486,7 +5486,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1822, + "noteOrder": 1944, "time": 0.34320708725554017, "position": { "x": 4, @@ -5509,7 +5509,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 7, @@ -5532,7 +5532,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 6, @@ -5555,7 +5555,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1890, + "noteOrder": 2016, "time": 0.3559184608575972, "position": { "x": 3, @@ -5578,7 +5578,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 3, @@ -5601,7 +5601,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 6, @@ -5624,7 +5624,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2002, + "noteOrder": 2136, "time": 0.3771040835276923, "position": { "x": 6, @@ -5647,7 +5647,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2025, + "noteOrder": 2160, "time": 0.3813412080617113, "position": { "x": 4, @@ -5670,7 +5670,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 4, @@ -5693,7 +5693,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 6, @@ -5716,7 +5716,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 6, @@ -5739,7 +5739,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 4, @@ -5762,7 +5762,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 4, @@ -5785,7 +5785,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2304, "time": 0.40676395526582537, "position": { "x": 7, @@ -5808,7 +5808,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 6, @@ -5831,7 +5831,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2205, + "noteOrder": 2352, "time": 0.41523820433386344, "position": { "x": 3, @@ -5854,7 +5854,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 4, @@ -5877,7 +5877,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2250, + "noteOrder": 2400, "time": 0.42371245340190145, "position": { "x": 7, @@ -5900,7 +5900,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 7, @@ -5923,7 +5923,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 4, @@ -5946,7 +5946,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 4, @@ -5969,7 +5969,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2385, + "noteOrder": 2544, "time": 0.4491352006060155, "position": { "x": 6, @@ -5992,7 +5992,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 6, @@ -6015,7 +6015,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 6, @@ -6038,7 +6038,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 6, @@ -6061,7 +6061,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 4, @@ -6084,7 +6084,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 4, @@ -6107,7 +6107,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 6, @@ -6130,7 +6130,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2632, + "noteOrder": 2808, "time": 0.49574357048022466, "position": { "x": 6, @@ -6153,7 +6153,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 2700, + "noteOrder": 2880, "time": 0.5084549440822816, "position": { "x": 5, @@ -6176,7 +6176,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 2722, + "noteOrder": 2904, "time": 0.5126920686163007, "position": { "x": 5, @@ -6199,7 +6199,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 2722, + "noteOrder": 2904, "time": 0.5126920686163007, "position": { "x": 5, @@ -6222,7 +6222,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 5, @@ -6245,7 +6245,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 5, @@ -6268,7 +6268,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 2767, + "noteOrder": 2952, "time": 0.5211663176843387, "position": { "x": 5, @@ -6291,7 +6291,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 2767, + "noteOrder": 2952, "time": 0.5211663176843387, "position": { "x": 5, @@ -6314,7 +6314,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 2779, + "noteOrder": 2964, "time": 0.5232848799513482, "position": { "x": 5, @@ -6337,7 +6337,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 3072, "time": 0.5423519403544338, "position": { "x": 7, @@ -6360,7 +6360,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 2902, + "noteOrder": 3096, "time": 0.5465890648884528, "position": { "x": 7, @@ -6383,7 +6383,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 2925, + "noteOrder": 3120, "time": 0.5508261894224719, "position": { "x": 3, @@ -6406,7 +6406,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 2947, + "noteOrder": 3144, "time": 0.5550633139564909, "position": { "x": 3, @@ -6429,7 +6429,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 4, @@ -6452,7 +6452,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 2981, + "noteOrder": 3180, "time": 0.5614190007575194, "position": { "x": 4, @@ -6475,7 +6475,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 3, @@ -6498,7 +6498,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3004, + "noteOrder": 3204, "time": 0.5656561252915384, "position": { "x": 3, @@ -6521,7 +6521,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 4, @@ -6544,7 +6544,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 3026, + "noteOrder": 3228, "time": 0.5698932498255574, "position": { "x": 4, @@ -6567,7 +6567,7 @@ { "lineGroupId": 144, "indexInLine": 7, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 3, @@ -6590,7 +6590,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 6, @@ -6613,7 +6613,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 2981, + "noteOrder": 3180, "time": 0.5614190007575194, "position": { "x": 6, @@ -6636,7 +6636,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 6, @@ -6659,7 +6659,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3004, + "noteOrder": 3204, "time": 0.5656561252915384, "position": { "x": 6, @@ -6682,7 +6682,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 6, @@ -6705,7 +6705,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 3026, + "noteOrder": 3228, "time": 0.5698932498255574, "position": { "x": 6, @@ -6728,7 +6728,7 @@ { "lineGroupId": 145, "indexInLine": 7, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 6, @@ -6751,7 +6751,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3060, + "noteOrder": 3264, "time": 0.5762489366265859, "position": { "x": 5, @@ -6774,7 +6774,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3082, + "noteOrder": 3288, "time": 0.580486061160605, "position": { "x": 5, @@ -6797,7 +6797,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3082, + "noteOrder": 3288, "time": 0.580486061160605, "position": { "x": 5, @@ -6820,7 +6820,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 5, @@ -6843,7 +6843,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 5, @@ -6866,7 +6866,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3127, + "noteOrder": 3336, "time": 0.588960310228643, "position": { "x": 5, @@ -6889,7 +6889,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3127, + "noteOrder": 3336, "time": 0.588960310228643, "position": { "x": 5, @@ -6912,7 +6912,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3139, + "noteOrder": 3348, "time": 0.5910788724956526, "position": { "x": 5, @@ -6935,7 +6935,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 3456, "time": 0.6101459328987381, "position": { "x": 3, @@ -6958,7 +6958,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 3, @@ -6981,7 +6981,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3285, + "noteOrder": 3504, "time": 0.618620181966776, "position": { "x": 7, @@ -7004,7 +7004,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 7, @@ -7027,7 +7027,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 3510, + "noteOrder": 3744, "time": 0.6609914273069663, "position": { "x": 3, @@ -7050,7 +7050,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 3521, + "noteOrder": 3756, "time": 0.6631099895739757, "position": { "x": 3, @@ -7073,7 +7073,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 3521, + "noteOrder": 3756, "time": 0.6631099895739757, "position": { "x": 4, @@ -7096,7 +7096,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 3527.0, + "noteOrder": 3762.0, "time": 0.6631099895739757, "position": { "x": 4, @@ -7119,7 +7119,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 3532, + "noteOrder": 3768, "time": 0.6652285518409853, "position": { "x": 7, @@ -7142,7 +7142,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 3544, + "noteOrder": 3780, "time": 0.6673471141079947, "position": { "x": 7, @@ -7165,7 +7165,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 3544, + "noteOrder": 3780, "time": 0.6673471141079947, "position": { "x": 6, @@ -7188,7 +7188,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 3550.0, + "noteOrder": 3786.0, "time": 0.6673471141079947, "position": { "x": 6, @@ -7211,7 +7211,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 3, @@ -7234,7 +7234,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 3566, + "noteOrder": 3804, "time": 0.6715842386420137, "position": { "x": 3, @@ -7257,7 +7257,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 3566, + "noteOrder": 3804, "time": 0.6715842386420137, "position": { "x": 4, @@ -7280,7 +7280,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 4, @@ -7303,7 +7303,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 3, @@ -7326,7 +7326,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 3583.0, + "noteOrder": 3822.0, "time": 0.6737028009090232, "position": { "x": 3, @@ -7349,7 +7349,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3840, "time": 0.6779399254430423, "position": { "x": 7, @@ -7372,7 +7372,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3611, + "noteOrder": 3852, "time": 0.6800584877100517, "position": { "x": 7, @@ -7395,7 +7395,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 3611, + "noteOrder": 3852, "time": 0.6800584877100517, "position": { "x": 6, @@ -7418,7 +7418,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 6, @@ -7441,7 +7441,7 @@ { "lineGroupId": 175, "indexInLine": 5, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 5, @@ -7464,7 +7464,7 @@ { "lineGroupId": 175, "indexInLine": 6, - "noteOrder": 3628.0, + "noteOrder": 3870.0, "time": 0.6821770499770613, "position": { "x": 5, @@ -7487,7 +7487,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 7, @@ -7510,7 +7510,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3634, + "noteOrder": 3876, "time": 0.6842956122440708, "position": { "x": 7, @@ -7533,7 +7533,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 3634, + "noteOrder": 3876, "time": 0.6842956122440708, "position": { "x": 6, @@ -7556,7 +7556,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 6, @@ -7579,7 +7579,7 @@ { "lineGroupId": 176, "indexInLine": 5, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 5, @@ -7602,7 +7602,7 @@ { "lineGroupId": 176, "indexInLine": 6, - "noteOrder": 3651.0, + "noteOrder": 3894.0, "time": 0.6864141745110803, "position": { "x": 5, @@ -7625,7 +7625,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 7, @@ -7648,7 +7648,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3656, + "noteOrder": 3900, "time": 0.6885327367780898, "position": { "x": 7, @@ -7671,7 +7671,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 3656, + "noteOrder": 3900, "time": 0.6885327367780898, "position": { "x": 6, @@ -7694,7 +7694,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 6, @@ -7717,7 +7717,7 @@ { "lineGroupId": 177, "indexInLine": 5, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 5, @@ -7740,7 +7740,7 @@ { "lineGroupId": 177, "indexInLine": 6, - "noteOrder": 3673.0, + "noteOrder": 3918.0, "time": 0.6906512990450994, "position": { "x": 5, @@ -7763,7 +7763,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 7, @@ -7786,7 +7786,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3679, + "noteOrder": 3924, "time": 0.6927698613121088, "position": { "x": 7, @@ -7809,7 +7809,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3679, + "noteOrder": 3924, "time": 0.6927698613121088, "position": { "x": 6, @@ -7832,7 +7832,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 6, @@ -7855,7 +7855,7 @@ { "lineGroupId": 178, "indexInLine": 5, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 5, @@ -7878,7 +7878,7 @@ { "lineGroupId": 178, "indexInLine": 6, - "noteOrder": 3696.0, + "noteOrder": 3942.0, "time": 0.6948884235791184, "position": { "x": 5, @@ -7901,7 +7901,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 7, @@ -7924,7 +7924,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 7, @@ -7947,7 +7947,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 4, @@ -7970,7 +7970,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 3, @@ -7993,7 +7993,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 3791, + "noteOrder": 4044, "time": 0.7139554839822039, "position": { "x": 3, @@ -8016,7 +8016,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 3791, + "noteOrder": 4044, "time": 0.7139554839822039, "position": { "x": 4, @@ -8039,7 +8039,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 4, @@ -8062,7 +8062,7 @@ { "lineGroupId": 183, "indexInLine": 5, - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 3, @@ -8085,7 +8085,7 @@ { "lineGroupId": 183, "indexInLine": 6, - "noteOrder": 3808.0, + "noteOrder": 4062.0, "time": 0.7160740462492134, "position": { "x": 3, @@ -8108,7 +8108,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3825, + "noteOrder": 4080, "time": 0.7203111707832325, "position": { "x": 3, @@ -8131,7 +8131,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3836, + "noteOrder": 4092, "time": 0.7224297330502419, "position": { "x": 3, @@ -8154,7 +8154,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3836, + "noteOrder": 4092, "time": 0.7224297330502419, "position": { "x": 4, @@ -8177,7 +8177,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 4, @@ -8200,7 +8200,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 3, @@ -8223,7 +8223,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 3853.0, + "noteOrder": 4110.0, "time": 0.7245482953172515, "position": { "x": 3, @@ -8246,7 +8246,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 3870, + "noteOrder": 4128, "time": 0.7287854198512704, "position": { "x": 3, @@ -8269,7 +8269,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 3881, + "noteOrder": 4140, "time": 0.7309039821182799, "position": { "x": 3, @@ -8292,7 +8292,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 3881, + "noteOrder": 4140, "time": 0.7309039821182799, "position": { "x": 4, @@ -8315,7 +8315,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 3887.0, + "noteOrder": 4146.0, "time": 0.7309039821182799, "position": { "x": 4, @@ -8338,7 +8338,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 7, @@ -8361,7 +8361,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 3904, + "noteOrder": 4164, "time": 0.7351411066522989, "position": { "x": 7, @@ -8384,7 +8384,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 3904, + "noteOrder": 4164, "time": 0.7351411066522989, "position": { "x": 6, @@ -8407,7 +8407,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 6, @@ -8430,7 +8430,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 7, @@ -8453,7 +8453,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 3926, + "noteOrder": 4188, "time": 0.739378231186318, "position": { "x": 7, @@ -8476,7 +8476,7 @@ { "lineGroupId": 188, "indexInLine": 7, - "noteOrder": 3926, + "noteOrder": 4188, "time": 0.739378231186318, "position": { "x": 6, @@ -8499,7 +8499,7 @@ { "lineGroupId": 188, "indexInLine": 8, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 6, @@ -8522,7 +8522,7 @@ { "lineGroupId": 188, "indexInLine": 9, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 7, @@ -8545,7 +8545,7 @@ { "lineGroupId": 188, "indexInLine": 10, - "noteOrder": 3943.0, + "noteOrder": 4206.0, "time": 0.7414967934533275, "position": { "x": 7, @@ -8568,7 +8568,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 4224, "time": 0.7457339179873466, "position": { "x": 3, @@ -8591,7 +8591,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 3971, + "noteOrder": 4236, "time": 0.747852480254356, "position": { "x": 3, @@ -8614,7 +8614,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 3971, + "noteOrder": 4236, "time": 0.747852480254356, "position": { "x": 4, @@ -8637,7 +8637,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 4, @@ -8660,7 +8660,7 @@ { "lineGroupId": 191, "indexInLine": 5, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 5, @@ -8683,7 +8683,7 @@ { "lineGroupId": 191, "indexInLine": 6, - "noteOrder": 3988.0, + "noteOrder": 4254.0, "time": 0.7499710425213656, "position": { "x": 5, @@ -8706,7 +8706,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 3, @@ -8729,7 +8729,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3994, + "noteOrder": 4260, "time": 0.752089604788375, "position": { "x": 3, @@ -8752,7 +8752,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 3994, + "noteOrder": 4260, "time": 0.752089604788375, "position": { "x": 4, @@ -8775,7 +8775,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 4, @@ -8798,7 +8798,7 @@ { "lineGroupId": 192, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 5, @@ -8821,7 +8821,7 @@ { "lineGroupId": 192, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 4278.0, "time": 0.7542081670553846, "position": { "x": 5, @@ -8844,7 +8844,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 3, @@ -8867,7 +8867,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 4016, + "noteOrder": 4284, "time": 0.756326729322394, "position": { "x": 3, @@ -8890,7 +8890,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 4016, + "noteOrder": 4284, "time": 0.756326729322394, "position": { "x": 4, @@ -8913,7 +8913,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 4, @@ -8936,7 +8936,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 5, @@ -8959,7 +8959,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 4033.0, + "noteOrder": 4302.0, "time": 0.7584452915894035, "position": { "x": 5, @@ -8982,7 +8982,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 3, @@ -9005,7 +9005,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4039, + "noteOrder": 4308, "time": 0.760563853856413, "position": { "x": 3, @@ -9028,7 +9028,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 4039, + "noteOrder": 4308, "time": 0.760563853856413, "position": { "x": 4, @@ -9051,7 +9051,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 4, @@ -9074,7 +9074,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 5, @@ -9097,7 +9097,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 4056.0, + "noteOrder": 4326.0, "time": 0.7626824161234226, "position": { "x": 5, @@ -9120,7 +9120,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 3, @@ -9143,7 +9143,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 3, @@ -9166,7 +9166,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 6, @@ -9189,7 +9189,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 7, @@ -9212,7 +9212,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 4151, + "noteOrder": 4428, "time": 0.7817494765265081, "position": { "x": 7, @@ -9235,7 +9235,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 4151, + "noteOrder": 4428, "time": 0.7817494765265081, "position": { "x": 6, @@ -9258,7 +9258,7 @@ { "lineGroupId": 199, "indexInLine": 4, - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 6, @@ -9281,7 +9281,7 @@ { "lineGroupId": 199, "indexInLine": 5, - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 7, @@ -9304,7 +9304,7 @@ { "lineGroupId": 199, "indexInLine": 6, - "noteOrder": 4168.0, + "noteOrder": 4446.0, "time": 0.7838680387935176, "position": { "x": 7, @@ -9327,7 +9327,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4185, + "noteOrder": 4464, "time": 0.7881051633275367, "position": { "x": 7, @@ -9350,7 +9350,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4196, + "noteOrder": 4476, "time": 0.7902237255945461, "position": { "x": 7, @@ -9373,7 +9373,7 @@ { "lineGroupId": 201, "indexInLine": 3, - "noteOrder": 4196, + "noteOrder": 4476, "time": 0.7902237255945461, "position": { "x": 6, @@ -9396,7 +9396,7 @@ { "lineGroupId": 201, "indexInLine": 4, - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 6, @@ -9419,7 +9419,7 @@ { "lineGroupId": 201, "indexInLine": 5, - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 7, @@ -9442,7 +9442,7 @@ { "lineGroupId": 201, "indexInLine": 6, - "noteOrder": 4213.0, + "noteOrder": 4494.0, "time": 0.7923422878615557, "position": { "x": 7, @@ -9465,7 +9465,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 3, @@ -9488,7 +9488,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4264, + "noteOrder": 4548, "time": 0.8029350991966032, "position": { "x": 3, @@ -9511,7 +9511,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 4286, + "noteOrder": 4572, "time": 0.8071722237306223, "position": { "x": 7, @@ -9534,7 +9534,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 7, @@ -9557,7 +9557,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 7, @@ -9580,7 +9580,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 4264, + "noteOrder": 4548, "time": 0.8029350991966032, "position": { "x": 7, @@ -9603,7 +9603,7 @@ { "lineGroupId": 206, "indexInLine": 3, - "noteOrder": 4286, + "noteOrder": 4572, "time": 0.8071722237306223, "position": { "x": 3, @@ -9626,7 +9626,7 @@ { "lineGroupId": 206, "indexInLine": 4, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 3, @@ -9649,7 +9649,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4608, "time": 0.8135279105316507, "position": { "x": 7, @@ -9672,7 +9672,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 7, @@ -9695,7 +9695,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 3, @@ -9718,7 +9718,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 3, @@ -9741,7 +9741,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 6, @@ -9764,7 +9764,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 4522, + "noteOrder": 4824, "time": 0.8516620313378219, "position": { "x": 6, @@ -9787,7 +9787,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 4545, + "noteOrder": 4848, "time": 0.855899155871841, "position": { "x": 4, @@ -9810,7 +9810,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 4, @@ -9833,7 +9833,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 6, @@ -9856,7 +9856,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4601, + "noteOrder": 4908, "time": 0.8664919672068884, "position": { "x": 6, @@ -9879,7 +9879,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4612, + "noteOrder": 4920, "time": 0.8686105294738979, "position": { "x": 7, @@ -9902,7 +9902,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 4624, + "noteOrder": 4932, "time": 0.8707290917409074, "position": { "x": 7, @@ -9925,7 +9925,7 @@ { "lineGroupId": 220, "indexInLine": 5, - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 6, @@ -9948,7 +9948,7 @@ { "lineGroupId": 220, "indexInLine": 6, - "noteOrder": 4646, + "noteOrder": 4956, "time": 0.8749662162749264, "position": { "x": 6, @@ -9971,7 +9971,7 @@ { "lineGroupId": 220, "indexInLine": 7, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 7, @@ -9994,7 +9994,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 4, @@ -10017,7 +10017,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4601, + "noteOrder": 4908, "time": 0.8664919672068884, "position": { "x": 4, @@ -10040,7 +10040,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4612, + "noteOrder": 4920, "time": 0.8686105294738979, "position": { "x": 4, @@ -10063,7 +10063,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4624, + "noteOrder": 4932, "time": 0.8707290917409074, "position": { "x": 4, @@ -10086,7 +10086,7 @@ { "lineGroupId": 221, "indexInLine": 5, - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 4, @@ -10109,7 +10109,7 @@ { "lineGroupId": 221, "indexInLine": 6, - "noteOrder": 4646, + "noteOrder": 4956, "time": 0.8749662162749264, "position": { "x": 4, @@ -10132,7 +10132,7 @@ { "lineGroupId": 221, "indexInLine": 7, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 4, @@ -10155,7 +10155,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4680, + "noteOrder": 4992, "time": 0.881321903075955, "position": { "x": 3, @@ -10178,7 +10178,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 3, @@ -10201,7 +10201,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 7, @@ -10224,7 +10224,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 7, @@ -10247,7 +10247,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 4, @@ -10270,7 +10270,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 4, @@ -10293,7 +10293,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 4905, + "noteOrder": 5232, "time": 0.9236931484161451, "position": { "x": 6, @@ -10316,7 +10316,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 6, @@ -10339,7 +10339,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 5107, + "noteOrder": 5448, "time": 0.9618272692223162, "position": { "x": 7, @@ -10362,7 +10362,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 7, @@ -10385,7 +10385,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 158.5, + "noteOrder": 169.5, "time": 0.029659871738133104, "position": { "x": 5, @@ -10413,7 +10413,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 901.5, + "noteOrder": 961.5, "time": 0.16948498136076057, "position": { "x": 5, @@ -10441,7 +10441,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 946.5, + "noteOrder": 1009.5, "time": 0.1779592304287986, "position": { "x": 5, @@ -10469,7 +10469,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2149.0, + "noteOrder": 2292.0, "time": 0.4025268307318064, "position": { "x": 5, @@ -10497,7 +10497,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2509.0, + "noteOrder": 2676.0, "time": 0.47032082327611063, "position": { "x": 5, @@ -10525,7 +10525,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3421.5, + "noteOrder": 3649.5, "time": 0.6440429291708902, "position": { "x": 5, @@ -10553,7 +10553,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3466.5, + "noteOrder": 3697.5, "time": 0.6525171782389282, "position": { "x": 5, @@ -10581,7 +10581,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4309.0, + "noteOrder": 4596.0, "time": 0.8092907859976318, "position": { "x": 5, @@ -10609,7 +10609,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4951.5, + "noteOrder": 5281.5, "time": 0.9321673974841832, "position": { "x": 5, @@ -10637,7 +10637,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4996.5, + "noteOrder": 5329.5, "time": 0.9406416465522213, "position": { "x": 5, @@ -10665,7 +10665,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5041.5, + "noteOrder": 5377.5, "time": 0.9491158956202593, "position": { "x": 5, @@ -10693,7 +10693,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5131.5, + "noteOrder": 5473.5, "time": 0.9660643937563352, "position": { "x": 5, @@ -10734,7 +10734,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 120, + "BPM": 128, "NPS": "4.36", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a_blockless.json index f6ff8231..d736a3b8 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "7 to Smoke difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 90, + "noteOrder": 96, "time": 0.016948498136076056, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 112, + "noteOrder": 120, "time": 0.02118562267009507, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 180, + "noteOrder": 192, "time": 0.03389699627215211, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 202, + "noteOrder": 216, "time": 0.03813412080617113, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 225, + "noteOrder": 240, "time": 0.04237124534019014, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 247, + "noteOrder": 264, "time": 0.04660836987420916, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 8, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 2, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 384, "time": 0.06779399254430422, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 382, + "noteOrder": 408, "time": 0.07203111707832324, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 405, + "noteOrder": 432, "time": 0.07626824161234226, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 427, + "noteOrder": 456, "time": 0.08050536614636128, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 540, + "noteOrder": 576, "time": 0.10169098881645634, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 562, + "noteOrder": 600, "time": 0.10592811335047536, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 585, + "noteOrder": 624, "time": 0.11016523788449438, "position": { "x": 3, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 607, + "noteOrder": 648, "time": 0.1144023624185134, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 2, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 8, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 768, "time": 0.13558798508860845, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 742, + "noteOrder": 792, "time": 0.13982510962262748, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 765, + "noteOrder": 816, "time": 0.14406223415664648, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 787, + "noteOrder": 840, "time": 0.1482993586906655, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 821, + "noteOrder": 876, "time": 0.154655045491694, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 832, + "noteOrder": 888, "time": 0.15677360775870353, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 844, + "noteOrder": 900, "time": 0.15889217002571304, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 900, + "noteOrder": 960, "time": 0.16948498136076057, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 945, + "noteOrder": 1008, "time": 0.1779592304287986, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1305, + "noteOrder": 1392, "time": 0.24575322297310281, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1665, + "noteOrder": 1776, "time": 0.31354721551740705, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1822, + "noteOrder": 1944, "time": 0.34320708725554017, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1912, + "noteOrder": 2040, "time": 0.36015558539161624, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1957, + "noteOrder": 2088, "time": 0.36862983445965425, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2002, + "noteOrder": 2136, "time": 0.3771040835276923, "position": { "x": 8, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 2, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2208, "time": 0.38981545712974935, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2092, + "noteOrder": 2232, "time": 0.39405258166376833, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2272, + "noteOrder": 2424, "time": 0.4279495779359205, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2295, + "noteOrder": 2448, "time": 0.4321867024699395, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 2, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 8, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2430, + "noteOrder": 2592, "time": 0.4576094496740536, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2452, + "noteOrder": 2616, "time": 0.46184657420807257, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2688, "time": 0.47455794781012967, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2531, + "noteOrder": 2700, "time": 0.4766765100771391, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2712, "time": 0.47879507234414864, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2554, + "noteOrder": 2724, "time": 0.4809136346111581, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2565, + "noteOrder": 2736, "time": 0.4830321968781676, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2576, + "noteOrder": 2748, "time": 0.48515075914517714, "position": { "x": 4, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 2760, "time": 0.4872693214121866, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2599, + "noteOrder": 2772, "time": 0.4893878836791961, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2801, + "noteOrder": 2988, "time": 0.5275220044853672, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 7, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2846, + "noteOrder": 3036, "time": 0.5359962535534053, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 3, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2902, + "noteOrder": 3096, "time": 0.5465890648884528, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2947, + "noteOrder": 3144, "time": 0.5550633139564909, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3360, "time": 0.593197434762662, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3161, + "noteOrder": 3372, "time": 0.5953159970296715, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3384, "time": 0.597434559296681, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3408, "time": 0.6016716838307, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3206, + "noteOrder": 3420, "time": 0.6037902460977096, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3432, "time": 0.605908808364719, "position": { "x": 7, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3341, + "noteOrder": 3564, "time": 0.6292129933018237, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3352, + "noteOrder": 3576, "time": 0.6313315555688331, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3364, + "noteOrder": 3588, "time": 0.6334501178358427, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 3, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 6, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3420, + "noteOrder": 3648, "time": 0.6440429291708902, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3465, + "noteOrder": 3696, "time": 0.6525171782389282, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3735, + "noteOrder": 3984, "time": 0.7033626726471564, "position": { "x": 8, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3757, + "noteOrder": 4008, "time": 0.7075997971811754, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 3, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4095, + "noteOrder": 4368, "time": 0.7711566651914606, "position": { "x": 2, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4117, + "noteOrder": 4392, "time": 0.7753937897254797, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4632, "time": 0.8177650350656698, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4365, + "noteOrder": 4656, "time": 0.8220021595996888, "position": { "x": 4, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 6, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4432, + "noteOrder": 4728, "time": 0.8347135332017459, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4455, + "noteOrder": 4752, "time": 0.8389506577357649, "position": { "x": 6, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 4, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4522, + "noteOrder": 4824, "time": 0.8516620313378219, "position": { "x": 8, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4702, + "noteOrder": 5016, "time": 0.8855590276099741, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4747, + "noteOrder": 5064, "time": 0.8940332766780121, "position": { "x": 4, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4792, + "noteOrder": 5112, "time": 0.9025075257460501, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 4, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4837, + "noteOrder": 5160, "time": 0.9109817748140882, "position": { "x": 6, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 2, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 8, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4950, + "noteOrder": 5280, "time": 0.9321673974841832, "position": { "x": 3, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4995, + "noteOrder": 5328, "time": 0.9406416465522213, "position": { "x": 7, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5376, "time": 0.9491158956202593, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5376, "time": 0.9491158956202593, "position": { "x": 4, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5418, "time": 0.9565308635547924, "position": { "x": 3, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5091, + "noteOrder": 5430, "time": 0.958649425821802, "position": { "x": 5, @@ -2887,7 +2887,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 4, @@ -2910,7 +2910,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 4, @@ -2933,7 +2933,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 6, @@ -2956,7 +2956,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 6, @@ -2979,7 +2979,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 6, @@ -3002,7 +3002,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 6, @@ -3025,7 +3025,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 4, @@ -3048,7 +3048,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 4, @@ -3071,7 +3071,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 630, + "noteOrder": 672, "time": 0.11863948695253242, "position": { "x": 4, @@ -3094,7 +3094,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 4, @@ -3117,7 +3117,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 675, + "noteOrder": 720, "time": 0.1271137360205704, "position": { "x": 6, @@ -3140,7 +3140,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 6, @@ -3163,7 +3163,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 990, + "noteOrder": 1056, "time": 0.18643347949683664, "position": { "x": 7, @@ -3186,7 +3186,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1001, + "noteOrder": 1068, "time": 0.18855204176384616, "position": { "x": 7, @@ -3209,7 +3209,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1001, + "noteOrder": 1068, "time": 0.18855204176384616, "position": { "x": 6, @@ -3232,7 +3232,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1007.0, + "noteOrder": 1074.0, "time": 0.18855204176384616, "position": { "x": 6, @@ -3255,7 +3255,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1012, + "noteOrder": 1080, "time": 0.19067060403085564, "position": { "x": 3, @@ -3278,7 +3278,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1024, + "noteOrder": 1092, "time": 0.19278916629786516, "position": { "x": 3, @@ -3301,7 +3301,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1024, + "noteOrder": 1092, "time": 0.19278916629786516, "position": { "x": 4, @@ -3324,7 +3324,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1030.0, + "noteOrder": 1098.0, "time": 0.19278916629786516, "position": { "x": 4, @@ -3347,7 +3347,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 7, @@ -3370,7 +3370,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1046, + "noteOrder": 1116, "time": 0.19702629083188417, "position": { "x": 7, @@ -3393,7 +3393,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1046, + "noteOrder": 1116, "time": 0.19702629083188417, "position": { "x": 6, @@ -3416,7 +3416,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 6, @@ -3439,7 +3439,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 7, @@ -3462,7 +3462,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1063.0, + "noteOrder": 1134.0, "time": 0.19914485309889368, "position": { "x": 7, @@ -3485,7 +3485,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1152, "time": 0.20338197763291269, "position": { "x": 3, @@ -3508,7 +3508,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1091, + "noteOrder": 1164, "time": 0.2055005398999222, "position": { "x": 3, @@ -3531,7 +3531,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1091, + "noteOrder": 1164, "time": 0.2055005398999222, "position": { "x": 4, @@ -3554,7 +3554,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 4, @@ -3577,7 +3577,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 5, @@ -3600,7 +3600,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 1108.0, + "noteOrder": 1182.0, "time": 0.20761910216693172, "position": { "x": 5, @@ -3623,7 +3623,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 3, @@ -3646,7 +3646,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1136, + "noteOrder": 1212, "time": 0.21397478896796024, "position": { "x": 3, @@ -3669,7 +3669,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1136, + "noteOrder": 1212, "time": 0.21397478896796024, "position": { "x": 4, @@ -3692,7 +3692,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 4, @@ -3715,7 +3715,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 5, @@ -3738,7 +3738,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 1153.0, + "noteOrder": 1230.0, "time": 0.21609335123496975, "position": { "x": 5, @@ -3761,7 +3761,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 3, @@ -3784,7 +3784,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1181, + "noteOrder": 1260, "time": 0.22244903803599828, "position": { "x": 3, @@ -3807,7 +3807,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1181, + "noteOrder": 1260, "time": 0.22244903803599828, "position": { "x": 4, @@ -3830,7 +3830,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 4, @@ -3853,7 +3853,7 @@ { "lineGroupId": 55, "indexInLine": 5, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 3, @@ -3876,7 +3876,7 @@ { "lineGroupId": 55, "indexInLine": 6, - "noteOrder": 1198.0, + "noteOrder": 1278.0, "time": 0.22456760030300776, "position": { "x": 3, @@ -3899,7 +3899,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 3, @@ -3922,7 +3922,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1226, + "noteOrder": 1308, "time": 0.23092328710403628, "position": { "x": 3, @@ -3945,7 +3945,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1226, + "noteOrder": 1308, "time": 0.23092328710403628, "position": { "x": 4, @@ -3968,7 +3968,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 4, @@ -3991,7 +3991,7 @@ { "lineGroupId": 57, "indexInLine": 5, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 3, @@ -4014,7 +4014,7 @@ { "lineGroupId": 57, "indexInLine": 6, - "noteOrder": 1243.0, + "noteOrder": 1326.0, "time": 0.2330418493710458, "position": { "x": 3, @@ -4037,7 +4037,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 3, @@ -4060,7 +4060,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 3, @@ -4083,7 +4083,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 6, @@ -4106,7 +4106,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 7, @@ -4129,7 +4129,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1361, + "noteOrder": 1452, "time": 0.25634603430815034, "position": { "x": 7, @@ -4152,7 +4152,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1361, + "noteOrder": 1452, "time": 0.25634603430815034, "position": { "x": 6, @@ -4175,7 +4175,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1367.0, + "noteOrder": 1458.0, "time": 0.25634603430815034, "position": { "x": 6, @@ -4198,7 +4198,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1372, + "noteOrder": 1464, "time": 0.25846459657515986, "position": { "x": 3, @@ -4221,7 +4221,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1384, + "noteOrder": 1476, "time": 0.26058315884216937, "position": { "x": 3, @@ -4244,7 +4244,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1384, + "noteOrder": 1476, "time": 0.26058315884216937, "position": { "x": 4, @@ -4267,7 +4267,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1390.0, + "noteOrder": 1482.0, "time": 0.26058315884216937, "position": { "x": 4, @@ -4290,7 +4290,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1395, + "noteOrder": 1488, "time": 0.2627017211091789, "position": { "x": 7, @@ -4313,7 +4313,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1406, + "noteOrder": 1500, "time": 0.2648202833761884, "position": { "x": 7, @@ -4336,7 +4336,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1406, + "noteOrder": 1500, "time": 0.2648202833761884, "position": { "x": 6, @@ -4359,7 +4359,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1412.0, + "noteOrder": 1506.0, "time": 0.2648202833761884, "position": { "x": 6, @@ -4382,7 +4382,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 3, @@ -4405,7 +4405,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1429, + "noteOrder": 1524, "time": 0.2690574079102074, "position": { "x": 3, @@ -4428,7 +4428,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1429, + "noteOrder": 1524, "time": 0.2690574079102074, "position": { "x": 4, @@ -4451,7 +4451,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1435.0, + "noteOrder": 1530.0, "time": 0.2690574079102074, "position": { "x": 4, @@ -4474,7 +4474,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1536, "time": 0.2711759701772169, "position": { "x": 7, @@ -4497,7 +4497,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1451, + "noteOrder": 1548, "time": 0.2732945324442264, "position": { "x": 7, @@ -4520,7 +4520,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1451, + "noteOrder": 1548, "time": 0.2732945324442264, "position": { "x": 6, @@ -4543,7 +4543,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 6, @@ -4566,7 +4566,7 @@ { "lineGroupId": 67, "indexInLine": 5, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 5, @@ -4589,7 +4589,7 @@ { "lineGroupId": 67, "indexInLine": 6, - "noteOrder": 1468.0, + "noteOrder": 1566.0, "time": 0.27541309471123593, "position": { "x": 5, @@ -4612,7 +4612,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 7, @@ -4635,7 +4635,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1496, + "noteOrder": 1596, "time": 0.2817687815122644, "position": { "x": 7, @@ -4658,7 +4658,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 1496, + "noteOrder": 1596, "time": 0.2817687815122644, "position": { "x": 6, @@ -4681,7 +4681,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 6, @@ -4704,7 +4704,7 @@ { "lineGroupId": 69, "indexInLine": 5, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 5, @@ -4727,7 +4727,7 @@ { "lineGroupId": 69, "indexInLine": 6, - "noteOrder": 1513.0, + "noteOrder": 1614.0, "time": 0.28388734377927394, "position": { "x": 5, @@ -4750,7 +4750,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 7, @@ -4773,7 +4773,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1541, + "noteOrder": 1644, "time": 0.2902430305803025, "position": { "x": 7, @@ -4796,7 +4796,7 @@ { "lineGroupId": 71, "indexInLine": 3, - "noteOrder": 1541, + "noteOrder": 1644, "time": 0.2902430305803025, "position": { "x": 6, @@ -4819,7 +4819,7 @@ { "lineGroupId": 71, "indexInLine": 4, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 6, @@ -4842,7 +4842,7 @@ { "lineGroupId": 71, "indexInLine": 5, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 7, @@ -4865,7 +4865,7 @@ { "lineGroupId": 71, "indexInLine": 6, - "noteOrder": 1558.0, + "noteOrder": 1662.0, "time": 0.292361592847312, "position": { "x": 7, @@ -4888,7 +4888,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 7, @@ -4911,7 +4911,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1586, + "noteOrder": 1692, "time": 0.2987172796483405, "position": { "x": 7, @@ -4934,7 +4934,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1586, + "noteOrder": 1692, "time": 0.2987172796483405, "position": { "x": 6, @@ -4957,7 +4957,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 6, @@ -4980,7 +4980,7 @@ { "lineGroupId": 73, "indexInLine": 5, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 7, @@ -5003,7 +5003,7 @@ { "lineGroupId": 73, "indexInLine": 6, - "noteOrder": 1603.0, + "noteOrder": 1710.0, "time": 0.30083584191535, "position": { "x": 7, @@ -5026,7 +5026,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 7, @@ -5049,7 +5049,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 7, @@ -5072,7 +5072,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 4, @@ -5095,7 +5095,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 3, @@ -5118,7 +5118,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 1721, + "noteOrder": 1836, "time": 0.3241400268524546, "position": { "x": 3, @@ -5141,7 +5141,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 1721, + "noteOrder": 1836, "time": 0.3241400268524546, "position": { "x": 4, @@ -5164,7 +5164,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 1727.0, + "noteOrder": 1842.0, "time": 0.3241400268524546, "position": { "x": 4, @@ -5187,7 +5187,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 1732, + "noteOrder": 1848, "time": 0.3262585891194641, "position": { "x": 7, @@ -5210,7 +5210,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 1744, + "noteOrder": 1860, "time": 0.3283771513864736, "position": { "x": 7, @@ -5233,7 +5233,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 1744, + "noteOrder": 1860, "time": 0.3283771513864736, "position": { "x": 6, @@ -5256,7 +5256,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 1750.0, + "noteOrder": 1866.0, "time": 0.3283771513864736, "position": { "x": 6, @@ -5279,7 +5279,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1872, "time": 0.3304957136534831, "position": { "x": 3, @@ -5302,7 +5302,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1766, + "noteOrder": 1884, "time": 0.33261427592049264, "position": { "x": 3, @@ -5325,7 +5325,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1766, + "noteOrder": 1884, "time": 0.33261427592049264, "position": { "x": 4, @@ -5348,7 +5348,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1772.0, + "noteOrder": 1890.0, "time": 0.33261427592049264, "position": { "x": 4, @@ -5371,7 +5371,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 7, @@ -5394,7 +5394,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1789, + "noteOrder": 1908, "time": 0.3368514004545116, "position": { "x": 7, @@ -5417,7 +5417,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1789, + "noteOrder": 1908, "time": 0.3368514004545116, "position": { "x": 6, @@ -5440,7 +5440,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1795.0, + "noteOrder": 1914.0, "time": 0.3368514004545116, "position": { "x": 6, @@ -5463,7 +5463,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 1920, "time": 0.33896996272152113, "position": { "x": 3, @@ -5486,7 +5486,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1822, + "noteOrder": 1944, "time": 0.34320708725554017, "position": { "x": 4, @@ -5509,7 +5509,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 7, @@ -5532,7 +5532,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 6, @@ -5555,7 +5555,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1890, + "noteOrder": 2016, "time": 0.3559184608575972, "position": { "x": 3, @@ -5578,7 +5578,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 3, @@ -5601,7 +5601,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 6, @@ -5624,7 +5624,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2002, + "noteOrder": 2136, "time": 0.3771040835276923, "position": { "x": 6, @@ -5647,7 +5647,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2025, + "noteOrder": 2160, "time": 0.3813412080617113, "position": { "x": 4, @@ -5670,7 +5670,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 4, @@ -5693,7 +5693,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 6, @@ -5716,7 +5716,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 6, @@ -5739,7 +5739,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 4, @@ -5762,7 +5762,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 4, @@ -5785,7 +5785,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2304, "time": 0.40676395526582537, "position": { "x": 7, @@ -5808,7 +5808,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 6, @@ -5831,7 +5831,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2205, + "noteOrder": 2352, "time": 0.41523820433386344, "position": { "x": 3, @@ -5854,7 +5854,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 4, @@ -5877,7 +5877,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2250, + "noteOrder": 2400, "time": 0.42371245340190145, "position": { "x": 7, @@ -5900,7 +5900,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 7, @@ -5923,7 +5923,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 4, @@ -5946,7 +5946,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 4, @@ -5969,7 +5969,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2385, + "noteOrder": 2544, "time": 0.4491352006060155, "position": { "x": 6, @@ -5992,7 +5992,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 6, @@ -6015,7 +6015,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 6, @@ -6038,7 +6038,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 6, @@ -6061,7 +6061,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 4, @@ -6084,7 +6084,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 4, @@ -6107,7 +6107,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 6, @@ -6130,7 +6130,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2632, + "noteOrder": 2808, "time": 0.49574357048022466, "position": { "x": 6, @@ -6153,7 +6153,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 2700, + "noteOrder": 2880, "time": 0.5084549440822816, "position": { "x": 5, @@ -6176,7 +6176,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 2722, + "noteOrder": 2904, "time": 0.5126920686163007, "position": { "x": 5, @@ -6199,7 +6199,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 2722, + "noteOrder": 2904, "time": 0.5126920686163007, "position": { "x": 5, @@ -6222,7 +6222,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 5, @@ -6245,7 +6245,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 5, @@ -6268,7 +6268,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 2767, + "noteOrder": 2952, "time": 0.5211663176843387, "position": { "x": 5, @@ -6291,7 +6291,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 2767, + "noteOrder": 2952, "time": 0.5211663176843387, "position": { "x": 5, @@ -6314,7 +6314,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 2779, + "noteOrder": 2964, "time": 0.5232848799513482, "position": { "x": 5, @@ -6337,7 +6337,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 3072, "time": 0.5423519403544338, "position": { "x": 7, @@ -6360,7 +6360,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 2902, + "noteOrder": 3096, "time": 0.5465890648884528, "position": { "x": 7, @@ -6383,7 +6383,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 2925, + "noteOrder": 3120, "time": 0.5508261894224719, "position": { "x": 3, @@ -6406,7 +6406,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 2947, + "noteOrder": 3144, "time": 0.5550633139564909, "position": { "x": 3, @@ -6429,7 +6429,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 4, @@ -6452,7 +6452,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 2981, + "noteOrder": 3180, "time": 0.5614190007575194, "position": { "x": 4, @@ -6475,7 +6475,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 3, @@ -6498,7 +6498,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3004, + "noteOrder": 3204, "time": 0.5656561252915384, "position": { "x": 3, @@ -6521,7 +6521,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 4, @@ -6544,7 +6544,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 3026, + "noteOrder": 3228, "time": 0.5698932498255574, "position": { "x": 4, @@ -6567,7 +6567,7 @@ { "lineGroupId": 144, "indexInLine": 7, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 3, @@ -6590,7 +6590,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 6, @@ -6613,7 +6613,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 2981, + "noteOrder": 3180, "time": 0.5614190007575194, "position": { "x": 6, @@ -6636,7 +6636,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 6, @@ -6659,7 +6659,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3004, + "noteOrder": 3204, "time": 0.5656561252915384, "position": { "x": 6, @@ -6682,7 +6682,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 6, @@ -6705,7 +6705,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 3026, + "noteOrder": 3228, "time": 0.5698932498255574, "position": { "x": 6, @@ -6728,7 +6728,7 @@ { "lineGroupId": 145, "indexInLine": 7, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 6, @@ -6751,7 +6751,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3060, + "noteOrder": 3264, "time": 0.5762489366265859, "position": { "x": 5, @@ -6774,7 +6774,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3082, + "noteOrder": 3288, "time": 0.580486061160605, "position": { "x": 5, @@ -6797,7 +6797,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3082, + "noteOrder": 3288, "time": 0.580486061160605, "position": { "x": 5, @@ -6820,7 +6820,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 5, @@ -6843,7 +6843,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 5, @@ -6866,7 +6866,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3127, + "noteOrder": 3336, "time": 0.588960310228643, "position": { "x": 5, @@ -6889,7 +6889,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3127, + "noteOrder": 3336, "time": 0.588960310228643, "position": { "x": 5, @@ -6912,7 +6912,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3139, + "noteOrder": 3348, "time": 0.5910788724956526, "position": { "x": 5, @@ -6935,7 +6935,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 3456, "time": 0.6101459328987381, "position": { "x": 3, @@ -6958,7 +6958,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 3, @@ -6981,7 +6981,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3285, + "noteOrder": 3504, "time": 0.618620181966776, "position": { "x": 7, @@ -7004,7 +7004,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 7, @@ -7027,7 +7027,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 3510, + "noteOrder": 3744, "time": 0.6609914273069663, "position": { "x": 3, @@ -7050,7 +7050,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 3521, + "noteOrder": 3756, "time": 0.6631099895739757, "position": { "x": 3, @@ -7073,7 +7073,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 3521, + "noteOrder": 3756, "time": 0.6631099895739757, "position": { "x": 4, @@ -7096,7 +7096,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 3527.0, + "noteOrder": 3762.0, "time": 0.6631099895739757, "position": { "x": 4, @@ -7119,7 +7119,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 3532, + "noteOrder": 3768, "time": 0.6652285518409853, "position": { "x": 7, @@ -7142,7 +7142,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 3544, + "noteOrder": 3780, "time": 0.6673471141079947, "position": { "x": 7, @@ -7165,7 +7165,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 3544, + "noteOrder": 3780, "time": 0.6673471141079947, "position": { "x": 6, @@ -7188,7 +7188,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 3550.0, + "noteOrder": 3786.0, "time": 0.6673471141079947, "position": { "x": 6, @@ -7211,7 +7211,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 3, @@ -7234,7 +7234,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 3566, + "noteOrder": 3804, "time": 0.6715842386420137, "position": { "x": 3, @@ -7257,7 +7257,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 3566, + "noteOrder": 3804, "time": 0.6715842386420137, "position": { "x": 4, @@ -7280,7 +7280,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 4, @@ -7303,7 +7303,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 3, @@ -7326,7 +7326,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 3583.0, + "noteOrder": 3822.0, "time": 0.6737028009090232, "position": { "x": 3, @@ -7349,7 +7349,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3840, "time": 0.6779399254430423, "position": { "x": 7, @@ -7372,7 +7372,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3611, + "noteOrder": 3852, "time": 0.6800584877100517, "position": { "x": 7, @@ -7395,7 +7395,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 3611, + "noteOrder": 3852, "time": 0.6800584877100517, "position": { "x": 6, @@ -7418,7 +7418,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 6, @@ -7441,7 +7441,7 @@ { "lineGroupId": 175, "indexInLine": 5, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 5, @@ -7464,7 +7464,7 @@ { "lineGroupId": 175, "indexInLine": 6, - "noteOrder": 3628.0, + "noteOrder": 3870.0, "time": 0.6821770499770613, "position": { "x": 5, @@ -7487,7 +7487,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 7, @@ -7510,7 +7510,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3634, + "noteOrder": 3876, "time": 0.6842956122440708, "position": { "x": 7, @@ -7533,7 +7533,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 3634, + "noteOrder": 3876, "time": 0.6842956122440708, "position": { "x": 6, @@ -7556,7 +7556,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 6, @@ -7579,7 +7579,7 @@ { "lineGroupId": 176, "indexInLine": 5, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 5, @@ -7602,7 +7602,7 @@ { "lineGroupId": 176, "indexInLine": 6, - "noteOrder": 3651.0, + "noteOrder": 3894.0, "time": 0.6864141745110803, "position": { "x": 5, @@ -7625,7 +7625,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 7, @@ -7648,7 +7648,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3656, + "noteOrder": 3900, "time": 0.6885327367780898, "position": { "x": 7, @@ -7671,7 +7671,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 3656, + "noteOrder": 3900, "time": 0.6885327367780898, "position": { "x": 6, @@ -7694,7 +7694,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 6, @@ -7717,7 +7717,7 @@ { "lineGroupId": 177, "indexInLine": 5, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 5, @@ -7740,7 +7740,7 @@ { "lineGroupId": 177, "indexInLine": 6, - "noteOrder": 3673.0, + "noteOrder": 3918.0, "time": 0.6906512990450994, "position": { "x": 5, @@ -7763,7 +7763,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 7, @@ -7786,7 +7786,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3679, + "noteOrder": 3924, "time": 0.6927698613121088, "position": { "x": 7, @@ -7809,7 +7809,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3679, + "noteOrder": 3924, "time": 0.6927698613121088, "position": { "x": 6, @@ -7832,7 +7832,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 6, @@ -7855,7 +7855,7 @@ { "lineGroupId": 178, "indexInLine": 5, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 5, @@ -7878,7 +7878,7 @@ { "lineGroupId": 178, "indexInLine": 6, - "noteOrder": 3696.0, + "noteOrder": 3942.0, "time": 0.6948884235791184, "position": { "x": 5, @@ -7901,7 +7901,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 7, @@ -7924,7 +7924,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 7, @@ -7947,7 +7947,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 4, @@ -7970,7 +7970,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 3, @@ -7993,7 +7993,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 3791, + "noteOrder": 4044, "time": 0.7139554839822039, "position": { "x": 3, @@ -8016,7 +8016,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 3791, + "noteOrder": 4044, "time": 0.7139554839822039, "position": { "x": 4, @@ -8039,7 +8039,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 4, @@ -8062,7 +8062,7 @@ { "lineGroupId": 183, "indexInLine": 5, - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 3, @@ -8085,7 +8085,7 @@ { "lineGroupId": 183, "indexInLine": 6, - "noteOrder": 3808.0, + "noteOrder": 4062.0, "time": 0.7160740462492134, "position": { "x": 3, @@ -8108,7 +8108,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3825, + "noteOrder": 4080, "time": 0.7203111707832325, "position": { "x": 3, @@ -8131,7 +8131,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3836, + "noteOrder": 4092, "time": 0.7224297330502419, "position": { "x": 3, @@ -8154,7 +8154,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3836, + "noteOrder": 4092, "time": 0.7224297330502419, "position": { "x": 4, @@ -8177,7 +8177,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 4, @@ -8200,7 +8200,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 3, @@ -8223,7 +8223,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 3853.0, + "noteOrder": 4110.0, "time": 0.7245482953172515, "position": { "x": 3, @@ -8246,7 +8246,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 3870, + "noteOrder": 4128, "time": 0.7287854198512704, "position": { "x": 3, @@ -8269,7 +8269,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 3881, + "noteOrder": 4140, "time": 0.7309039821182799, "position": { "x": 3, @@ -8292,7 +8292,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 3881, + "noteOrder": 4140, "time": 0.7309039821182799, "position": { "x": 4, @@ -8315,7 +8315,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 3887.0, + "noteOrder": 4146.0, "time": 0.7309039821182799, "position": { "x": 4, @@ -8338,7 +8338,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 7, @@ -8361,7 +8361,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 3904, + "noteOrder": 4164, "time": 0.7351411066522989, "position": { "x": 7, @@ -8384,7 +8384,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 3904, + "noteOrder": 4164, "time": 0.7351411066522989, "position": { "x": 6, @@ -8407,7 +8407,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 6, @@ -8430,7 +8430,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 7, @@ -8453,7 +8453,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 3926, + "noteOrder": 4188, "time": 0.739378231186318, "position": { "x": 7, @@ -8476,7 +8476,7 @@ { "lineGroupId": 188, "indexInLine": 7, - "noteOrder": 3926, + "noteOrder": 4188, "time": 0.739378231186318, "position": { "x": 6, @@ -8499,7 +8499,7 @@ { "lineGroupId": 188, "indexInLine": 8, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 6, @@ -8522,7 +8522,7 @@ { "lineGroupId": 188, "indexInLine": 9, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 7, @@ -8545,7 +8545,7 @@ { "lineGroupId": 188, "indexInLine": 10, - "noteOrder": 3943.0, + "noteOrder": 4206.0, "time": 0.7414967934533275, "position": { "x": 7, @@ -8568,7 +8568,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 4224, "time": 0.7457339179873466, "position": { "x": 3, @@ -8591,7 +8591,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 3971, + "noteOrder": 4236, "time": 0.747852480254356, "position": { "x": 3, @@ -8614,7 +8614,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 3971, + "noteOrder": 4236, "time": 0.747852480254356, "position": { "x": 4, @@ -8637,7 +8637,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 4, @@ -8660,7 +8660,7 @@ { "lineGroupId": 191, "indexInLine": 5, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 5, @@ -8683,7 +8683,7 @@ { "lineGroupId": 191, "indexInLine": 6, - "noteOrder": 3988.0, + "noteOrder": 4254.0, "time": 0.7499710425213656, "position": { "x": 5, @@ -8706,7 +8706,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 3, @@ -8729,7 +8729,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3994, + "noteOrder": 4260, "time": 0.752089604788375, "position": { "x": 3, @@ -8752,7 +8752,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 3994, + "noteOrder": 4260, "time": 0.752089604788375, "position": { "x": 4, @@ -8775,7 +8775,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 4, @@ -8798,7 +8798,7 @@ { "lineGroupId": 192, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 5, @@ -8821,7 +8821,7 @@ { "lineGroupId": 192, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 4278.0, "time": 0.7542081670553846, "position": { "x": 5, @@ -8844,7 +8844,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 3, @@ -8867,7 +8867,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 4016, + "noteOrder": 4284, "time": 0.756326729322394, "position": { "x": 3, @@ -8890,7 +8890,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 4016, + "noteOrder": 4284, "time": 0.756326729322394, "position": { "x": 4, @@ -8913,7 +8913,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 4, @@ -8936,7 +8936,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 5, @@ -8959,7 +8959,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 4033.0, + "noteOrder": 4302.0, "time": 0.7584452915894035, "position": { "x": 5, @@ -8982,7 +8982,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 3, @@ -9005,7 +9005,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4039, + "noteOrder": 4308, "time": 0.760563853856413, "position": { "x": 3, @@ -9028,7 +9028,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 4039, + "noteOrder": 4308, "time": 0.760563853856413, "position": { "x": 4, @@ -9051,7 +9051,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 4, @@ -9074,7 +9074,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 5, @@ -9097,7 +9097,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 4056.0, + "noteOrder": 4326.0, "time": 0.7626824161234226, "position": { "x": 5, @@ -9120,7 +9120,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 3, @@ -9143,7 +9143,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 3, @@ -9166,7 +9166,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 6, @@ -9189,7 +9189,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 7, @@ -9212,7 +9212,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 4151, + "noteOrder": 4428, "time": 0.7817494765265081, "position": { "x": 7, @@ -9235,7 +9235,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 4151, + "noteOrder": 4428, "time": 0.7817494765265081, "position": { "x": 6, @@ -9258,7 +9258,7 @@ { "lineGroupId": 199, "indexInLine": 4, - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 6, @@ -9281,7 +9281,7 @@ { "lineGroupId": 199, "indexInLine": 5, - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 7, @@ -9304,7 +9304,7 @@ { "lineGroupId": 199, "indexInLine": 6, - "noteOrder": 4168.0, + "noteOrder": 4446.0, "time": 0.7838680387935176, "position": { "x": 7, @@ -9327,7 +9327,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4185, + "noteOrder": 4464, "time": 0.7881051633275367, "position": { "x": 7, @@ -9350,7 +9350,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4196, + "noteOrder": 4476, "time": 0.7902237255945461, "position": { "x": 7, @@ -9373,7 +9373,7 @@ { "lineGroupId": 201, "indexInLine": 3, - "noteOrder": 4196, + "noteOrder": 4476, "time": 0.7902237255945461, "position": { "x": 6, @@ -9396,7 +9396,7 @@ { "lineGroupId": 201, "indexInLine": 4, - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 6, @@ -9419,7 +9419,7 @@ { "lineGroupId": 201, "indexInLine": 5, - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 7, @@ -9442,7 +9442,7 @@ { "lineGroupId": 201, "indexInLine": 6, - "noteOrder": 4213.0, + "noteOrder": 4494.0, "time": 0.7923422878615557, "position": { "x": 7, @@ -9465,7 +9465,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 3, @@ -9488,7 +9488,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4264, + "noteOrder": 4548, "time": 0.8029350991966032, "position": { "x": 3, @@ -9511,7 +9511,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 4286, + "noteOrder": 4572, "time": 0.8071722237306223, "position": { "x": 7, @@ -9534,7 +9534,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 7, @@ -9557,7 +9557,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 7, @@ -9580,7 +9580,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 4264, + "noteOrder": 4548, "time": 0.8029350991966032, "position": { "x": 7, @@ -9603,7 +9603,7 @@ { "lineGroupId": 206, "indexInLine": 3, - "noteOrder": 4286, + "noteOrder": 4572, "time": 0.8071722237306223, "position": { "x": 3, @@ -9626,7 +9626,7 @@ { "lineGroupId": 206, "indexInLine": 4, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 3, @@ -9649,7 +9649,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4608, "time": 0.8135279105316507, "position": { "x": 7, @@ -9672,7 +9672,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 7, @@ -9695,7 +9695,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 3, @@ -9718,7 +9718,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 3, @@ -9741,7 +9741,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 6, @@ -9764,7 +9764,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 4522, + "noteOrder": 4824, "time": 0.8516620313378219, "position": { "x": 6, @@ -9787,7 +9787,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 4545, + "noteOrder": 4848, "time": 0.855899155871841, "position": { "x": 4, @@ -9810,7 +9810,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 4, @@ -9833,7 +9833,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 6, @@ -9856,7 +9856,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4601, + "noteOrder": 4908, "time": 0.8664919672068884, "position": { "x": 6, @@ -9879,7 +9879,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4612, + "noteOrder": 4920, "time": 0.8686105294738979, "position": { "x": 7, @@ -9902,7 +9902,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 4624, + "noteOrder": 4932, "time": 0.8707290917409074, "position": { "x": 7, @@ -9925,7 +9925,7 @@ { "lineGroupId": 220, "indexInLine": 5, - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 6, @@ -9948,7 +9948,7 @@ { "lineGroupId": 220, "indexInLine": 6, - "noteOrder": 4646, + "noteOrder": 4956, "time": 0.8749662162749264, "position": { "x": 6, @@ -9971,7 +9971,7 @@ { "lineGroupId": 220, "indexInLine": 7, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 7, @@ -9994,7 +9994,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 4, @@ -10017,7 +10017,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4601, + "noteOrder": 4908, "time": 0.8664919672068884, "position": { "x": 4, @@ -10040,7 +10040,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4612, + "noteOrder": 4920, "time": 0.8686105294738979, "position": { "x": 4, @@ -10063,7 +10063,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4624, + "noteOrder": 4932, "time": 0.8707290917409074, "position": { "x": 4, @@ -10086,7 +10086,7 @@ { "lineGroupId": 221, "indexInLine": 5, - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 4, @@ -10109,7 +10109,7 @@ { "lineGroupId": 221, "indexInLine": 6, - "noteOrder": 4646, + "noteOrder": 4956, "time": 0.8749662162749264, "position": { "x": 4, @@ -10132,7 +10132,7 @@ { "lineGroupId": 221, "indexInLine": 7, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 4, @@ -10155,7 +10155,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4680, + "noteOrder": 4992, "time": 0.881321903075955, "position": { "x": 3, @@ -10178,7 +10178,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 3, @@ -10201,7 +10201,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 7, @@ -10224,7 +10224,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 7, @@ -10247,7 +10247,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 4, @@ -10270,7 +10270,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 4, @@ -10293,7 +10293,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 4905, + "noteOrder": 5232, "time": 0.9236931484161451, "position": { "x": 6, @@ -10316,7 +10316,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 6, @@ -10339,7 +10339,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 5107, + "noteOrder": 5448, "time": 0.9618272692223162, "position": { "x": 7, @@ -10362,7 +10362,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 7, @@ -10397,7 +10397,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 120, + "BPM": 128, "NPS": "4.36", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b.json index e551f63c..8f3aa93e 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "7 to Smoke difficulty_1b", "sphereNodes": [ { - "noteOrder": 180, + "noteOrder": 192, "time": 0.03389699627215211, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 225, + "noteOrder": 240, "time": 0.04237124534019014, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 384, "time": 0.06779399254430422, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 405, + "noteOrder": 432, "time": 0.07626824161234226, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 540, + "noteOrder": 576, "time": 0.10169098881645634, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 585, + "noteOrder": 624, "time": 0.11016523788449438, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 630, + "noteOrder": 672, "time": 0.11863948695253242, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 720, "time": 0.1271137360205704, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 768, "time": 0.13558798508860845, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 742, + "noteOrder": 792, "time": 0.13982510962262748, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 765, + "noteOrder": 816, "time": 0.14406223415664648, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 787, + "noteOrder": 840, "time": 0.1482993586906655, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 1056, "time": 0.18643347949683664, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1080, "time": 0.19067060403085564, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1464, "time": 0.25846459657515986, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1395, + "noteOrder": 1488, "time": 0.2627017211091789, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 1848, "time": 0.3262585891194641, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1872, "time": 0.3304957136534831, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1957, + "noteOrder": 2088, "time": 0.36862983445965425, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2160, "time": 0.3813412080617113, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2272, + "noteOrder": 2424, "time": 0.4279495779359205, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2688, "time": 0.47455794781012967, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2712, "time": 0.47879507234414864, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2565, + "noteOrder": 2736, "time": 0.4830321968781676, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 2760, "time": 0.4872693214121866, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2880, "time": 0.5084549440822816, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 3072, "time": 0.5423519403544338, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 3120, "time": 0.5508261894224719, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3264, "time": 0.5762489366265859, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3360, "time": 0.593197434762662, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3384, "time": 0.597434559296681, "position": { "x": 7, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3408, "time": 0.6016716838307, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3432, "time": 0.605908808364719, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3456, "time": 0.6101459328987381, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3285, + "noteOrder": 3504, "time": 0.618620181966776, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3744, "time": 0.6609914273069663, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3768, "time": 0.6652285518409853, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 4080, "time": 0.7203111707832325, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4464, "time": 0.7881051633275367, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4632, "time": 0.8177650350656698, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4432, + "noteOrder": 4728, "time": 0.8347135332017459, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4848, "time": 0.855899155871841, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4747, + "noteOrder": 5064, "time": 0.8940332766780121, "position": { "x": 3, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4837, + "noteOrder": 5160, "time": 0.9109817748140882, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5085, + "noteOrder": 5424, "time": 0.9575901446882973, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5107, + "noteOrder": 5448, "time": 0.9618272692223162, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 6, @@ -1967,7 +1967,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 90, + "noteOrder": 96, "time": 0.016948498136076056, "position": { "x": 6, @@ -1990,7 +1990,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 6, @@ -2013,7 +2013,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 4, @@ -2036,7 +2036,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 4, @@ -2059,7 +2059,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 6, @@ -2082,7 +2082,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 6, @@ -2105,7 +2105,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 4, @@ -2128,7 +2128,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 4, @@ -2151,7 +2151,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 7, @@ -2174,7 +2174,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 7, @@ -2197,7 +2197,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 3, @@ -2220,7 +2220,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 3, @@ -2243,7 +2243,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 4, @@ -2266,7 +2266,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 4, @@ -2289,7 +2289,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 6, @@ -2312,7 +2312,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 6, @@ -2335,7 +2335,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 3, @@ -2358,7 +2358,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 3, @@ -2381,7 +2381,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 7, @@ -2404,7 +2404,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 7, @@ -2427,7 +2427,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 3, @@ -2450,7 +2450,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 3, @@ -2473,7 +2473,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 7, @@ -2496,7 +2496,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 7, @@ -2519,7 +2519,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1152, "time": 0.20338197763291269, "position": { "x": 7, @@ -2542,7 +2542,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 7, @@ -2565,7 +2565,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 6, @@ -2588,7 +2588,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 6, @@ -2611,7 +2611,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 5, @@ -2634,7 +2634,7 @@ { "lineGroupId": 38, "indexInLine": 6, - "noteOrder": 1131.0, + "noteOrder": 1206.0, "time": 0.21185622670095072, "position": { "x": 5, @@ -2657,7 +2657,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 7, @@ -2680,7 +2680,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 7, @@ -2703,7 +2703,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 6, @@ -2726,7 +2726,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 6, @@ -2749,7 +2749,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 5, @@ -2772,7 +2772,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1176.0, + "noteOrder": 1254.0, "time": 0.22033047576898876, "position": { "x": 5, @@ -2795,7 +2795,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 7, @@ -2818,7 +2818,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 7, @@ -2841,7 +2841,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 6, @@ -2864,7 +2864,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 6, @@ -2887,7 +2887,7 @@ { "lineGroupId": 40, "indexInLine": 5, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 5, @@ -2910,7 +2910,7 @@ { "lineGroupId": 40, "indexInLine": 6, - "noteOrder": 1221.0, + "noteOrder": 1302.0, "time": 0.2288047248370268, "position": { "x": 5, @@ -2933,7 +2933,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 7, @@ -2956,7 +2956,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 7, @@ -2979,7 +2979,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 6, @@ -3002,7 +3002,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 6, @@ -3025,7 +3025,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 5, @@ -3048,7 +3048,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1266.0, + "noteOrder": 1350.0, "time": 0.23727897390506483, "position": { "x": 5, @@ -3071,7 +3071,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 7, @@ -3094,7 +3094,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 7, @@ -3117,7 +3117,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 6, @@ -3140,7 +3140,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1288.0, + "noteOrder": 1374.0, "time": 0.2415160984390838, "position": { "x": 6, @@ -3163,7 +3163,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1305, + "noteOrder": 1392, "time": 0.24575322297310281, "position": { "x": 3, @@ -3186,7 +3186,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 3, @@ -3209,7 +3209,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 4, @@ -3232,7 +3232,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1333.0, + "noteOrder": 1422.0, "time": 0.24999034750712185, "position": { "x": 4, @@ -3255,7 +3255,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1536, "time": 0.2711759701772169, "position": { "x": 3, @@ -3278,7 +3278,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 3, @@ -3301,7 +3301,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 4, @@ -3324,7 +3324,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 4, @@ -3347,7 +3347,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 5, @@ -3370,7 +3370,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1491.0, + "noteOrder": 1590.0, "time": 0.27965021924525496, "position": { "x": 5, @@ -3393,7 +3393,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 3, @@ -3416,7 +3416,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 3, @@ -3439,7 +3439,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 4, @@ -3462,7 +3462,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 4, @@ -3485,7 +3485,7 @@ { "lineGroupId": 50, "indexInLine": 5, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 5, @@ -3508,7 +3508,7 @@ { "lineGroupId": 50, "indexInLine": 6, - "noteOrder": 1536.0, + "noteOrder": 1638.0, "time": 0.28812446831329297, "position": { "x": 5, @@ -3531,7 +3531,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 3, @@ -3554,7 +3554,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 3, @@ -3577,7 +3577,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 4, @@ -3600,7 +3600,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 4, @@ -3623,7 +3623,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 5, @@ -3646,7 +3646,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 1581.0, + "noteOrder": 1686.0, "time": 0.296598717381331, "position": { "x": 5, @@ -3669,7 +3669,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 3, @@ -3692,7 +3692,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 3, @@ -3715,7 +3715,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 4, @@ -3738,7 +3738,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 4, @@ -3761,7 +3761,7 @@ { "lineGroupId": 52, "indexInLine": 5, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 5, @@ -3784,7 +3784,7 @@ { "lineGroupId": 52, "indexInLine": 6, - "noteOrder": 1626.0, + "noteOrder": 1734.0, "time": 0.30507296644936904, "position": { "x": 5, @@ -3807,7 +3807,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 3, @@ -3830,7 +3830,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 3, @@ -3853,7 +3853,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 4, @@ -3876,7 +3876,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1648.0, + "noteOrder": 1758.0, "time": 0.309310090983388, "position": { "x": 4, @@ -3899,7 +3899,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1665, + "noteOrder": 1776, "time": 0.31354721551740705, "position": { "x": 7, @@ -3922,7 +3922,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 7, @@ -3945,7 +3945,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 6, @@ -3968,7 +3968,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1693.0, + "noteOrder": 1806.0, "time": 0.3177843400514261, "position": { "x": 6, @@ -3991,7 +3991,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 1920, "time": 0.33896996272152113, "position": { "x": 7, @@ -4014,7 +4014,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 7, @@ -4037,7 +4037,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1890, + "noteOrder": 2016, "time": 0.3559184608575972, "position": { "x": 3, @@ -4060,7 +4060,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 3, @@ -4083,7 +4083,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 7, @@ -4106,7 +4106,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 7, @@ -4129,7 +4129,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2070, + "noteOrder": 2208, "time": 0.38981545712974935, "position": { "x": 3, @@ -4152,7 +4152,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 3, @@ -4175,7 +4175,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2304, "time": 0.40676395526582537, "position": { "x": 7, @@ -4198,7 +4198,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 7, @@ -4221,7 +4221,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2250, + "noteOrder": 2400, "time": 0.42371245340190145, "position": { "x": 3, @@ -4244,7 +4244,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 3, @@ -4267,7 +4267,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 7, @@ -4290,7 +4290,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 7, @@ -4313,7 +4313,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2385, + "noteOrder": 2544, "time": 0.4491352006060155, "position": { "x": 3, @@ -4336,7 +4336,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 3, @@ -4359,7 +4359,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2430, + "noteOrder": 2592, "time": 0.4576094496740536, "position": { "x": 6, @@ -4382,7 +4382,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 6, @@ -4405,7 +4405,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 4, @@ -4428,7 +4428,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 4, @@ -4451,7 +4451,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 3, @@ -4474,7 +4474,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 3, @@ -4497,7 +4497,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 7, @@ -4520,7 +4520,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 7, @@ -4543,7 +4543,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 4, @@ -4566,7 +4566,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 4, @@ -4589,7 +4589,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 6, @@ -4612,7 +4612,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 6, @@ -4635,7 +4635,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 7, @@ -4658,7 +4658,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 7, @@ -4681,7 +4681,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 3, @@ -4704,7 +4704,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 3, @@ -4727,7 +4727,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 4, @@ -4750,7 +4750,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 4, @@ -4773,7 +4773,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 6, @@ -4796,7 +4796,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 6, @@ -4819,7 +4819,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 7, @@ -4842,7 +4842,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 7, @@ -4865,7 +4865,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 3, @@ -4888,7 +4888,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 3, @@ -4911,7 +4911,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 3, @@ -4934,7 +4934,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 3, @@ -4957,7 +4957,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 7, @@ -4980,7 +4980,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 7, @@ -5003,7 +5003,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3840, "time": 0.6779399254430423, "position": { "x": 3, @@ -5026,7 +5026,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 3, @@ -5049,7 +5049,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 4, @@ -5072,7 +5072,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 4, @@ -5095,7 +5095,7 @@ { "lineGroupId": 124, "indexInLine": 5, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 5, @@ -5118,7 +5118,7 @@ { "lineGroupId": 124, "indexInLine": 6, - "noteOrder": 3651.0, + "noteOrder": 3894.0, "time": 0.6864141745110803, "position": { "x": 5, @@ -5141,7 +5141,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 3, @@ -5164,7 +5164,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 3, @@ -5187,7 +5187,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 4, @@ -5210,7 +5210,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 4, @@ -5233,7 +5233,7 @@ { "lineGroupId": 125, "indexInLine": 5, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 5, @@ -5256,7 +5256,7 @@ { "lineGroupId": 125, "indexInLine": 6, - "noteOrder": 3696.0, + "noteOrder": 3942.0, "time": 0.6948884235791184, "position": { "x": 5, @@ -5279,7 +5279,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 3, @@ -5302,7 +5302,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3701, + "noteOrder": 3948, "time": 0.6970069858461279, "position": { "x": 3, @@ -5325,7 +5325,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3701, + "noteOrder": 3948, "time": 0.6970069858461279, "position": { "x": 4, @@ -5348,7 +5348,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3707.0, + "noteOrder": 3954.0, "time": 0.6970069858461279, "position": { "x": 4, @@ -5371,7 +5371,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 3, @@ -5394,7 +5394,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3972, "time": 0.7012441103801468, "position": { "x": 3, @@ -5417,7 +5417,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3724, + "noteOrder": 3972, "time": 0.7012441103801468, "position": { "x": 4, @@ -5440,7 +5440,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3730.0, + "noteOrder": 3978.0, "time": 0.7012441103801468, "position": { "x": 4, @@ -5463,7 +5463,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3735, + "noteOrder": 3984, "time": 0.7033626726471564, "position": { "x": 3, @@ -5486,7 +5486,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3746, + "noteOrder": 3996, "time": 0.7054812349141658, "position": { "x": 3, @@ -5509,7 +5509,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3746, + "noteOrder": 3996, "time": 0.7054812349141658, "position": { "x": 4, @@ -5532,7 +5532,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3752.0, + "noteOrder": 4002.0, "time": 0.7054812349141658, "position": { "x": 4, @@ -5555,7 +5555,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3757, + "noteOrder": 4008, "time": 0.7075997971811754, "position": { "x": 3, @@ -5578,7 +5578,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3769, + "noteOrder": 4020, "time": 0.7097183594481848, "position": { "x": 3, @@ -5601,7 +5601,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3769, + "noteOrder": 4020, "time": 0.7097183594481848, "position": { "x": 4, @@ -5624,7 +5624,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3775.0, + "noteOrder": 4026.0, "time": 0.7097183594481848, "position": { "x": 4, @@ -5647,7 +5647,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3870, + "noteOrder": 4128, "time": 0.7287854198512704, "position": { "x": 7, @@ -5670,7 +5670,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 7, @@ -5693,7 +5693,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 6, @@ -5716,7 +5716,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 3898.0, + "noteOrder": 4158.0, "time": 0.7330225443852895, "position": { "x": 6, @@ -5739,7 +5739,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 3, @@ -5762,7 +5762,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 3, @@ -5785,7 +5785,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 4, @@ -5808,7 +5808,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3943.0, + "noteOrder": 4206.0, "time": 0.7414967934533275, "position": { "x": 4, @@ -5831,7 +5831,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 4224, "time": 0.7457339179873466, "position": { "x": 7, @@ -5854,7 +5854,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 7, @@ -5877,7 +5877,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 6, @@ -5900,7 +5900,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 6, @@ -5923,7 +5923,7 @@ { "lineGroupId": 136, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 5, @@ -5946,7 +5946,7 @@ { "lineGroupId": 136, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 4278.0, "time": 0.7542081670553846, "position": { "x": 5, @@ -5969,7 +5969,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 7, @@ -5992,7 +5992,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 7, @@ -6015,7 +6015,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 6, @@ -6038,7 +6038,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 6, @@ -6061,7 +6061,7 @@ { "lineGroupId": 137, "indexInLine": 5, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 5, @@ -6084,7 +6084,7 @@ { "lineGroupId": 137, "indexInLine": 6, - "noteOrder": 4056.0, + "noteOrder": 4326.0, "time": 0.7626824161234226, "position": { "x": 5, @@ -6107,7 +6107,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 7, @@ -6130,7 +6130,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 4061, + "noteOrder": 4332, "time": 0.764800978390432, "position": { "x": 7, @@ -6153,7 +6153,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 4061, + "noteOrder": 4332, "time": 0.764800978390432, "position": { "x": 6, @@ -6176,7 +6176,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 4067.0, + "noteOrder": 4338.0, "time": 0.764800978390432, "position": { "x": 6, @@ -6199,7 +6199,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 7, @@ -6222,7 +6222,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4084, + "noteOrder": 4356, "time": 0.7690381029244511, "position": { "x": 7, @@ -6245,7 +6245,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 4084, + "noteOrder": 4356, "time": 0.7690381029244511, "position": { "x": 6, @@ -6268,7 +6268,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 4090.0, + "noteOrder": 4362.0, "time": 0.7690381029244511, "position": { "x": 6, @@ -6291,7 +6291,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 4095, + "noteOrder": 4368, "time": 0.7711566651914606, "position": { "x": 7, @@ -6314,7 +6314,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 4106, + "noteOrder": 4380, "time": 0.7732752274584701, "position": { "x": 7, @@ -6337,7 +6337,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 4106, + "noteOrder": 4380, "time": 0.7732752274584701, "position": { "x": 6, @@ -6360,7 +6360,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 4112.0, + "noteOrder": 4386.0, "time": 0.7732752274584701, "position": { "x": 6, @@ -6383,7 +6383,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4117, + "noteOrder": 4392, "time": 0.7753937897254797, "position": { "x": 7, @@ -6406,7 +6406,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4129, + "noteOrder": 4404, "time": 0.7775123519924891, "position": { "x": 7, @@ -6429,7 +6429,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 4129, + "noteOrder": 4404, "time": 0.7775123519924891, "position": { "x": 6, @@ -6452,7 +6452,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 4135.0, + "noteOrder": 4410.0, "time": 0.7775123519924891, "position": { "x": 6, @@ -6475,7 +6475,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 3, @@ -6498,7 +6498,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 3, @@ -6521,7 +6521,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 4, @@ -6544,7 +6544,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 4258.0, + "noteOrder": 4542.0, "time": 0.8008165369295938, "position": { "x": 4, @@ -6567,7 +6567,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4560, "time": 0.8050536614636128, "position": { "x": 7, @@ -6590,7 +6590,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 7, @@ -6613,7 +6613,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 6, @@ -6636,7 +6636,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 4303.0, + "noteOrder": 4590.0, "time": 0.8092907859976318, "position": { "x": 6, @@ -6659,7 +6659,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4608, "time": 0.8135279105316507, "position": { "x": 3, @@ -6682,7 +6682,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 3, @@ -6705,7 +6705,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 7, @@ -6728,7 +6728,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 7, @@ -6751,7 +6751,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 3, @@ -6774,7 +6774,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 3, @@ -6797,7 +6797,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 7, @@ -6820,7 +6820,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 7, @@ -6843,7 +6843,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4680, + "noteOrder": 4992, "time": 0.881321903075955, "position": { "x": 3, @@ -6866,7 +6866,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 3, @@ -6889,7 +6889,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 7, @@ -6912,7 +6912,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 7, @@ -6935,7 +6935,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 3, @@ -6958,7 +6958,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 3, @@ -6981,7 +6981,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4905, + "noteOrder": 5232, "time": 0.9236931484161451, "position": { "x": 7, @@ -7004,7 +7004,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 7, @@ -7027,7 +7027,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 158.5, + "noteOrder": 169.5, "time": 0.029659871738133104, "position": { "x": 5, @@ -7055,7 +7055,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 901.5, + "noteOrder": 961.5, "time": 0.16948498136076057, "position": { "x": 5, @@ -7083,7 +7083,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 946.5, + "noteOrder": 1009.5, "time": 0.1779592304287986, "position": { "x": 5, @@ -7111,7 +7111,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3421.5, + "noteOrder": 3649.5, "time": 0.6440429291708902, "position": { "x": 5, @@ -7139,7 +7139,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3466.5, + "noteOrder": 3697.5, "time": 0.6525171782389282, "position": { "x": 5, @@ -7167,7 +7167,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4951.5, + "noteOrder": 5281.5, "time": 0.9321673974841832, "position": { "x": 5, @@ -7195,7 +7195,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4996.5, + "noteOrder": 5329.5, "time": 0.9406416465522213, "position": { "x": 5, @@ -7223,7 +7223,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5041.5, + "noteOrder": 5377.5, "time": 0.9491158956202593, "position": { "x": 5, @@ -7264,7 +7264,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 120, + "BPM": 128, "NPS": "2.95", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b_blockless.json index 07a60b03..eee105d6 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "7 to Smoke difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 180, + "noteOrder": 192, "time": 0.03389699627215211, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 225, + "noteOrder": 240, "time": 0.04237124534019014, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 384, "time": 0.06779399254430422, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 405, + "noteOrder": 432, "time": 0.07626824161234226, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 540, + "noteOrder": 576, "time": 0.10169098881645634, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 585, + "noteOrder": 624, "time": 0.11016523788449438, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 630, + "noteOrder": 672, "time": 0.11863948695253242, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 696, "time": 0.12287661148655141, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 720, "time": 0.1271137360205704, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 697, + "noteOrder": 744, "time": 0.13135086055458944, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 768, "time": 0.13558798508860845, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 742, + "noteOrder": 792, "time": 0.13982510962262748, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 765, + "noteOrder": 816, "time": 0.14406223415664648, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 787, + "noteOrder": 840, "time": 0.1482993586906655, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 877, + "noteOrder": 936, "time": 0.16524785682674156, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 990, + "noteOrder": 1056, "time": 0.18643347949683664, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1012, + "noteOrder": 1080, "time": 0.19067060403085564, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1035, + "noteOrder": 1104, "time": 0.19490772856487468, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1057, + "noteOrder": 1128, "time": 0.19914485309889368, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1350, + "noteOrder": 1440, "time": 0.2542274720411408, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1464, "time": 0.25846459657515986, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1395, + "noteOrder": 1488, "time": 0.2627017211091789, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1417, + "noteOrder": 1512, "time": 0.2669388456431979, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1710, + "noteOrder": 1824, "time": 0.3220214645854451, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 1848, "time": 0.3262585891194641, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1755, + "noteOrder": 1872, "time": 0.3304957136534831, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1777, + "noteOrder": 1896, "time": 0.33473283818750216, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1867, + "noteOrder": 1992, "time": 0.3516813363235782, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1957, + "noteOrder": 2088, "time": 0.36862983445965425, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2160, "time": 0.3813412080617113, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2256, "time": 0.39828970619778736, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2182, + "noteOrder": 2328, "time": 0.4110010797998444, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2272, + "noteOrder": 2424, "time": 0.4279495779359205, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2688, "time": 0.47455794781012967, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2542, + "noteOrder": 2712, "time": 0.47879507234414864, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2565, + "noteOrder": 2736, "time": 0.4830321968781676, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2587, + "noteOrder": 2760, "time": 0.4872693214121866, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2677, + "noteOrder": 2856, "time": 0.5042178195482627, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2880, "time": 0.5084549440822816, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2745, + "noteOrder": 2928, "time": 0.5169291931503197, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 3072, "time": 0.5423519403544338, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2925, + "noteOrder": 3120, "time": 0.5508261894224719, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3060, + "noteOrder": 3264, "time": 0.5762489366265859, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3312, "time": 0.584723185694624, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3360, "time": 0.593197434762662, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3172, + "noteOrder": 3384, "time": 0.597434559296681, "position": { "x": 7, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3195, + "noteOrder": 3408, "time": 0.6016716838307, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3217, + "noteOrder": 3432, "time": 0.605908808364719, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3456, "time": 0.6101459328987381, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3262, + "noteOrder": 3480, "time": 0.6143830574327571, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3285, + "noteOrder": 3504, "time": 0.618620181966776, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3307, + "noteOrder": 3528, "time": 0.6228573065007951, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3397, + "noteOrder": 3624, "time": 0.6398058046368712, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3510, + "noteOrder": 3744, "time": 0.6609914273069663, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3532, + "noteOrder": 3768, "time": 0.6652285518409853, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3555, + "noteOrder": 3792, "time": 0.6694656763750043, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3577, + "noteOrder": 3816, "time": 0.6737028009090232, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3780, + "noteOrder": 4032, "time": 0.7118369217151944, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3802, + "noteOrder": 4056, "time": 0.7160740462492134, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3825, + "noteOrder": 4080, "time": 0.7203111707832325, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3847, + "noteOrder": 4104, "time": 0.7245482953172515, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4416, "time": 0.7796309142594987, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4162, + "noteOrder": 4440, "time": 0.7838680387935176, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4185, + "noteOrder": 4464, "time": 0.7881051633275367, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4207, + "noteOrder": 4488, "time": 0.7923422878615557, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4342, + "noteOrder": 4632, "time": 0.8177650350656698, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4432, + "noteOrder": 4728, "time": 0.8347135332017459, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4848, "time": 0.855899155871841, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4635, + "noteOrder": 4944, "time": 0.872847654007917, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4747, + "noteOrder": 5064, "time": 0.8940332766780121, "position": { "x": 3, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4837, + "noteOrder": 5160, "time": 0.9109817748140882, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5085, + "noteOrder": 5424, "time": 0.9575901446882973, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5107, + "noteOrder": 5448, "time": 0.9618272692223162, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5130, + "noteOrder": 5472, "time": 0.9660643937563352, "position": { "x": 6, @@ -1967,7 +1967,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 90, + "noteOrder": 96, "time": 0.016948498136076056, "position": { "x": 6, @@ -1990,7 +1990,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 6, @@ -2013,7 +2013,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 135, + "noteOrder": 144, "time": 0.025422747204114086, "position": { "x": 4, @@ -2036,7 +2036,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 157, + "noteOrder": 168, "time": 0.029659871738133104, "position": { "x": 4, @@ -2059,7 +2059,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 6, @@ -2082,7 +2082,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 6, @@ -2105,7 +2105,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 270, + "noteOrder": 288, "time": 0.05084549440822817, "position": { "x": 4, @@ -2128,7 +2128,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 292, + "noteOrder": 312, "time": 0.05508261894224719, "position": { "x": 4, @@ -2151,7 +2151,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 7, @@ -2174,7 +2174,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 7, @@ -2197,7 +2197,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 315, + "noteOrder": 336, "time": 0.05931974347626621, "position": { "x": 3, @@ -2220,7 +2220,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 337, + "noteOrder": 360, "time": 0.0635568680102852, "position": { "x": 3, @@ -2243,7 +2243,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 4, @@ -2266,7 +2266,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 4, @@ -2289,7 +2289,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 450, + "noteOrder": 480, "time": 0.08474249068038028, "position": { "x": 6, @@ -2312,7 +2312,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 472, + "noteOrder": 504, "time": 0.0889796152143993, "position": { "x": 6, @@ -2335,7 +2335,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 3, @@ -2358,7 +2358,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 3, @@ -2381,7 +2381,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 495, + "noteOrder": 528, "time": 0.09321673974841832, "position": { "x": 7, @@ -2404,7 +2404,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 552, "time": 0.09745386428243734, "position": { "x": 7, @@ -2427,7 +2427,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 3, @@ -2450,7 +2450,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 3, @@ -2473,7 +2473,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 810, + "noteOrder": 864, "time": 0.15253648322468452, "position": { "x": 7, @@ -2496,7 +2496,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 855, + "noteOrder": 912, "time": 0.16101073229272256, "position": { "x": 7, @@ -2519,7 +2519,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1152, "time": 0.20338197763291269, "position": { "x": 7, @@ -2542,7 +2542,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 7, @@ -2565,7 +2565,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1102, + "noteOrder": 1176, "time": 0.20761910216693172, "position": { "x": 6, @@ -2588,7 +2588,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 6, @@ -2611,7 +2611,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 5, @@ -2634,7 +2634,7 @@ { "lineGroupId": 38, "indexInLine": 6, - "noteOrder": 1131.0, + "noteOrder": 1206.0, "time": 0.21185622670095072, "position": { "x": 5, @@ -2657,7 +2657,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1125, + "noteOrder": 1200, "time": 0.21185622670095072, "position": { "x": 7, @@ -2680,7 +2680,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 7, @@ -2703,7 +2703,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1147, + "noteOrder": 1224, "time": 0.21609335123496975, "position": { "x": 6, @@ -2726,7 +2726,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 6, @@ -2749,7 +2749,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 5, @@ -2772,7 +2772,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1176.0, + "noteOrder": 1254.0, "time": 0.22033047576898876, "position": { "x": 5, @@ -2795,7 +2795,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1170, + "noteOrder": 1248, "time": 0.22033047576898876, "position": { "x": 7, @@ -2818,7 +2818,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 7, @@ -2841,7 +2841,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1192, + "noteOrder": 1272, "time": 0.22456760030300776, "position": { "x": 6, @@ -2864,7 +2864,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 6, @@ -2887,7 +2887,7 @@ { "lineGroupId": 40, "indexInLine": 5, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 5, @@ -2910,7 +2910,7 @@ { "lineGroupId": 40, "indexInLine": 6, - "noteOrder": 1221.0, + "noteOrder": 1302.0, "time": 0.2288047248370268, "position": { "x": 5, @@ -2933,7 +2933,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1215, + "noteOrder": 1296, "time": 0.2288047248370268, "position": { "x": 7, @@ -2956,7 +2956,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 7, @@ -2979,7 +2979,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1237, + "noteOrder": 1320, "time": 0.2330418493710458, "position": { "x": 6, @@ -3002,7 +3002,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 6, @@ -3025,7 +3025,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 5, @@ -3048,7 +3048,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1266.0, + "noteOrder": 1350.0, "time": 0.23727897390506483, "position": { "x": 5, @@ -3071,7 +3071,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1260, + "noteOrder": 1344, "time": 0.23727897390506483, "position": { "x": 7, @@ -3094,7 +3094,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 7, @@ -3117,7 +3117,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1282, + "noteOrder": 1368, "time": 0.2415160984390838, "position": { "x": 6, @@ -3140,7 +3140,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1288.0, + "noteOrder": 1374.0, "time": 0.2415160984390838, "position": { "x": 6, @@ -3163,7 +3163,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1305, + "noteOrder": 1392, "time": 0.24575322297310281, "position": { "x": 3, @@ -3186,7 +3186,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 3, @@ -3209,7 +3209,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1327, + "noteOrder": 1416, "time": 0.24999034750712185, "position": { "x": 4, @@ -3232,7 +3232,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1333.0, + "noteOrder": 1422.0, "time": 0.24999034750712185, "position": { "x": 4, @@ -3255,7 +3255,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1536, "time": 0.2711759701772169, "position": { "x": 3, @@ -3278,7 +3278,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 3, @@ -3301,7 +3301,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1462, + "noteOrder": 1560, "time": 0.27541309471123593, "position": { "x": 4, @@ -3324,7 +3324,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 4, @@ -3347,7 +3347,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 5, @@ -3370,7 +3370,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1491.0, + "noteOrder": 1590.0, "time": 0.27965021924525496, "position": { "x": 5, @@ -3393,7 +3393,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1485, + "noteOrder": 1584, "time": 0.27965021924525496, "position": { "x": 3, @@ -3416,7 +3416,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 3, @@ -3439,7 +3439,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1507, + "noteOrder": 1608, "time": 0.28388734377927394, "position": { "x": 4, @@ -3462,7 +3462,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 4, @@ -3485,7 +3485,7 @@ { "lineGroupId": 50, "indexInLine": 5, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 5, @@ -3508,7 +3508,7 @@ { "lineGroupId": 50, "indexInLine": 6, - "noteOrder": 1536.0, + "noteOrder": 1638.0, "time": 0.28812446831329297, "position": { "x": 5, @@ -3531,7 +3531,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1530, + "noteOrder": 1632, "time": 0.28812446831329297, "position": { "x": 3, @@ -3554,7 +3554,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 3, @@ -3577,7 +3577,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1552, + "noteOrder": 1656, "time": 0.292361592847312, "position": { "x": 4, @@ -3600,7 +3600,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 4, @@ -3623,7 +3623,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 5, @@ -3646,7 +3646,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 1581.0, + "noteOrder": 1686.0, "time": 0.296598717381331, "position": { "x": 5, @@ -3669,7 +3669,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1575, + "noteOrder": 1680, "time": 0.296598717381331, "position": { "x": 3, @@ -3692,7 +3692,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 3, @@ -3715,7 +3715,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1597, + "noteOrder": 1704, "time": 0.30083584191535, "position": { "x": 4, @@ -3738,7 +3738,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 4, @@ -3761,7 +3761,7 @@ { "lineGroupId": 52, "indexInLine": 5, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 5, @@ -3784,7 +3784,7 @@ { "lineGroupId": 52, "indexInLine": 6, - "noteOrder": 1626.0, + "noteOrder": 1734.0, "time": 0.30507296644936904, "position": { "x": 5, @@ -3807,7 +3807,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1620, + "noteOrder": 1728, "time": 0.30507296644936904, "position": { "x": 3, @@ -3830,7 +3830,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 3, @@ -3853,7 +3853,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1642, + "noteOrder": 1752, "time": 0.309310090983388, "position": { "x": 4, @@ -3876,7 +3876,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1648.0, + "noteOrder": 1758.0, "time": 0.309310090983388, "position": { "x": 4, @@ -3899,7 +3899,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1665, + "noteOrder": 1776, "time": 0.31354721551740705, "position": { "x": 7, @@ -3922,7 +3922,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 7, @@ -3945,7 +3945,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1687, + "noteOrder": 1800, "time": 0.3177843400514261, "position": { "x": 6, @@ -3968,7 +3968,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1693.0, + "noteOrder": 1806.0, "time": 0.3177843400514261, "position": { "x": 6, @@ -3991,7 +3991,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 1920, "time": 0.33896996272152113, "position": { "x": 7, @@ -4014,7 +4014,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1845, + "noteOrder": 1968, "time": 0.3474442117895592, "position": { "x": 7, @@ -4037,7 +4037,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1890, + "noteOrder": 2016, "time": 0.3559184608575972, "position": { "x": 3, @@ -4060,7 +4060,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1935, + "noteOrder": 2064, "time": 0.3643927099256352, "position": { "x": 3, @@ -4083,7 +4083,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1980, + "noteOrder": 2112, "time": 0.3728669589936733, "position": { "x": 7, @@ -4106,7 +4106,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2047, + "noteOrder": 2184, "time": 0.3855783325957303, "position": { "x": 7, @@ -4129,7 +4129,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2070, + "noteOrder": 2208, "time": 0.38981545712974935, "position": { "x": 3, @@ -4152,7 +4152,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2280, "time": 0.4025268307318064, "position": { "x": 3, @@ -4175,7 +4175,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2304, "time": 0.40676395526582537, "position": { "x": 7, @@ -4198,7 +4198,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2227, + "noteOrder": 2376, "time": 0.41947532886788247, "position": { "x": 7, @@ -4221,7 +4221,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2250, + "noteOrder": 2400, "time": 0.42371245340190145, "position": { "x": 3, @@ -4244,7 +4244,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2317, + "noteOrder": 2472, "time": 0.4364238270039585, "position": { "x": 3, @@ -4267,7 +4267,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2340, + "noteOrder": 2496, "time": 0.4406609515379775, "position": { "x": 7, @@ -4290,7 +4290,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2362, + "noteOrder": 2520, "time": 0.44489807607199655, "position": { "x": 7, @@ -4313,7 +4313,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2385, + "noteOrder": 2544, "time": 0.4491352006060155, "position": { "x": 3, @@ -4336,7 +4336,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2407, + "noteOrder": 2568, "time": 0.45337232514003456, "position": { "x": 3, @@ -4359,7 +4359,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2430, + "noteOrder": 2592, "time": 0.4576094496740536, "position": { "x": 6, @@ -4382,7 +4382,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 6, @@ -4405,7 +4405,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2475, + "noteOrder": 2640, "time": 0.4660836987420916, "position": { "x": 4, @@ -4428,7 +4428,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2497, + "noteOrder": 2664, "time": 0.47032082327611063, "position": { "x": 4, @@ -4451,7 +4451,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 3, @@ -4474,7 +4474,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 3, @@ -4497,7 +4497,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2610, + "noteOrder": 2784, "time": 0.49150644594620563, "position": { "x": 7, @@ -4520,7 +4520,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2655, + "noteOrder": 2832, "time": 0.4999806950142437, "position": { "x": 7, @@ -4543,7 +4543,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 4, @@ -4566,7 +4566,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 4, @@ -4589,7 +4589,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2790, + "noteOrder": 2976, "time": 0.5254034422183578, "position": { "x": 6, @@ -4612,7 +4612,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 3000, "time": 0.5296405667523768, "position": { "x": 6, @@ -4635,7 +4635,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 7, @@ -4658,7 +4658,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 7, @@ -4681,7 +4681,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2835, + "noteOrder": 3024, "time": 0.5338776912863958, "position": { "x": 3, @@ -4704,7 +4704,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2857, + "noteOrder": 3048, "time": 0.5381148158204148, "position": { "x": 3, @@ -4727,7 +4727,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 4, @@ -4750,7 +4750,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 4, @@ -4773,7 +4773,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2970, + "noteOrder": 3168, "time": 0.5593004384905099, "position": { "x": 6, @@ -4796,7 +4796,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2992, + "noteOrder": 3192, "time": 0.5635375630245288, "position": { "x": 6, @@ -4819,7 +4819,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 7, @@ -4842,7 +4842,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 7, @@ -4865,7 +4865,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 3015, + "noteOrder": 3216, "time": 0.5677746875585479, "position": { "x": 3, @@ -4888,7 +4888,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 3037, + "noteOrder": 3240, "time": 0.5720118120925669, "position": { "x": 3, @@ -4911,7 +4911,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 3, @@ -4934,7 +4934,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 3, @@ -4957,7 +4957,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3330, + "noteOrder": 3552, "time": 0.6270944310348141, "position": { "x": 7, @@ -4980,7 +4980,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3600, "time": 0.6355686801028522, "position": { "x": 7, @@ -5003,7 +5003,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3840, "time": 0.6779399254430423, "position": { "x": 3, @@ -5026,7 +5026,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 3, @@ -5049,7 +5049,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 3622, + "noteOrder": 3864, "time": 0.6821770499770613, "position": { "x": 4, @@ -5072,7 +5072,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 4, @@ -5095,7 +5095,7 @@ { "lineGroupId": 124, "indexInLine": 5, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 5, @@ -5118,7 +5118,7 @@ { "lineGroupId": 124, "indexInLine": 6, - "noteOrder": 3651.0, + "noteOrder": 3894.0, "time": 0.6864141745110803, "position": { "x": 5, @@ -5141,7 +5141,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3645, + "noteOrder": 3888, "time": 0.6864141745110803, "position": { "x": 3, @@ -5164,7 +5164,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 3, @@ -5187,7 +5187,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3667, + "noteOrder": 3912, "time": 0.6906512990450994, "position": { "x": 4, @@ -5210,7 +5210,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 4, @@ -5233,7 +5233,7 @@ { "lineGroupId": 125, "indexInLine": 5, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 5, @@ -5256,7 +5256,7 @@ { "lineGroupId": 125, "indexInLine": 6, - "noteOrder": 3696.0, + "noteOrder": 3942.0, "time": 0.6948884235791184, "position": { "x": 5, @@ -5279,7 +5279,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3690, + "noteOrder": 3936, "time": 0.6948884235791184, "position": { "x": 3, @@ -5302,7 +5302,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3701, + "noteOrder": 3948, "time": 0.6970069858461279, "position": { "x": 3, @@ -5325,7 +5325,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3701, + "noteOrder": 3948, "time": 0.6970069858461279, "position": { "x": 4, @@ -5348,7 +5348,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3707.0, + "noteOrder": 3954.0, "time": 0.6970069858461279, "position": { "x": 4, @@ -5371,7 +5371,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3712, + "noteOrder": 3960, "time": 0.6991255481131374, "position": { "x": 3, @@ -5394,7 +5394,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3972, "time": 0.7012441103801468, "position": { "x": 3, @@ -5417,7 +5417,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3724, + "noteOrder": 3972, "time": 0.7012441103801468, "position": { "x": 4, @@ -5440,7 +5440,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3730.0, + "noteOrder": 3978.0, "time": 0.7012441103801468, "position": { "x": 4, @@ -5463,7 +5463,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3735, + "noteOrder": 3984, "time": 0.7033626726471564, "position": { "x": 3, @@ -5486,7 +5486,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3746, + "noteOrder": 3996, "time": 0.7054812349141658, "position": { "x": 3, @@ -5509,7 +5509,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3746, + "noteOrder": 3996, "time": 0.7054812349141658, "position": { "x": 4, @@ -5532,7 +5532,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3752.0, + "noteOrder": 4002.0, "time": 0.7054812349141658, "position": { "x": 4, @@ -5555,7 +5555,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3757, + "noteOrder": 4008, "time": 0.7075997971811754, "position": { "x": 3, @@ -5578,7 +5578,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3769, + "noteOrder": 4020, "time": 0.7097183594481848, "position": { "x": 3, @@ -5601,7 +5601,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3769, + "noteOrder": 4020, "time": 0.7097183594481848, "position": { "x": 4, @@ -5624,7 +5624,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3775.0, + "noteOrder": 4026.0, "time": 0.7097183594481848, "position": { "x": 4, @@ -5647,7 +5647,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3870, + "noteOrder": 4128, "time": 0.7287854198512704, "position": { "x": 7, @@ -5670,7 +5670,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 7, @@ -5693,7 +5693,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 3892, + "noteOrder": 4152, "time": 0.7330225443852895, "position": { "x": 6, @@ -5716,7 +5716,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 3898.0, + "noteOrder": 4158.0, "time": 0.7330225443852895, "position": { "x": 6, @@ -5739,7 +5739,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3915, + "noteOrder": 4176, "time": 0.7372596689193085, "position": { "x": 3, @@ -5762,7 +5762,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 3, @@ -5785,7 +5785,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3937, + "noteOrder": 4200, "time": 0.7414967934533275, "position": { "x": 4, @@ -5808,7 +5808,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3943.0, + "noteOrder": 4206.0, "time": 0.7414967934533275, "position": { "x": 4, @@ -5831,7 +5831,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 4224, "time": 0.7457339179873466, "position": { "x": 7, @@ -5854,7 +5854,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 7, @@ -5877,7 +5877,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 3982, + "noteOrder": 4248, "time": 0.7499710425213656, "position": { "x": 6, @@ -5900,7 +5900,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 6, @@ -5923,7 +5923,7 @@ { "lineGroupId": 136, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 5, @@ -5946,7 +5946,7 @@ { "lineGroupId": 136, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 4278.0, "time": 0.7542081670553846, "position": { "x": 5, @@ -5969,7 +5969,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 4272, "time": 0.7542081670553846, "position": { "x": 7, @@ -5992,7 +5992,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 7, @@ -6015,7 +6015,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 4027, + "noteOrder": 4296, "time": 0.7584452915894035, "position": { "x": 6, @@ -6038,7 +6038,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 6, @@ -6061,7 +6061,7 @@ { "lineGroupId": 137, "indexInLine": 5, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 5, @@ -6084,7 +6084,7 @@ { "lineGroupId": 137, "indexInLine": 6, - "noteOrder": 4056.0, + "noteOrder": 4326.0, "time": 0.7626824161234226, "position": { "x": 5, @@ -6107,7 +6107,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 4050, + "noteOrder": 4320, "time": 0.7626824161234226, "position": { "x": 7, @@ -6130,7 +6130,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 4061, + "noteOrder": 4332, "time": 0.764800978390432, "position": { "x": 7, @@ -6153,7 +6153,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 4061, + "noteOrder": 4332, "time": 0.764800978390432, "position": { "x": 6, @@ -6176,7 +6176,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 4067.0, + "noteOrder": 4338.0, "time": 0.764800978390432, "position": { "x": 6, @@ -6199,7 +6199,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4072, + "noteOrder": 4344, "time": 0.7669195406574416, "position": { "x": 7, @@ -6222,7 +6222,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4084, + "noteOrder": 4356, "time": 0.7690381029244511, "position": { "x": 7, @@ -6245,7 +6245,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 4084, + "noteOrder": 4356, "time": 0.7690381029244511, "position": { "x": 6, @@ -6268,7 +6268,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 4090.0, + "noteOrder": 4362.0, "time": 0.7690381029244511, "position": { "x": 6, @@ -6291,7 +6291,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 4095, + "noteOrder": 4368, "time": 0.7711566651914606, "position": { "x": 7, @@ -6314,7 +6314,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 4106, + "noteOrder": 4380, "time": 0.7732752274584701, "position": { "x": 7, @@ -6337,7 +6337,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 4106, + "noteOrder": 4380, "time": 0.7732752274584701, "position": { "x": 6, @@ -6360,7 +6360,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 4112.0, + "noteOrder": 4386.0, "time": 0.7732752274584701, "position": { "x": 6, @@ -6383,7 +6383,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4117, + "noteOrder": 4392, "time": 0.7753937897254797, "position": { "x": 7, @@ -6406,7 +6406,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4129, + "noteOrder": 4404, "time": 0.7775123519924891, "position": { "x": 7, @@ -6429,7 +6429,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 4129, + "noteOrder": 4404, "time": 0.7775123519924891, "position": { "x": 6, @@ -6452,7 +6452,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 4135.0, + "noteOrder": 4410.0, "time": 0.7775123519924891, "position": { "x": 6, @@ -6475,7 +6475,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4512, "time": 0.7965794123955747, "position": { "x": 3, @@ -6498,7 +6498,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 3, @@ -6521,7 +6521,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 4252, + "noteOrder": 4536, "time": 0.8008165369295938, "position": { "x": 4, @@ -6544,7 +6544,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 4258.0, + "noteOrder": 4542.0, "time": 0.8008165369295938, "position": { "x": 4, @@ -6567,7 +6567,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4560, "time": 0.8050536614636128, "position": { "x": 7, @@ -6590,7 +6590,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 7, @@ -6613,7 +6613,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 4297, + "noteOrder": 4584, "time": 0.8092907859976318, "position": { "x": 6, @@ -6636,7 +6636,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 4303.0, + "noteOrder": 4590.0, "time": 0.8092907859976318, "position": { "x": 6, @@ -6659,7 +6659,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4608, "time": 0.8135279105316507, "position": { "x": 3, @@ -6682,7 +6682,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 4387, + "noteOrder": 4680, "time": 0.8262392841337078, "position": { "x": 3, @@ -6705,7 +6705,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4410, + "noteOrder": 4704, "time": 0.8304764086677269, "position": { "x": 7, @@ -6728,7 +6728,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4477, + "noteOrder": 4776, "time": 0.8431877822697839, "position": { "x": 7, @@ -6751,7 +6751,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4500, + "noteOrder": 4800, "time": 0.8474249068038029, "position": { "x": 3, @@ -6774,7 +6774,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4567, + "noteOrder": 4872, "time": 0.86013628040586, "position": { "x": 3, @@ -6797,7 +6797,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4590, + "noteOrder": 4896, "time": 0.864373404939879, "position": { "x": 7, @@ -6820,7 +6820,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4657, + "noteOrder": 4968, "time": 0.877084778541936, "position": { "x": 7, @@ -6843,7 +6843,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4680, + "noteOrder": 4992, "time": 0.881321903075955, "position": { "x": 3, @@ -6866,7 +6866,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 5040, "time": 0.8897961521439931, "position": { "x": 3, @@ -6889,7 +6889,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4770, + "noteOrder": 5088, "time": 0.898270401212031, "position": { "x": 7, @@ -6912,7 +6912,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4815, + "noteOrder": 5136, "time": 0.9067446502800691, "position": { "x": 7, @@ -6935,7 +6935,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4860, + "noteOrder": 5184, "time": 0.9152188993481072, "position": { "x": 3, @@ -6958,7 +6958,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4882, + "noteOrder": 5208, "time": 0.9194560238821262, "position": { "x": 3, @@ -6981,7 +6981,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4905, + "noteOrder": 5232, "time": 0.9236931484161451, "position": { "x": 7, @@ -7004,7 +7004,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4927, + "noteOrder": 5256, "time": 0.9279302729501642, "position": { "x": 7, @@ -7039,7 +7039,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 120, + "BPM": 128, "NPS": "2.95", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/info.json b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/info.json index 12cad7f3..aa76064c 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/7 to Smoke/info.json @@ -3,7 +3,7 @@ "SongName": "7 to Smoke", "SongLength": "110.628458", "SongAuthorName": "lapix", - "Bpm": "120", + "Bpm": "128", "SongPath": "272.ogg", "CreateTicks": 637631136000000000, "CreateTime": "637631136000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a.json index fb546275..72c7e751 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "Crystal Clear difficulty_1a", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021098045217275582, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.029537263304185813, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 190, "time": 0.03375687234764093, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03797648139109605, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.046415699478006285, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.046415699478006285, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05485491756491652, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06329413565182675, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 381, "time": 0.06751374469528186, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 405, "time": 0.07173335373873699, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 571, "time": 0.1012706170429228, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 595, "time": 0.10549022608637791, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 643, "time": 0.11392944417328815, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13502748939056372, "position": { "x": 3, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.13924709843401883, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.14768631652092906, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 881, "time": 0.15612553460783932, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 905, "time": 0.1603451436512944, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.16456475269474954, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.18144318886857, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.18988240695548023, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19410201599893537, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.19832162504239048, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.2067608431293007, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.21520006121621094, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.21520006121621094, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.2278588883465763, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.24473732452039676, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.3924236410413259, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.40086285912823605, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3166, "time": 0.5612080027795304, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5654276118229856, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5696472208664407, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.578086438953351, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5865256570402613, "position": { "x": 5, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6076237022575368, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6118433113009919, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.6202825293879021, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.6202825293879021, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6245021384313573, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6287217474748124, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6329413565182674, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6413805746051776, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.6456001836486328, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.649819792692088, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6582590107789982, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6624786198224533, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6666982288659085, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6709178379093635, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6751374469528186, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6793570559962738, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.687796274083184, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.687796274083184, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.7278825599960076, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7299923645177352, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7321021690394628, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7342119735611903, "position": { "x": 7, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7363217780829178, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4178, "time": 0.740541387126373, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4524, + "noteOrder": 4488, "time": 0.7953963046912895, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.797506109213017, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4548, + "noteOrder": 4512, "time": 0.7996159137347445, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8017257182564721, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4572, + "noteOrder": 4535, "time": 0.8038355227781997, "position": { "x": 5, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 4559, "time": 0.8080551318216548, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 7, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 3, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.8608002448648437, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 4904, "time": 0.869239462951754, "position": { "x": 3, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 4, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8776786810386643, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.8818982900821193, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.8861178991255745, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 3, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 3, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.945192425733946, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 5357, "time": 0.9494120347774012, "position": { "x": 7, @@ -2607,7 +2607,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.016878436173820465, "position": { "x": 7, @@ -2630,7 +2630,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 120, + "noteOrder": 119, "time": 0.021098045217275582, "position": { "x": 7, @@ -2653,7 +2653,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 143, "time": 0.0253176542607307, "position": { "x": 3, @@ -2676,7 +2676,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 167, "time": 0.029537263304185813, "position": { "x": 3, @@ -2699,7 +2699,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 286, "time": 0.0506353085214614, "position": { "x": 3, @@ -2722,7 +2722,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 310, "time": 0.05485491756491652, "position": { "x": 3, @@ -2745,7 +2745,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 333, "time": 0.059074526608371626, "position": { "x": 7, @@ -2768,7 +2768,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 360, + "noteOrder": 357, "time": 0.06329413565182675, "position": { "x": 7, @@ -2791,7 +2791,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 4, @@ -2814,7 +2814,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 452, "time": 0.0801725718256472, "position": { "x": 4, @@ -2837,7 +2837,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 6, @@ -2860,7 +2860,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 452, "time": 0.0801725718256472, "position": { "x": 6, @@ -2883,7 +2883,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08439218086910233, "position": { "x": 7, @@ -2906,7 +2906,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 492, + "noteOrder": 488, "time": 0.0865019853908299, "position": { "x": 6, @@ -2929,7 +2929,7 @@ { "lineGroupId": 20, "indexInLine": 3, - "noteOrder": 504, + "noteOrder": 500, "time": 0.08861178991255744, "position": { "x": 6, @@ -2952,7 +2952,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 504, + "noteOrder": 500, "time": 0.08861178991255744, "position": { "x": 3, @@ -2975,7 +2975,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 512, "time": 0.090721594434285, "position": { "x": 4, @@ -2998,7 +2998,7 @@ { "lineGroupId": 21, "indexInLine": 3, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 4, @@ -3021,7 +3021,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 7, @@ -3044,7 +3044,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 536, "time": 0.09494120347774011, "position": { "x": 6, @@ -3067,7 +3067,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09705100799946768, "position": { "x": 6, @@ -3090,7 +3090,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09705100799946768, "position": { "x": 3, @@ -3113,7 +3113,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 564, + "noteOrder": 559, "time": 0.09916081252119524, "position": { "x": 4, @@ -3136,7 +3136,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 667, "time": 0.11814905321674325, "position": { "x": 3, @@ -3159,7 +3159,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 684, + "noteOrder": 679, "time": 0.12025885773847082, "position": { "x": 4, @@ -3182,7 +3182,7 @@ { "lineGroupId": 28, "indexInLine": 3, - "noteOrder": 696, + "noteOrder": 690, "time": 0.12236866226019838, "position": { "x": 4, @@ -3205,7 +3205,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 696, + "noteOrder": 690, "time": 0.12236866226019838, "position": { "x": 7, @@ -3228,7 +3228,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 702, "time": 0.12447846678192594, "position": { "x": 6, @@ -3251,7 +3251,7 @@ { "lineGroupId": 29, "indexInLine": 3, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 6, @@ -3274,7 +3274,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 3, @@ -3297,7 +3297,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 732, + "noteOrder": 726, "time": 0.12869807582538106, "position": { "x": 4, @@ -3320,7 +3320,7 @@ { "lineGroupId": 30, "indexInLine": 3, - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 4, @@ -3343,7 +3343,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 7, @@ -3366,7 +3366,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 756, + "noteOrder": 750, "time": 0.13291768486883618, "position": { "x": 6, @@ -3389,7 +3389,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.1519059255643842, "position": { "x": 3, @@ -3412,7 +3412,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 3, @@ -3435,7 +3435,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 7, @@ -3458,7 +3458,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 964, "time": 0.1708941662599322, "position": { "x": 7, @@ -3481,7 +3481,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 964, "time": 0.1708941662599322, "position": { "x": 6, @@ -3504,7 +3504,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 970.0, "time": 0.1708941662599322, "position": { "x": 6, @@ -3527,7 +3527,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 976, "time": 0.1730039707816598, "position": { "x": 3, @@ -3550,7 +3550,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17511377530338734, "position": { "x": 3, @@ -3573,7 +3573,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17511377530338734, "position": { "x": 4, @@ -3596,7 +3596,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1002.0, + "noteOrder": 994.0, "time": 0.17511377530338734, "position": { "x": 4, @@ -3619,7 +3619,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18566279791202514, "position": { "x": 7, @@ -3642,7 +3642,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 7, @@ -3665,7 +3665,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.21941967025966608, "position": { "x": 3, @@ -3688,7 +3688,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 3, @@ -3711,7 +3711,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 6, @@ -3734,7 +3734,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 7, @@ -3757,7 +3757,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 7, @@ -3780,7 +3780,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 4, @@ -3803,7 +3803,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 3, @@ -3826,7 +3826,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 3, @@ -3849,7 +3849,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.2616157606942172, "position": { "x": 7, @@ -3872,7 +3872,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 7, @@ -3895,7 +3895,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.27005497878112744, "position": { "x": 3, @@ -3918,7 +3918,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.27216478330285504, "position": { "x": 3, @@ -3941,7 +3941,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.27216478330285504, "position": { "x": 4, @@ -3964,7 +3964,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1554.0, + "noteOrder": 1542.0, "time": 0.27216478330285504, "position": { "x": 4, @@ -3987,7 +3987,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2742745878245826, "position": { "x": 7, @@ -4010,7 +4010,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.2763843923463101, "position": { "x": 7, @@ -4033,7 +4033,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.2763843923463101, "position": { "x": 6, @@ -4056,7 +4056,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.2763843923463101, "position": { "x": 6, @@ -4079,7 +4079,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 3, @@ -4102,7 +4102,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2806040013897652, "position": { "x": 3, @@ -4125,7 +4125,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2806040013897652, "position": { "x": 4, @@ -4148,7 +4148,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 4, @@ -4171,7 +4171,7 @@ { "lineGroupId": 68, "indexInLine": 5, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 3, @@ -4194,7 +4194,7 @@ { "lineGroupId": 68, "indexInLine": 6, - "noteOrder": 1614.0, + "noteOrder": 1601.0, "time": 0.2827138059114928, "position": { "x": 3, @@ -4217,7 +4217,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.28693341495494795, "position": { "x": 7, @@ -4240,7 +4240,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1644, + "noteOrder": 1631, "time": 0.2890432194766755, "position": { "x": 7, @@ -4263,7 +4263,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 1644, + "noteOrder": 1631, "time": 0.2890432194766755, "position": { "x": 6, @@ -4286,7 +4286,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 6, @@ -4309,7 +4309,7 @@ { "lineGroupId": 70, "indexInLine": 5, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 5, @@ -4332,7 +4332,7 @@ { "lineGroupId": 70, "indexInLine": 6, - "noteOrder": 1662.0, + "noteOrder": 1649.0, "time": 0.29115302399840304, "position": { "x": 5, @@ -4355,7 +4355,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 7, @@ -4378,7 +4378,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 1692, + "noteOrder": 1678, "time": 0.2974824375635857, "position": { "x": 7, @@ -4401,7 +4401,7 @@ { "lineGroupId": 72, "indexInLine": 3, - "noteOrder": 1692, + "noteOrder": 1678, "time": 0.2974824375635857, "position": { "x": 6, @@ -4424,7 +4424,7 @@ { "lineGroupId": 72, "indexInLine": 4, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 6, @@ -4447,7 +4447,7 @@ { "lineGroupId": 72, "indexInLine": 5, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 5, @@ -4470,7 +4470,7 @@ { "lineGroupId": 72, "indexInLine": 6, - "noteOrder": 1710.0, + "noteOrder": 1696.0, "time": 0.2995922420853133, "position": { "x": 5, @@ -4493,7 +4493,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 7, @@ -4516,7 +4516,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1740, + "noteOrder": 1726, "time": 0.30592165565049595, "position": { "x": 7, @@ -4539,7 +4539,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1740, + "noteOrder": 1726, "time": 0.30592165565049595, "position": { "x": 6, @@ -4562,7 +4562,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 6, @@ -4585,7 +4585,7 @@ { "lineGroupId": 74, "indexInLine": 5, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 5, @@ -4608,7 +4608,7 @@ { "lineGroupId": 74, "indexInLine": 6, - "noteOrder": 1758.0, + "noteOrder": 1744.0, "time": 0.3080314601722235, "position": { "x": 5, @@ -4631,7 +4631,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 7, @@ -4654,7 +4654,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 1750, "time": 0.31014126469395104, "position": { "x": 7, @@ -4677,7 +4677,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 1750, "time": 0.31014126469395104, "position": { "x": 6, @@ -4700,7 +4700,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -4723,7 +4723,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 8, @@ -4746,7 +4746,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -4769,7 +4769,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 3, @@ -4792,7 +4792,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.3228000918243164, "position": { "x": 3, @@ -4815,7 +4815,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.3228000918243164, "position": { "x": 4, @@ -4838,7 +4838,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 4, @@ -4861,7 +4861,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 5, @@ -4884,7 +4884,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 1839.0, "time": 0.324909896346044, "position": { "x": 5, @@ -4907,7 +4907,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 3, @@ -4930,7 +4930,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33123930991122663, "position": { "x": 3, @@ -4953,7 +4953,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33123930991122663, "position": { "x": 4, @@ -4976,7 +4976,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 4, @@ -4999,7 +4999,7 @@ { "lineGroupId": 79, "indexInLine": 5, - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 5, @@ -5022,7 +5022,7 @@ { "lineGroupId": 79, "indexInLine": 6, - "noteOrder": 1902.0, + "noteOrder": 1887.0, "time": 0.33334911443295423, "position": { "x": 5, @@ -5045,7 +5045,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3375687234764093, "position": { "x": 3, @@ -5068,7 +5068,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3396785279981369, "position": { "x": 3, @@ -5091,7 +5091,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3396785279981369, "position": { "x": 4, @@ -5114,7 +5114,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 4, @@ -5137,7 +5137,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 5, @@ -5160,7 +5160,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.3417883325198644, "position": { "x": 5, @@ -5183,7 +5183,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 3, @@ -5206,7 +5206,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.343898137041592, "position": { "x": 3, @@ -5229,7 +5229,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.343898137041592, "position": { "x": 4, @@ -5252,7 +5252,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 4, @@ -5275,7 +5275,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 2, @@ -5298,7 +5298,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 4, @@ -5321,7 +5321,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.35444715965022977, "position": { "x": 7, @@ -5344,7 +5344,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 6, @@ -5367,7 +5367,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 3, @@ -5390,7 +5390,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 4, @@ -5413,7 +5413,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 7, @@ -5436,7 +5436,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.37343540034577777, "position": { "x": 7, @@ -5459,7 +5459,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.37343540034577777, "position": { "x": 6, @@ -5482,7 +5482,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 2113.0, "time": 0.37343540034577777, "position": { "x": 6, @@ -5505,7 +5505,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 3, @@ -5528,7 +5528,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.37765500938923297, "position": { "x": 3, @@ -5551,7 +5551,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.37765500938923297, "position": { "x": 4, @@ -5574,7 +5574,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 2137.0, "time": 0.37765500938923297, "position": { "x": 4, @@ -5597,7 +5597,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 7, @@ -5620,7 +5620,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.38187461843268805, "position": { "x": 7, @@ -5643,7 +5643,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.38187461843268805, "position": { "x": 6, @@ -5666,7 +5666,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 6, @@ -5689,7 +5689,7 @@ { "lineGroupId": 90, "indexInLine": 5, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 7, @@ -5712,7 +5712,7 @@ { "lineGroupId": 90, "indexInLine": 6, - "noteOrder": 2190.0, + "noteOrder": 2173.0, "time": 0.3839844229544156, "position": { "x": 7, @@ -5735,7 +5735,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 3, @@ -5758,7 +5758,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.3924236410413259, "position": { "x": 4, @@ -5781,7 +5781,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 7, @@ -5804,7 +5804,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.40086285912823605, "position": { "x": 6, @@ -5827,7 +5827,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4050824681716912, "position": { "x": 3, @@ -5850,7 +5850,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 2297, "time": 0.40719227269341873, "position": { "x": 3, @@ -5873,7 +5873,7 @@ { "lineGroupId": 96, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 2297, "time": 0.40719227269341873, "position": { "x": 4, @@ -5896,7 +5896,7 @@ { "lineGroupId": 96, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 2303.0, "time": 0.40719227269341873, "position": { "x": 4, @@ -5919,7 +5919,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.4093020772151463, "position": { "x": 7, @@ -5942,7 +5942,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4114118817368739, "position": { "x": 7, @@ -5965,7 +5965,7 @@ { "lineGroupId": 97, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4114118817368739, "position": { "x": 6, @@ -5988,7 +5988,7 @@ { "lineGroupId": 97, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 2327.0, "time": 0.4114118817368739, "position": { "x": 6, @@ -6011,7 +6011,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 3, @@ -6034,7 +6034,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.41563149078032896, "position": { "x": 3, @@ -6057,7 +6057,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.41563149078032896, "position": { "x": 4, @@ -6080,7 +6080,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 4, @@ -6103,7 +6103,7 @@ { "lineGroupId": 98, "indexInLine": 5, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 3, @@ -6126,7 +6126,7 @@ { "lineGroupId": 98, "indexInLine": 6, - "noteOrder": 2382.0, + "noteOrder": 2363.0, "time": 0.41774129530205656, "position": { "x": 3, @@ -6149,7 +6149,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.42196090434551164, "position": { "x": 7, @@ -6172,7 +6172,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2412, + "noteOrder": 2393, "time": 0.42407070886723924, "position": { "x": 7, @@ -6195,7 +6195,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2412, + "noteOrder": 2393, "time": 0.42407070886723924, "position": { "x": 6, @@ -6218,7 +6218,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 6, @@ -6241,7 +6241,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 5, @@ -6264,7 +6264,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2430.0, + "noteOrder": 2411.0, "time": 0.42618051338896673, "position": { "x": 5, @@ -6287,7 +6287,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 7, @@ -6310,7 +6310,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2436, + "noteOrder": 2417, "time": 0.42829031791069433, "position": { "x": 7, @@ -6333,7 +6333,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 2436, + "noteOrder": 2417, "time": 0.42829031791069433, "position": { "x": 6, @@ -6356,7 +6356,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 6, @@ -6379,7 +6379,7 @@ { "lineGroupId": 101, "indexInLine": 5, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 5, @@ -6402,7 +6402,7 @@ { "lineGroupId": 101, "indexInLine": 6, - "noteOrder": 2454.0, + "noteOrder": 2434.0, "time": 0.43040012243242187, "position": { "x": 5, @@ -6425,7 +6425,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 7, @@ -6448,7 +6448,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2460, + "noteOrder": 2440, "time": 0.43250992695414947, "position": { "x": 7, @@ -6471,7 +6471,7 @@ { "lineGroupId": 102, "indexInLine": 3, - "noteOrder": 2460, + "noteOrder": 2440, "time": 0.43250992695414947, "position": { "x": 6, @@ -6494,7 +6494,7 @@ { "lineGroupId": 102, "indexInLine": 4, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 6, @@ -6517,7 +6517,7 @@ { "lineGroupId": 102, "indexInLine": 5, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 5, @@ -6540,7 +6540,7 @@ { "lineGroupId": 102, "indexInLine": 6, - "noteOrder": 2478.0, + "noteOrder": 2458.0, "time": 0.434619731475877, "position": { "x": 5, @@ -6563,7 +6563,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 7, @@ -6586,7 +6586,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2484, + "noteOrder": 2464, "time": 0.43672953599760456, "position": { "x": 7, @@ -6609,7 +6609,7 @@ { "lineGroupId": 103, "indexInLine": 3, - "noteOrder": 2484, + "noteOrder": 2464, "time": 0.43672953599760456, "position": { "x": 6, @@ -6632,7 +6632,7 @@ { "lineGroupId": 103, "indexInLine": 4, - "noteOrder": 2490.0, + "noteOrder": 2470.0, "time": 0.43672953599760456, "position": { "x": 6, @@ -6655,7 +6655,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 4, @@ -6678,7 +6678,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 4, @@ -6701,7 +6701,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 6, @@ -6724,7 +6724,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 6, @@ -6747,7 +6747,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 3, @@ -6770,7 +6770,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4493883631279699, "position": { "x": 3, @@ -6793,7 +6793,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4493883631279699, "position": { "x": 4, @@ -6816,7 +6816,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 4, @@ -6839,7 +6839,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 3, @@ -6862,7 +6862,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 2574.0, + "noteOrder": 2553.0, "time": 0.45149816764969747, "position": { "x": 3, @@ -6885,7 +6885,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 3, @@ -6908,7 +6908,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2604, + "noteOrder": 2583, "time": 0.45782758121488015, "position": { "x": 3, @@ -6931,7 +6931,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 2604, + "noteOrder": 2583, "time": 0.45782758121488015, "position": { "x": 4, @@ -6954,7 +6954,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 4, @@ -6977,7 +6977,7 @@ { "lineGroupId": 108, "indexInLine": 5, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 5, @@ -7000,7 +7000,7 @@ { "lineGroupId": 108, "indexInLine": 6, - "noteOrder": 2622.0, + "noteOrder": 2601.0, "time": 0.4599373857366077, "position": { "x": 5, @@ -7023,7 +7023,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 3, @@ -7046,7 +7046,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 2607, "time": 0.46204719025833524, "position": { "x": 3, @@ -7069,7 +7069,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 2607, "time": 0.46204719025833524, "position": { "x": 4, @@ -7092,7 +7092,7 @@ { "lineGroupId": 109, "indexInLine": 4, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 4, @@ -7115,7 +7115,7 @@ { "lineGroupId": 109, "indexInLine": 5, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 5, @@ -7138,7 +7138,7 @@ { "lineGroupId": 109, "indexInLine": 6, - "noteOrder": 2646.0, + "noteOrder": 2625.0, "time": 0.46415699478006284, "position": { "x": 5, @@ -7161,7 +7161,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 3, @@ -7184,7 +7184,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2652, + "noteOrder": 2631, "time": 0.4662667993017904, "position": { "x": 3, @@ -7207,7 +7207,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 2652, + "noteOrder": 2631, "time": 0.4662667993017904, "position": { "x": 4, @@ -7230,7 +7230,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 4, @@ -7253,7 +7253,7 @@ { "lineGroupId": 110, "indexInLine": 5, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 5, @@ -7276,7 +7276,7 @@ { "lineGroupId": 110, "indexInLine": 6, - "noteOrder": 2670.0, + "noteOrder": 2649.0, "time": 0.4683766038235179, "position": { "x": 5, @@ -7299,7 +7299,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 3, @@ -7322,7 +7322,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2676, + "noteOrder": 2655, "time": 0.4704864083452455, "position": { "x": 3, @@ -7345,7 +7345,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2676, + "noteOrder": 2655, "time": 0.4704864083452455, "position": { "x": 4, @@ -7368,7 +7368,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2682.0, + "noteOrder": 2661.0, "time": 0.4704864083452455, "position": { "x": 4, @@ -7391,7 +7391,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 6, @@ -7414,7 +7414,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 6, @@ -7437,7 +7437,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 4, @@ -7460,7 +7460,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 4, @@ -7483,7 +7483,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 7, @@ -7506,7 +7506,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2748, + "noteOrder": 2726, "time": 0.48314523547561083, "position": { "x": 7, @@ -7529,7 +7529,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2748, + "noteOrder": 2726, "time": 0.48314523547561083, "position": { "x": 6, @@ -7552,7 +7552,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 6, @@ -7575,7 +7575,7 @@ { "lineGroupId": 114, "indexInLine": 5, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 7, @@ -7598,7 +7598,7 @@ { "lineGroupId": 114, "indexInLine": 6, - "noteOrder": 2766.0, + "noteOrder": 2744.0, "time": 0.48525503999733843, "position": { "x": 7, @@ -7621,7 +7621,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.4894746490407935, "position": { "x": 7, @@ -7644,7 +7644,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2796, + "noteOrder": 2774, "time": 0.4915844535625211, "position": { "x": 7, @@ -7667,7 +7667,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 2796, + "noteOrder": 2774, "time": 0.4915844535625211, "position": { "x": 6, @@ -7690,7 +7690,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 6, @@ -7713,7 +7713,7 @@ { "lineGroupId": 116, "indexInLine": 5, - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 5, @@ -7736,7 +7736,7 @@ { "lineGroupId": 116, "indexInLine": 6, - "noteOrder": 2814.0, + "noteOrder": 2792.0, "time": 0.4936942580842486, "position": { "x": 5, @@ -7759,7 +7759,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.49791386712770375, "position": { "x": 7, @@ -7782,7 +7782,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2844, + "noteOrder": 2821, "time": 0.5000236716494313, "position": { "x": 7, @@ -7805,7 +7805,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 2844, + "noteOrder": 2821, "time": 0.5000236716494313, "position": { "x": 6, @@ -7828,7 +7828,7 @@ { "lineGroupId": 118, "indexInLine": 4, - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 6, @@ -7851,7 +7851,7 @@ { "lineGroupId": 118, "indexInLine": 5, - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 5, @@ -7874,7 +7874,7 @@ { "lineGroupId": 118, "indexInLine": 6, - "noteOrder": 2862.0, + "noteOrder": 2839.0, "time": 0.5021334761711589, "position": { "x": 5, @@ -7897,7 +7897,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 3, @@ -7920,7 +7920,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5084628897363415, "position": { "x": 3, @@ -7943,7 +7943,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5084628897363415, "position": { "x": 4, @@ -7966,7 +7966,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 4, @@ -7989,7 +7989,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 5, @@ -8012,7 +8012,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 2910.0, + "noteOrder": 2887.0, "time": 0.5105726942580691, "position": { "x": 5, @@ -8035,7 +8035,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 3, @@ -8058,7 +8058,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5126824987797967, "position": { "x": 3, @@ -8081,7 +8081,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5126824987797967, "position": { "x": 4, @@ -8104,7 +8104,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 4, @@ -8127,7 +8127,7 @@ { "lineGroupId": 121, "indexInLine": 5, - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 5, @@ -8150,7 +8150,7 @@ { "lineGroupId": 121, "indexInLine": 6, - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5169021078232517, "position": { "x": 5, @@ -8173,7 +8173,7 @@ { "lineGroupId": 121, "indexInLine": 7, - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5169021078232517, "position": { "x": 4, @@ -8196,7 +8196,7 @@ { "lineGroupId": 121, "indexInLine": 8, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 4, @@ -8219,7 +8219,7 @@ { "lineGroupId": 121, "indexInLine": 9, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 3, @@ -8242,7 +8242,7 @@ { "lineGroupId": 121, "indexInLine": 10, - "noteOrder": 2958.0, + "noteOrder": 2934.0, "time": 0.5190119123449793, "position": { "x": 3, @@ -8265,7 +8265,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 7, @@ -8288,7 +8288,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 2964, + "noteOrder": 2940, "time": 0.5211217168667069, "position": { "x": 7, @@ -8311,7 +8311,7 @@ { "lineGroupId": 123, "indexInLine": 3, - "noteOrder": 2964, + "noteOrder": 2940, "time": 0.5211217168667069, "position": { "x": 6, @@ -8334,7 +8334,7 @@ { "lineGroupId": 123, "indexInLine": 4, - "noteOrder": 2970.0, + "noteOrder": 2946.0, "time": 0.5211217168667069, "position": { "x": 6, @@ -8357,7 +8357,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 3, @@ -8380,7 +8380,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.525341325910162, "position": { "x": 3, @@ -8403,7 +8403,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.525341325910162, "position": { "x": 4, @@ -8426,7 +8426,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 4, @@ -8449,7 +8449,7 @@ { "lineGroupId": 124, "indexInLine": 5, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 5, @@ -8472,7 +8472,7 @@ { "lineGroupId": 124, "indexInLine": 6, - "noteOrder": 3006.0, + "noteOrder": 2982.0, "time": 0.5274511304318896, "position": { "x": 5, @@ -8495,7 +8495,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 3, @@ -8518,7 +8518,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3036, + "noteOrder": 3012, "time": 0.5337805439970723, "position": { "x": 3, @@ -8541,7 +8541,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3036, + "noteOrder": 3012, "time": 0.5337805439970723, "position": { "x": 4, @@ -8564,7 +8564,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 4, @@ -8587,7 +8587,7 @@ { "lineGroupId": 126, "indexInLine": 5, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 5, @@ -8610,7 +8610,7 @@ { "lineGroupId": 126, "indexInLine": 6, - "noteOrder": 3054.0, + "noteOrder": 3030.0, "time": 0.5358903485187998, "position": { "x": 5, @@ -8633,7 +8633,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 7, @@ -8656,7 +8656,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5422197620839825, "position": { "x": 7, @@ -8679,7 +8679,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5422197620839825, "position": { "x": 6, @@ -8702,7 +8702,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 6, @@ -8725,7 +8725,7 @@ { "lineGroupId": 128, "indexInLine": 5, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 5, @@ -8748,7 +8748,7 @@ { "lineGroupId": 128, "indexInLine": 6, - "noteOrder": 3102.0, + "noteOrder": 3077.0, "time": 0.5443295666057101, "position": { "x": 5, @@ -8771,7 +8771,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 7, @@ -8794,7 +8794,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5464393711274376, "position": { "x": 7, @@ -8817,7 +8817,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5464393711274376, "position": { "x": 6, @@ -8840,7 +8840,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3114.0, + "noteOrder": 3089.0, "time": 0.5464393711274376, "position": { "x": 6, @@ -8863,7 +8863,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.5485491756491652, "position": { "x": 3, @@ -8886,7 +8886,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5506589801708927, "position": { "x": 3, @@ -8909,7 +8909,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5506589801708927, "position": { "x": 4, @@ -8932,7 +8932,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 4, @@ -8955,7 +8955,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 3, @@ -8978,7 +8978,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3150.0, + "noteOrder": 3125.0, "time": 0.5527687846926203, "position": { "x": 3, @@ -9001,7 +9001,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5569883937360753, "position": { "x": 6, @@ -9024,7 +9024,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 6, @@ -9047,7 +9047,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 4, @@ -9070,7 +9070,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 4, @@ -9093,7 +9093,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 7, @@ -9116,7 +9116,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 7, @@ -9139,7 +9139,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.5991844841706266, "position": { "x": 3, @@ -9162,7 +9162,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 3, @@ -9185,7 +9185,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.6920158831266392, "position": { "x": 7, @@ -9208,7 +9208,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 3916, "time": 0.6941256876483666, "position": { "x": 7, @@ -9231,7 +9231,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 3916, "time": 0.6941256876483666, "position": { "x": 6, @@ -9254,7 +9254,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 6, @@ -9277,7 +9277,7 @@ { "lineGroupId": 167, "indexInLine": 5, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 5, @@ -9300,7 +9300,7 @@ { "lineGroupId": 167, "indexInLine": 6, - "noteOrder": 3966.0, + "noteOrder": 3934.0, "time": 0.6962354921700942, "position": { "x": 5, @@ -9323,7 +9323,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 7, @@ -9346,7 +9346,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 3940, "time": 0.6983452966918218, "position": { "x": 7, @@ -9369,7 +9369,7 @@ { "lineGroupId": 168, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 3940, "time": 0.6983452966918218, "position": { "x": 6, @@ -9392,7 +9392,7 @@ { "lineGroupId": 168, "indexInLine": 4, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 6, @@ -9415,7 +9415,7 @@ { "lineGroupId": 168, "indexInLine": 5, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 5, @@ -9438,7 +9438,7 @@ { "lineGroupId": 168, "indexInLine": 6, - "noteOrder": 3990.0, + "noteOrder": 3958.0, "time": 0.7004551012135494, "position": { "x": 5, @@ -9461,7 +9461,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 7, @@ -9484,7 +9484,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 3996, + "noteOrder": 3964, "time": 0.702564905735277, "position": { "x": 7, @@ -9507,7 +9507,7 @@ { "lineGroupId": 169, "indexInLine": 3, - "noteOrder": 3996, + "noteOrder": 3964, "time": 0.702564905735277, "position": { "x": 6, @@ -9530,7 +9530,7 @@ { "lineGroupId": 169, "indexInLine": 4, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 6, @@ -9553,7 +9553,7 @@ { "lineGroupId": 169, "indexInLine": 5, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 5, @@ -9576,7 +9576,7 @@ { "lineGroupId": 169, "indexInLine": 6, - "noteOrder": 4014.0, + "noteOrder": 3982.0, "time": 0.7046747102570045, "position": { "x": 5, @@ -9599,7 +9599,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 7, @@ -9622,7 +9622,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 3988, "time": 0.7067845147787319, "position": { "x": 7, @@ -9645,7 +9645,7 @@ { "lineGroupId": 170, "indexInLine": 3, - "noteOrder": 4020, + "noteOrder": 3988, "time": 0.7067845147787319, "position": { "x": 6, @@ -9668,7 +9668,7 @@ { "lineGroupId": 170, "indexInLine": 4, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 6, @@ -9691,7 +9691,7 @@ { "lineGroupId": 170, "indexInLine": 5, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 5, @@ -9714,7 +9714,7 @@ { "lineGroupId": 170, "indexInLine": 6, - "noteOrder": 4038.0, + "noteOrder": 4006.0, "time": 0.7088943193004595, "position": { "x": 5, @@ -9737,7 +9737,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 7, @@ -9760,7 +9760,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4044, + "noteOrder": 4012, "time": 0.7110041238221871, "position": { "x": 7, @@ -9783,7 +9783,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 4044, + "noteOrder": 4012, "time": 0.7110041238221871, "position": { "x": 6, @@ -9806,7 +9806,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 6, @@ -9829,7 +9829,7 @@ { "lineGroupId": 171, "indexInLine": 5, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 5, @@ -9852,7 +9852,7 @@ { "lineGroupId": 171, "indexInLine": 6, - "noteOrder": 4062.0, + "noteOrder": 4030.0, "time": 0.7131139283439147, "position": { "x": 5, @@ -9875,7 +9875,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 7, @@ -9898,7 +9898,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4068, + "noteOrder": 4035, "time": 0.7152237328656422, "position": { "x": 7, @@ -9921,7 +9921,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 4068, + "noteOrder": 4035, "time": 0.7152237328656422, "position": { "x": 6, @@ -9944,7 +9944,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 6, @@ -9967,7 +9967,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 5, @@ -9990,7 +9990,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 4086.0, + "noteOrder": 4053.0, "time": 0.7173335373873698, "position": { "x": 5, @@ -10013,7 +10013,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 7, @@ -10036,7 +10036,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4092, + "noteOrder": 4059, "time": 0.7194433419090974, "position": { "x": 7, @@ -10059,7 +10059,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 4092, + "noteOrder": 4059, "time": 0.7194433419090974, "position": { "x": 6, @@ -10082,7 +10082,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 6, @@ -10105,7 +10105,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 5, @@ -10128,7 +10128,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 4110.0, + "noteOrder": 4077.0, "time": 0.7215531464308249, "position": { "x": 5, @@ -10151,7 +10151,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 7, @@ -10174,7 +10174,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4116, + "noteOrder": 4083, "time": 0.7236629509525525, "position": { "x": 7, @@ -10197,7 +10197,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 4116, + "noteOrder": 4083, "time": 0.7236629509525525, "position": { "x": 6, @@ -10220,7 +10220,7 @@ { "lineGroupId": 174, "indexInLine": 4, - "noteOrder": 4122.0, + "noteOrder": 4089.0, "time": 0.7236629509525525, "position": { "x": 6, @@ -10243,7 +10243,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7426511916481006, "position": { "x": 7, @@ -10266,7 +10266,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7447609961698282, "position": { "x": 7, @@ -10289,7 +10289,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7447609961698282, "position": { "x": 6, @@ -10312,7 +10312,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 4242.0, + "noteOrder": 4208.0, "time": 0.7447609961698282, "position": { "x": 6, @@ -10335,7 +10335,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7468708006915555, "position": { "x": 3, @@ -10358,7 +10358,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7489806052132831, "position": { "x": 3, @@ -10381,7 +10381,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7489806052132831, "position": { "x": 4, @@ -10404,7 +10404,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 4266.0, + "noteOrder": 4232.0, "time": 0.7489806052132831, "position": { "x": 4, @@ -10427,7 +10427,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7510904097350107, "position": { "x": 7, @@ -10450,7 +10450,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.7532002142567383, "position": { "x": 7, @@ -10473,7 +10473,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.7532002142567383, "position": { "x": 6, @@ -10496,7 +10496,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 6, @@ -10519,7 +10519,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 7, @@ -10542,7 +10542,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4302.0, + "noteOrder": 4268.0, "time": 0.7553100187784659, "position": { "x": 7, @@ -10565,7 +10565,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4285, "time": 0.7595296278219209, "position": { "x": 3, @@ -10588,7 +10588,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4332, + "noteOrder": 4297, "time": 0.7616394323436485, "position": { "x": 3, @@ -10611,7 +10611,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 4332, + "noteOrder": 4297, "time": 0.7616394323436485, "position": { "x": 4, @@ -10634,7 +10634,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 4, @@ -10657,7 +10657,7 @@ { "lineGroupId": 187, "indexInLine": 5, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 5, @@ -10680,7 +10680,7 @@ { "lineGroupId": 187, "indexInLine": 6, - "noteOrder": 4350.0, + "noteOrder": 4315.0, "time": 0.7637492368653761, "position": { "x": 5, @@ -10703,7 +10703,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 3, @@ -10726,7 +10726,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 4321, "time": 0.7658590413871037, "position": { "x": 3, @@ -10749,7 +10749,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 4356, + "noteOrder": 4321, "time": 0.7658590413871037, "position": { "x": 4, @@ -10772,7 +10772,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 4, @@ -10795,7 +10795,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 5, @@ -10818,7 +10818,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 4374.0, + "noteOrder": 4339.0, "time": 0.7679688459088312, "position": { "x": 5, @@ -10841,7 +10841,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 3, @@ -10864,7 +10864,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 4345, "time": 0.7700786504305588, "position": { "x": 3, @@ -10887,7 +10887,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 4345, "time": 0.7700786504305588, "position": { "x": 4, @@ -10910,7 +10910,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 4, @@ -10933,7 +10933,7 @@ { "lineGroupId": 189, "indexInLine": 5, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 5, @@ -10956,7 +10956,7 @@ { "lineGroupId": 189, "indexInLine": 6, - "noteOrder": 4398.0, + "noteOrder": 4363.0, "time": 0.7721884549522864, "position": { "x": 5, @@ -10979,7 +10979,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 3, @@ -11002,7 +11002,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4404, + "noteOrder": 4369, "time": 0.7742982594740139, "position": { "x": 3, @@ -11025,7 +11025,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4404, + "noteOrder": 4369, "time": 0.7742982594740139, "position": { "x": 4, @@ -11048,7 +11048,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 4, @@ -11071,7 +11071,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 5, @@ -11094,7 +11094,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 4422.0, + "noteOrder": 4387.0, "time": 0.7764080639957415, "position": { "x": 5, @@ -11117,128 +11117,174 @@ { "lineGroupId": 191, "indexInLine": 1, + "noteOrder": 4381, + "time": 0.7764080639957415, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "noteOrder": 4393, + "time": 0.778517868517469, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "noteOrder": 4393, + "time": 0.778517868517469, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 6, + "noteOrder": 4411.0, + "time": 0.7806276730391966, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, "noteOrder": 4416, - "time": 0.7764080639957415, + "time": 0.7827374775609242, "position": { "x": 3, "y": 0 }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 2, - "noteOrder": 4428, - "time": 0.778517868517469, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 3, - "noteOrder": 4428, - "time": 0.778517868517469, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 4, - "noteOrder": 4440, - "time": 0.7806276730391966, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 5, - "noteOrder": 4440, - "time": 0.7806276730391966, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 6, - "noteOrder": 4446.0, - "time": 0.7806276730391966, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, + "noteType": 13, "position2D": { "x": 0, "y": 0 @@ -11254,14 +11300,106 @@ }, { "lineGroupId": 192, + "indexInLine": 3, + "noteOrder": 4416, + "time": 0.7827374775609242, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "noteOrder": 4428, + "time": 0.7848472820826518, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "noteOrder": 4428, + "time": 0.7848472820826518, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 6, + "noteOrder": 4434.0, + "time": 0.7848472820826518, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4440, - "time": 0.7806276730391966, + "noteOrder": 4428, + "time": 0.7848472820826518, "position": { "x": 3, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11276,15 +11414,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 4452, - "time": 0.7827374775609242, + "noteOrder": 4440, + "time": 0.7869570866043792, "position": { "x": 3, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11299,15 +11437,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 4452, - "time": 0.7827374775609242, + "noteOrder": 4440, + "time": 0.7869570866043792, "position": { "x": 4, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11322,15 +11460,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 4464, - "time": 0.7848472820826518, + "noteOrder": 4452, + "time": 0.7890668911261067, "position": { "x": 4, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11345,14 +11483,60 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 4464, - "time": 0.7848472820826518, + "noteOrder": 4452, + "time": 0.7890668911261067, "position": { "x": 5, "y": 0 }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 193, + "indexInLine": 6, + "noteOrder": 4458.0, + "time": 0.7890668911261067, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "noteOrder": 4452, + "time": 0.7890668911261067, + "position": { + "x": 3, + "y": 0 + }, "noteType": 13, "position2D": { "x": 0, @@ -11368,239 +11552,55 @@ "isSliding": false }, { - "lineGroupId": 192, - "indexInLine": 6, + "lineGroupId": 194, + "indexInLine": 2, + "noteOrder": 4464, + "time": 0.7911766956478343, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "noteOrder": 4464, + "time": 0.7911766956478343, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, "noteOrder": 4470.0, - "time": 0.7848472820826518, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 1, - "noteOrder": 4464, - "time": 0.7848472820826518, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 2, - "noteOrder": 4476, - "time": 0.7869570866043792, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 3, - "noteOrder": 4476, - "time": 0.7869570866043792, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 4, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 5, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 6, - "noteOrder": 4494.0, - "time": 0.7890668911261067, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 1, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 2, - "noteOrder": 4500, - "time": 0.7911766956478343, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 3, - "noteOrder": 4500, - "time": 0.7911766956478343, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 4, - "noteOrder": 4506.0, "time": 0.7911766956478343, "position": { "x": 4, @@ -11623,7 +11623,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8101649363433824, "position": { "x": 3, @@ -11646,7 +11646,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8122747408651099, "position": { "x": 3, @@ -11669,7 +11669,7 @@ { "lineGroupId": 203, "indexInLine": 3, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8122747408651099, "position": { "x": 4, @@ -11692,7 +11692,7 @@ { "lineGroupId": 203, "indexInLine": 4, - "noteOrder": 4626.0, + "noteOrder": 4589.0, "time": 0.8122747408651099, "position": { "x": 4, @@ -11715,7 +11715,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8143845453868375, "position": { "x": 7, @@ -11738,7 +11738,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8164943499085651, "position": { "x": 7, @@ -11761,7 +11761,7 @@ { "lineGroupId": 204, "indexInLine": 3, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8164943499085651, "position": { "x": 6, @@ -11784,7 +11784,7 @@ { "lineGroupId": 204, "indexInLine": 4, - "noteOrder": 4650.0, + "noteOrder": 4613.0, "time": 0.8164943499085651, "position": { "x": 6, @@ -11807,7 +11807,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8186041544302926, "position": { "x": 3, @@ -11830,7 +11830,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8207139589520202, "position": { "x": 3, @@ -11853,7 +11853,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8207139589520202, "position": { "x": 4, @@ -11876,7 +11876,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 4, @@ -11899,7 +11899,7 @@ { "lineGroupId": 205, "indexInLine": 5, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 3, @@ -11922,7 +11922,7 @@ { "lineGroupId": 205, "indexInLine": 6, - "noteOrder": 4686.0, + "noteOrder": 4649.0, "time": 0.8228237634737477, "position": { "x": 3, @@ -11945,7 +11945,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8270433725172028, "position": { "x": 7, @@ -11968,7 +11968,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8291531770389303, "position": { "x": 7, @@ -11991,7 +11991,7 @@ { "lineGroupId": 207, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8291531770389303, "position": { "x": 6, @@ -12014,7 +12014,7 @@ { "lineGroupId": 207, "indexInLine": 4, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 6, @@ -12037,7 +12037,7 @@ { "lineGroupId": 207, "indexInLine": 5, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 5, @@ -12060,7 +12060,7 @@ { "lineGroupId": 207, "indexInLine": 6, - "noteOrder": 4734.0, + "noteOrder": 4696.0, "time": 0.8312629815606579, "position": { "x": 5, @@ -12083,7 +12083,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 7, @@ -12106,7 +12106,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8375923951258407, "position": { "x": 7, @@ -12129,7 +12129,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8375923951258407, "position": { "x": 6, @@ -12152,7 +12152,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 6, @@ -12175,7 +12175,7 @@ { "lineGroupId": 209, "indexInLine": 5, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 5, @@ -12198,7 +12198,7 @@ { "lineGroupId": 209, "indexInLine": 6, - "noteOrder": 4782.0, + "noteOrder": 4744.0, "time": 0.8397021996475681, "position": { "x": 5, @@ -12221,7 +12221,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 7, @@ -12244,7 +12244,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4812, + "noteOrder": 4774, "time": 0.8460316132127509, "position": { "x": 7, @@ -12267,7 +12267,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 4812, + "noteOrder": 4774, "time": 0.8460316132127509, "position": { "x": 6, @@ -12290,7 +12290,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 6, @@ -12313,7 +12313,7 @@ { "lineGroupId": 211, "indexInLine": 5, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 5, @@ -12336,7 +12336,7 @@ { "lineGroupId": 211, "indexInLine": 6, - "noteOrder": 4830.0, + "noteOrder": 4791.0, "time": 0.8481414177344785, "position": { "x": 5, @@ -12359,7 +12359,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 7, @@ -12382,7 +12382,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4836, + "noteOrder": 4797, "time": 0.850251222256206, "position": { "x": 7, @@ -12405,7 +12405,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 4836, + "noteOrder": 4797, "time": 0.850251222256206, "position": { "x": 6, @@ -12428,7 +12428,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 6, @@ -12451,7 +12451,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 7, @@ -12474,7 +12474,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 4860, + "noteOrder": 4821, "time": 0.8544708312996611, "position": { "x": 7, @@ -12497,7 +12497,7 @@ { "lineGroupId": 212, "indexInLine": 7, - "noteOrder": 4860, + "noteOrder": 4821, "time": 0.8544708312996611, "position": { "x": 6, @@ -12520,7 +12520,7 @@ { "lineGroupId": 212, "indexInLine": 8, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 6, @@ -12543,7 +12543,7 @@ { "lineGroupId": 212, "indexInLine": 9, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 7, @@ -12566,7 +12566,7 @@ { "lineGroupId": 212, "indexInLine": 10, - "noteOrder": 4878.0, + "noteOrder": 4839.0, "time": 0.8565806358213887, "position": { "x": 7, @@ -12589,7 +12589,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.8945571172124847, "position": { "x": 3, @@ -12612,7 +12612,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.8966669217342123, "position": { "x": 3, @@ -12635,7 +12635,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.8966669217342123, "position": { "x": 4, @@ -12658,7 +12658,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 4, @@ -12681,7 +12681,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 5, @@ -12704,7 +12704,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 5118.0, + "noteOrder": 5077.0, "time": 0.8987767262559399, "position": { "x": 5, @@ -12727,7 +12727,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 3, @@ -12750,7 +12750,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9051061398211224, "position": { "x": 3, @@ -12773,7 +12773,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9051061398211224, "position": { "x": 4, @@ -12796,7 +12796,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 4, @@ -12819,7 +12819,7 @@ { "lineGroupId": 226, "indexInLine": 5, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 5, @@ -12842,7 +12842,7 @@ { "lineGroupId": 226, "indexInLine": 6, - "noteOrder": 5166.0, + "noteOrder": 5125.0, "time": 0.90721594434285, "position": { "x": 5, @@ -12865,7 +12865,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 3, @@ -12888,7 +12888,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5196, + "noteOrder": 5154, "time": 0.9135453579080327, "position": { "x": 3, @@ -12911,7 +12911,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5196, + "noteOrder": 5154, "time": 0.9135453579080327, "position": { "x": 4, @@ -12934,7 +12934,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 4, @@ -12957,7 +12957,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 5, @@ -12980,7 +12980,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 5214.0, + "noteOrder": 5172.0, "time": 0.9156551624297603, "position": { "x": 5, @@ -13003,7 +13003,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 3, @@ -13026,7 +13026,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5220, + "noteOrder": 5178, "time": 0.9177649669514879, "position": { "x": 3, @@ -13049,7 +13049,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5220, + "noteOrder": 5178, "time": 0.9177649669514879, "position": { "x": 4, @@ -13072,7 +13072,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 4, @@ -13095,7 +13095,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 3, @@ -13118,7 +13118,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5244, + "noteOrder": 5202, "time": 0.921984575994943, "position": { "x": 3, @@ -13141,7 +13141,7 @@ { "lineGroupId": 229, "indexInLine": 7, - "noteOrder": 5244, + "noteOrder": 5202, "time": 0.921984575994943, "position": { "x": 4, @@ -13164,7 +13164,7 @@ { "lineGroupId": 229, "indexInLine": 8, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 4, @@ -13187,7 +13187,7 @@ { "lineGroupId": 229, "indexInLine": 9, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 3, @@ -13210,7 +13210,7 @@ { "lineGroupId": 229, "indexInLine": 10, - "noteOrder": 5262.0, + "noteOrder": 5220.0, "time": 0.9240943805166705, "position": { "x": 3, @@ -13233,7 +13233,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9283139895601257, "position": { "x": 3, @@ -13256,7 +13256,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 4, @@ -13279,7 +13279,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9367532076470358, "position": { "x": 7, @@ -13302,7 +13302,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 6, @@ -13325,7 +13325,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 6, @@ -13348,7 +13348,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 6, @@ -13371,7 +13371,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 4, @@ -13394,7 +13394,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 4, @@ -13417,7 +13417,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 468.0, + "noteOrder": 464.0, "time": 0.0801725718256472, "position": { "x": 5, @@ -13445,7 +13445,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3900.0, + "noteOrder": 3869.0, "time": 0.6835766650397288, "position": { "x": 5, @@ -13473,7 +13473,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5449.5, + "noteOrder": 5405.5, "time": 0.9578512528643114, "position": { "x": 5, @@ -13514,7 +13514,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "5.26", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a_blockless.json index 451b15d8..02c6225f 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "Crystal Clear difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021098045217275582, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.029537263304185813, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 190, "time": 0.03375687234764093, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03797648139109605, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.046415699478006285, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.046415699478006285, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05485491756491652, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06329413565182675, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 381, "time": 0.06751374469528186, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 405, "time": 0.07173335373873699, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 571, "time": 0.1012706170429228, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 595, "time": 0.10549022608637791, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 643, "time": 0.11392944417328815, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13502748939056372, "position": { "x": 3, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.13924709843401883, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.14768631652092906, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 881, "time": 0.15612553460783932, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 905, "time": 0.1603451436512944, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.16456475269474954, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.18144318886857, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.18988240695548023, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19410201599893537, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.19832162504239048, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.2067608431293007, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.21520006121621094, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.21520006121621094, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.2278588883465763, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.24473732452039676, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.3924236410413259, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.40086285912823605, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3166, "time": 0.5612080027795304, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5654276118229856, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5696472208664407, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.578086438953351, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5865256570402613, "position": { "x": 5, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6076237022575368, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6118433113009919, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.6202825293879021, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.6202825293879021, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6245021384313573, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6287217474748124, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6329413565182674, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6413805746051776, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.6456001836486328, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.649819792692088, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6582590107789982, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6624786198224533, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6666982288659085, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6709178379093635, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6751374469528186, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6793570559962738, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.687796274083184, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.687796274083184, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.7278825599960076, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7299923645177352, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7321021690394628, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7342119735611903, "position": { "x": 7, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7363217780829178, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4178, "time": 0.740541387126373, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4524, + "noteOrder": 4488, "time": 0.7953963046912895, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.797506109213017, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4548, + "noteOrder": 4512, "time": 0.7996159137347445, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8017257182564721, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4572, + "noteOrder": 4535, "time": 0.8038355227781997, "position": { "x": 5, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4596, + "noteOrder": 4559, "time": 0.8080551318216548, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 7, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 3, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.8608002448648437, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 4904, "time": 0.869239462951754, "position": { "x": 3, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 4, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8776786810386643, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.8818982900821193, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.8861178991255745, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 3, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 3, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.945192425733946, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 5357, "time": 0.9494120347774012, "position": { "x": 7, @@ -2607,7 +2607,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.016878436173820465, "position": { "x": 7, @@ -2630,7 +2630,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 120, + "noteOrder": 119, "time": 0.021098045217275582, "position": { "x": 7, @@ -2653,7 +2653,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 143, "time": 0.0253176542607307, "position": { "x": 3, @@ -2676,7 +2676,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 167, "time": 0.029537263304185813, "position": { "x": 3, @@ -2699,7 +2699,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 286, "time": 0.0506353085214614, "position": { "x": 3, @@ -2722,7 +2722,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 310, "time": 0.05485491756491652, "position": { "x": 3, @@ -2745,7 +2745,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 333, "time": 0.059074526608371626, "position": { "x": 7, @@ -2768,7 +2768,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 360, + "noteOrder": 357, "time": 0.06329413565182675, "position": { "x": 7, @@ -2791,7 +2791,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 4, @@ -2814,7 +2814,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 452, "time": 0.0801725718256472, "position": { "x": 4, @@ -2837,7 +2837,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 6, @@ -2860,7 +2860,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 452, "time": 0.0801725718256472, "position": { "x": 6, @@ -2883,7 +2883,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08439218086910233, "position": { "x": 7, @@ -2906,7 +2906,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 492, + "noteOrder": 488, "time": 0.0865019853908299, "position": { "x": 6, @@ -2929,7 +2929,7 @@ { "lineGroupId": 20, "indexInLine": 3, - "noteOrder": 504, + "noteOrder": 500, "time": 0.08861178991255744, "position": { "x": 6, @@ -2952,7 +2952,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 504, + "noteOrder": 500, "time": 0.08861178991255744, "position": { "x": 3, @@ -2975,7 +2975,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 512, "time": 0.090721594434285, "position": { "x": 4, @@ -2998,7 +2998,7 @@ { "lineGroupId": 21, "indexInLine": 3, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 4, @@ -3021,7 +3021,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 7, @@ -3044,7 +3044,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 536, "time": 0.09494120347774011, "position": { "x": 6, @@ -3067,7 +3067,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09705100799946768, "position": { "x": 6, @@ -3090,7 +3090,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09705100799946768, "position": { "x": 3, @@ -3113,7 +3113,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 564, + "noteOrder": 559, "time": 0.09916081252119524, "position": { "x": 4, @@ -3136,7 +3136,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 667, "time": 0.11814905321674325, "position": { "x": 3, @@ -3159,7 +3159,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 684, + "noteOrder": 679, "time": 0.12025885773847082, "position": { "x": 4, @@ -3182,7 +3182,7 @@ { "lineGroupId": 28, "indexInLine": 3, - "noteOrder": 696, + "noteOrder": 690, "time": 0.12236866226019838, "position": { "x": 4, @@ -3205,7 +3205,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 696, + "noteOrder": 690, "time": 0.12236866226019838, "position": { "x": 7, @@ -3228,7 +3228,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 702, "time": 0.12447846678192594, "position": { "x": 6, @@ -3251,7 +3251,7 @@ { "lineGroupId": 29, "indexInLine": 3, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 6, @@ -3274,7 +3274,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 3, @@ -3297,7 +3297,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 732, + "noteOrder": 726, "time": 0.12869807582538106, "position": { "x": 4, @@ -3320,7 +3320,7 @@ { "lineGroupId": 30, "indexInLine": 3, - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 4, @@ -3343,7 +3343,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 7, @@ -3366,7 +3366,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 756, + "noteOrder": 750, "time": 0.13291768486883618, "position": { "x": 6, @@ -3389,7 +3389,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.1519059255643842, "position": { "x": 3, @@ -3412,7 +3412,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 3, @@ -3435,7 +3435,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 7, @@ -3458,7 +3458,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 964, "time": 0.1708941662599322, "position": { "x": 7, @@ -3481,7 +3481,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 964, "time": 0.1708941662599322, "position": { "x": 6, @@ -3504,7 +3504,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 970.0, "time": 0.1708941662599322, "position": { "x": 6, @@ -3527,7 +3527,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 976, "time": 0.1730039707816598, "position": { "x": 3, @@ -3550,7 +3550,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17511377530338734, "position": { "x": 3, @@ -3573,7 +3573,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17511377530338734, "position": { "x": 4, @@ -3596,7 +3596,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1002.0, + "noteOrder": 994.0, "time": 0.17511377530338734, "position": { "x": 4, @@ -3619,7 +3619,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18566279791202514, "position": { "x": 7, @@ -3642,7 +3642,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 7, @@ -3665,7 +3665,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.21941967025966608, "position": { "x": 3, @@ -3688,7 +3688,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 3, @@ -3711,7 +3711,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 6, @@ -3734,7 +3734,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 7, @@ -3757,7 +3757,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 7, @@ -3780,7 +3780,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 4, @@ -3803,7 +3803,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 3, @@ -3826,7 +3826,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 3, @@ -3849,7 +3849,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.2616157606942172, "position": { "x": 7, @@ -3872,7 +3872,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 7, @@ -3895,7 +3895,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.27005497878112744, "position": { "x": 3, @@ -3918,7 +3918,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.27216478330285504, "position": { "x": 3, @@ -3941,7 +3941,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.27216478330285504, "position": { "x": 4, @@ -3964,7 +3964,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 1554.0, + "noteOrder": 1542.0, "time": 0.27216478330285504, "position": { "x": 4, @@ -3987,7 +3987,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2742745878245826, "position": { "x": 7, @@ -4010,7 +4010,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.2763843923463101, "position": { "x": 7, @@ -4033,7 +4033,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.2763843923463101, "position": { "x": 6, @@ -4056,7 +4056,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.2763843923463101, "position": { "x": 6, @@ -4079,7 +4079,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 3, @@ -4102,7 +4102,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2806040013897652, "position": { "x": 3, @@ -4125,7 +4125,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2806040013897652, "position": { "x": 4, @@ -4148,7 +4148,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 4, @@ -4171,7 +4171,7 @@ { "lineGroupId": 68, "indexInLine": 5, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 3, @@ -4194,7 +4194,7 @@ { "lineGroupId": 68, "indexInLine": 6, - "noteOrder": 1614.0, + "noteOrder": 1601.0, "time": 0.2827138059114928, "position": { "x": 3, @@ -4217,7 +4217,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.28693341495494795, "position": { "x": 7, @@ -4240,7 +4240,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1644, + "noteOrder": 1631, "time": 0.2890432194766755, "position": { "x": 7, @@ -4263,7 +4263,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 1644, + "noteOrder": 1631, "time": 0.2890432194766755, "position": { "x": 6, @@ -4286,7 +4286,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 6, @@ -4309,7 +4309,7 @@ { "lineGroupId": 70, "indexInLine": 5, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 5, @@ -4332,7 +4332,7 @@ { "lineGroupId": 70, "indexInLine": 6, - "noteOrder": 1662.0, + "noteOrder": 1649.0, "time": 0.29115302399840304, "position": { "x": 5, @@ -4355,7 +4355,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 7, @@ -4378,7 +4378,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 1692, + "noteOrder": 1678, "time": 0.2974824375635857, "position": { "x": 7, @@ -4401,7 +4401,7 @@ { "lineGroupId": 72, "indexInLine": 3, - "noteOrder": 1692, + "noteOrder": 1678, "time": 0.2974824375635857, "position": { "x": 6, @@ -4424,7 +4424,7 @@ { "lineGroupId": 72, "indexInLine": 4, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 6, @@ -4447,7 +4447,7 @@ { "lineGroupId": 72, "indexInLine": 5, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 5, @@ -4470,7 +4470,7 @@ { "lineGroupId": 72, "indexInLine": 6, - "noteOrder": 1710.0, + "noteOrder": 1696.0, "time": 0.2995922420853133, "position": { "x": 5, @@ -4493,7 +4493,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 7, @@ -4516,7 +4516,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1740, + "noteOrder": 1726, "time": 0.30592165565049595, "position": { "x": 7, @@ -4539,7 +4539,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1740, + "noteOrder": 1726, "time": 0.30592165565049595, "position": { "x": 6, @@ -4562,7 +4562,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 6, @@ -4585,7 +4585,7 @@ { "lineGroupId": 74, "indexInLine": 5, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 5, @@ -4608,7 +4608,7 @@ { "lineGroupId": 74, "indexInLine": 6, - "noteOrder": 1758.0, + "noteOrder": 1744.0, "time": 0.3080314601722235, "position": { "x": 5, @@ -4631,7 +4631,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 7, @@ -4654,7 +4654,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 1750, "time": 0.31014126469395104, "position": { "x": 7, @@ -4677,7 +4677,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 1750, "time": 0.31014126469395104, "position": { "x": 6, @@ -4700,7 +4700,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -4723,7 +4723,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 8, @@ -4746,7 +4746,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -4769,7 +4769,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 3, @@ -4792,7 +4792,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.3228000918243164, "position": { "x": 3, @@ -4815,7 +4815,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.3228000918243164, "position": { "x": 4, @@ -4838,7 +4838,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 4, @@ -4861,7 +4861,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.324909896346044, "position": { "x": 5, @@ -4884,7 +4884,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 1839.0, "time": 0.324909896346044, "position": { "x": 5, @@ -4907,7 +4907,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 3, @@ -4930,7 +4930,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33123930991122663, "position": { "x": 3, @@ -4953,7 +4953,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33123930991122663, "position": { "x": 4, @@ -4976,7 +4976,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 4, @@ -4999,7 +4999,7 @@ { "lineGroupId": 79, "indexInLine": 5, - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.33334911443295423, "position": { "x": 5, @@ -5022,7 +5022,7 @@ { "lineGroupId": 79, "indexInLine": 6, - "noteOrder": 1902.0, + "noteOrder": 1887.0, "time": 0.33334911443295423, "position": { "x": 5, @@ -5045,7 +5045,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3375687234764093, "position": { "x": 3, @@ -5068,7 +5068,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3396785279981369, "position": { "x": 3, @@ -5091,7 +5091,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3396785279981369, "position": { "x": 4, @@ -5114,7 +5114,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 4, @@ -5137,7 +5137,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 5, @@ -5160,7 +5160,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.3417883325198644, "position": { "x": 5, @@ -5183,7 +5183,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 3, @@ -5206,7 +5206,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.343898137041592, "position": { "x": 3, @@ -5229,7 +5229,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.343898137041592, "position": { "x": 4, @@ -5252,7 +5252,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 4, @@ -5275,7 +5275,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 2, @@ -5298,7 +5298,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 4, @@ -5321,7 +5321,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.35444715965022977, "position": { "x": 7, @@ -5344,7 +5344,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 6, @@ -5367,7 +5367,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 3, @@ -5390,7 +5390,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 4, @@ -5413,7 +5413,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 7, @@ -5436,7 +5436,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.37343540034577777, "position": { "x": 7, @@ -5459,7 +5459,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.37343540034577777, "position": { "x": 6, @@ -5482,7 +5482,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 2113.0, "time": 0.37343540034577777, "position": { "x": 6, @@ -5505,7 +5505,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 3, @@ -5528,7 +5528,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.37765500938923297, "position": { "x": 3, @@ -5551,7 +5551,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.37765500938923297, "position": { "x": 4, @@ -5574,7 +5574,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 2137.0, "time": 0.37765500938923297, "position": { "x": 4, @@ -5597,7 +5597,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 7, @@ -5620,7 +5620,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.38187461843268805, "position": { "x": 7, @@ -5643,7 +5643,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.38187461843268805, "position": { "x": 6, @@ -5666,7 +5666,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 6, @@ -5689,7 +5689,7 @@ { "lineGroupId": 90, "indexInLine": 5, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 7, @@ -5712,7 +5712,7 @@ { "lineGroupId": 90, "indexInLine": 6, - "noteOrder": 2190.0, + "noteOrder": 2173.0, "time": 0.3839844229544156, "position": { "x": 7, @@ -5735,7 +5735,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 3, @@ -5758,7 +5758,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.3924236410413259, "position": { "x": 4, @@ -5781,7 +5781,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 7, @@ -5804,7 +5804,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.40086285912823605, "position": { "x": 6, @@ -5827,7 +5827,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4050824681716912, "position": { "x": 3, @@ -5850,7 +5850,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 2297, "time": 0.40719227269341873, "position": { "x": 3, @@ -5873,7 +5873,7 @@ { "lineGroupId": 96, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 2297, "time": 0.40719227269341873, "position": { "x": 4, @@ -5896,7 +5896,7 @@ { "lineGroupId": 96, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 2303.0, "time": 0.40719227269341873, "position": { "x": 4, @@ -5919,7 +5919,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.4093020772151463, "position": { "x": 7, @@ -5942,7 +5942,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4114118817368739, "position": { "x": 7, @@ -5965,7 +5965,7 @@ { "lineGroupId": 97, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4114118817368739, "position": { "x": 6, @@ -5988,7 +5988,7 @@ { "lineGroupId": 97, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 2327.0, "time": 0.4114118817368739, "position": { "x": 6, @@ -6011,7 +6011,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 3, @@ -6034,7 +6034,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.41563149078032896, "position": { "x": 3, @@ -6057,7 +6057,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.41563149078032896, "position": { "x": 4, @@ -6080,7 +6080,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 4, @@ -6103,7 +6103,7 @@ { "lineGroupId": 98, "indexInLine": 5, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 3, @@ -6126,7 +6126,7 @@ { "lineGroupId": 98, "indexInLine": 6, - "noteOrder": 2382.0, + "noteOrder": 2363.0, "time": 0.41774129530205656, "position": { "x": 3, @@ -6149,7 +6149,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.42196090434551164, "position": { "x": 7, @@ -6172,7 +6172,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2412, + "noteOrder": 2393, "time": 0.42407070886723924, "position": { "x": 7, @@ -6195,7 +6195,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2412, + "noteOrder": 2393, "time": 0.42407070886723924, "position": { "x": 6, @@ -6218,7 +6218,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 6, @@ -6241,7 +6241,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 5, @@ -6264,7 +6264,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2430.0, + "noteOrder": 2411.0, "time": 0.42618051338896673, "position": { "x": 5, @@ -6287,7 +6287,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 7, @@ -6310,7 +6310,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2436, + "noteOrder": 2417, "time": 0.42829031791069433, "position": { "x": 7, @@ -6333,7 +6333,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 2436, + "noteOrder": 2417, "time": 0.42829031791069433, "position": { "x": 6, @@ -6356,7 +6356,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 6, @@ -6379,7 +6379,7 @@ { "lineGroupId": 101, "indexInLine": 5, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 5, @@ -6402,7 +6402,7 @@ { "lineGroupId": 101, "indexInLine": 6, - "noteOrder": 2454.0, + "noteOrder": 2434.0, "time": 0.43040012243242187, "position": { "x": 5, @@ -6425,7 +6425,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 7, @@ -6448,7 +6448,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2460, + "noteOrder": 2440, "time": 0.43250992695414947, "position": { "x": 7, @@ -6471,7 +6471,7 @@ { "lineGroupId": 102, "indexInLine": 3, - "noteOrder": 2460, + "noteOrder": 2440, "time": 0.43250992695414947, "position": { "x": 6, @@ -6494,7 +6494,7 @@ { "lineGroupId": 102, "indexInLine": 4, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 6, @@ -6517,7 +6517,7 @@ { "lineGroupId": 102, "indexInLine": 5, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 5, @@ -6540,7 +6540,7 @@ { "lineGroupId": 102, "indexInLine": 6, - "noteOrder": 2478.0, + "noteOrder": 2458.0, "time": 0.434619731475877, "position": { "x": 5, @@ -6563,7 +6563,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 7, @@ -6586,7 +6586,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2484, + "noteOrder": 2464, "time": 0.43672953599760456, "position": { "x": 7, @@ -6609,7 +6609,7 @@ { "lineGroupId": 103, "indexInLine": 3, - "noteOrder": 2484, + "noteOrder": 2464, "time": 0.43672953599760456, "position": { "x": 6, @@ -6632,7 +6632,7 @@ { "lineGroupId": 103, "indexInLine": 4, - "noteOrder": 2490.0, + "noteOrder": 2470.0, "time": 0.43672953599760456, "position": { "x": 6, @@ -6655,7 +6655,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 4, @@ -6678,7 +6678,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 4, @@ -6701,7 +6701,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 6, @@ -6724,7 +6724,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 6, @@ -6747,7 +6747,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 3, @@ -6770,7 +6770,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4493883631279699, "position": { "x": 3, @@ -6793,7 +6793,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4493883631279699, "position": { "x": 4, @@ -6816,7 +6816,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 4, @@ -6839,7 +6839,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 3, @@ -6862,7 +6862,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 2574.0, + "noteOrder": 2553.0, "time": 0.45149816764969747, "position": { "x": 3, @@ -6885,7 +6885,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 3, @@ -6908,7 +6908,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2604, + "noteOrder": 2583, "time": 0.45782758121488015, "position": { "x": 3, @@ -6931,7 +6931,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 2604, + "noteOrder": 2583, "time": 0.45782758121488015, "position": { "x": 4, @@ -6954,7 +6954,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 4, @@ -6977,7 +6977,7 @@ { "lineGroupId": 108, "indexInLine": 5, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 5, @@ -7000,7 +7000,7 @@ { "lineGroupId": 108, "indexInLine": 6, - "noteOrder": 2622.0, + "noteOrder": 2601.0, "time": 0.4599373857366077, "position": { "x": 5, @@ -7023,7 +7023,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 3, @@ -7046,7 +7046,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 2607, "time": 0.46204719025833524, "position": { "x": 3, @@ -7069,7 +7069,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 2607, "time": 0.46204719025833524, "position": { "x": 4, @@ -7092,7 +7092,7 @@ { "lineGroupId": 109, "indexInLine": 4, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 4, @@ -7115,7 +7115,7 @@ { "lineGroupId": 109, "indexInLine": 5, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 5, @@ -7138,7 +7138,7 @@ { "lineGroupId": 109, "indexInLine": 6, - "noteOrder": 2646.0, + "noteOrder": 2625.0, "time": 0.46415699478006284, "position": { "x": 5, @@ -7161,7 +7161,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 3, @@ -7184,7 +7184,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2652, + "noteOrder": 2631, "time": 0.4662667993017904, "position": { "x": 3, @@ -7207,7 +7207,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 2652, + "noteOrder": 2631, "time": 0.4662667993017904, "position": { "x": 4, @@ -7230,7 +7230,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 4, @@ -7253,7 +7253,7 @@ { "lineGroupId": 110, "indexInLine": 5, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 5, @@ -7276,7 +7276,7 @@ { "lineGroupId": 110, "indexInLine": 6, - "noteOrder": 2670.0, + "noteOrder": 2649.0, "time": 0.4683766038235179, "position": { "x": 5, @@ -7299,7 +7299,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 3, @@ -7322,7 +7322,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2676, + "noteOrder": 2655, "time": 0.4704864083452455, "position": { "x": 3, @@ -7345,7 +7345,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2676, + "noteOrder": 2655, "time": 0.4704864083452455, "position": { "x": 4, @@ -7368,7 +7368,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2682.0, + "noteOrder": 2661.0, "time": 0.4704864083452455, "position": { "x": 4, @@ -7391,7 +7391,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 6, @@ -7414,7 +7414,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 6, @@ -7437,7 +7437,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 4, @@ -7460,7 +7460,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 4, @@ -7483,7 +7483,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 7, @@ -7506,7 +7506,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2748, + "noteOrder": 2726, "time": 0.48314523547561083, "position": { "x": 7, @@ -7529,7 +7529,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2748, + "noteOrder": 2726, "time": 0.48314523547561083, "position": { "x": 6, @@ -7552,7 +7552,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 6, @@ -7575,7 +7575,7 @@ { "lineGroupId": 114, "indexInLine": 5, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 7, @@ -7598,7 +7598,7 @@ { "lineGroupId": 114, "indexInLine": 6, - "noteOrder": 2766.0, + "noteOrder": 2744.0, "time": 0.48525503999733843, "position": { "x": 7, @@ -7621,7 +7621,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.4894746490407935, "position": { "x": 7, @@ -7644,7 +7644,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2796, + "noteOrder": 2774, "time": 0.4915844535625211, "position": { "x": 7, @@ -7667,7 +7667,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 2796, + "noteOrder": 2774, "time": 0.4915844535625211, "position": { "x": 6, @@ -7690,7 +7690,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 6, @@ -7713,7 +7713,7 @@ { "lineGroupId": 116, "indexInLine": 5, - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 5, @@ -7736,7 +7736,7 @@ { "lineGroupId": 116, "indexInLine": 6, - "noteOrder": 2814.0, + "noteOrder": 2792.0, "time": 0.4936942580842486, "position": { "x": 5, @@ -7759,7 +7759,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.49791386712770375, "position": { "x": 7, @@ -7782,7 +7782,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2844, + "noteOrder": 2821, "time": 0.5000236716494313, "position": { "x": 7, @@ -7805,7 +7805,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 2844, + "noteOrder": 2821, "time": 0.5000236716494313, "position": { "x": 6, @@ -7828,7 +7828,7 @@ { "lineGroupId": 118, "indexInLine": 4, - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 6, @@ -7851,7 +7851,7 @@ { "lineGroupId": 118, "indexInLine": 5, - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 5, @@ -7874,7 +7874,7 @@ { "lineGroupId": 118, "indexInLine": 6, - "noteOrder": 2862.0, + "noteOrder": 2839.0, "time": 0.5021334761711589, "position": { "x": 5, @@ -7897,7 +7897,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 3, @@ -7920,7 +7920,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5084628897363415, "position": { "x": 3, @@ -7943,7 +7943,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5084628897363415, "position": { "x": 4, @@ -7966,7 +7966,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 4, @@ -7989,7 +7989,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 5, @@ -8012,7 +8012,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 2910.0, + "noteOrder": 2887.0, "time": 0.5105726942580691, "position": { "x": 5, @@ -8035,7 +8035,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 3, @@ -8058,7 +8058,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5126824987797967, "position": { "x": 3, @@ -8081,7 +8081,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5126824987797967, "position": { "x": 4, @@ -8104,7 +8104,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 4, @@ -8127,7 +8127,7 @@ { "lineGroupId": 121, "indexInLine": 5, - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 5, @@ -8150,7 +8150,7 @@ { "lineGroupId": 121, "indexInLine": 6, - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5169021078232517, "position": { "x": 5, @@ -8173,7 +8173,7 @@ { "lineGroupId": 121, "indexInLine": 7, - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5169021078232517, "position": { "x": 4, @@ -8196,7 +8196,7 @@ { "lineGroupId": 121, "indexInLine": 8, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 4, @@ -8219,7 +8219,7 @@ { "lineGroupId": 121, "indexInLine": 9, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 3, @@ -8242,7 +8242,7 @@ { "lineGroupId": 121, "indexInLine": 10, - "noteOrder": 2958.0, + "noteOrder": 2934.0, "time": 0.5190119123449793, "position": { "x": 3, @@ -8265,7 +8265,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 7, @@ -8288,7 +8288,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 2964, + "noteOrder": 2940, "time": 0.5211217168667069, "position": { "x": 7, @@ -8311,7 +8311,7 @@ { "lineGroupId": 123, "indexInLine": 3, - "noteOrder": 2964, + "noteOrder": 2940, "time": 0.5211217168667069, "position": { "x": 6, @@ -8334,7 +8334,7 @@ { "lineGroupId": 123, "indexInLine": 4, - "noteOrder": 2970.0, + "noteOrder": 2946.0, "time": 0.5211217168667069, "position": { "x": 6, @@ -8357,7 +8357,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 3, @@ -8380,7 +8380,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.525341325910162, "position": { "x": 3, @@ -8403,7 +8403,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.525341325910162, "position": { "x": 4, @@ -8426,7 +8426,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 4, @@ -8449,7 +8449,7 @@ { "lineGroupId": 124, "indexInLine": 5, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 5, @@ -8472,7 +8472,7 @@ { "lineGroupId": 124, "indexInLine": 6, - "noteOrder": 3006.0, + "noteOrder": 2982.0, "time": 0.5274511304318896, "position": { "x": 5, @@ -8495,7 +8495,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 3, @@ -8518,7 +8518,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3036, + "noteOrder": 3012, "time": 0.5337805439970723, "position": { "x": 3, @@ -8541,7 +8541,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3036, + "noteOrder": 3012, "time": 0.5337805439970723, "position": { "x": 4, @@ -8564,7 +8564,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 4, @@ -8587,7 +8587,7 @@ { "lineGroupId": 126, "indexInLine": 5, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 5, @@ -8610,7 +8610,7 @@ { "lineGroupId": 126, "indexInLine": 6, - "noteOrder": 3054.0, + "noteOrder": 3030.0, "time": 0.5358903485187998, "position": { "x": 5, @@ -8633,7 +8633,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 7, @@ -8656,7 +8656,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5422197620839825, "position": { "x": 7, @@ -8679,7 +8679,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5422197620839825, "position": { "x": 6, @@ -8702,7 +8702,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 6, @@ -8725,7 +8725,7 @@ { "lineGroupId": 128, "indexInLine": 5, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 5, @@ -8748,7 +8748,7 @@ { "lineGroupId": 128, "indexInLine": 6, - "noteOrder": 3102.0, + "noteOrder": 3077.0, "time": 0.5443295666057101, "position": { "x": 5, @@ -8771,7 +8771,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 7, @@ -8794,7 +8794,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5464393711274376, "position": { "x": 7, @@ -8817,7 +8817,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5464393711274376, "position": { "x": 6, @@ -8840,7 +8840,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 3114.0, + "noteOrder": 3089.0, "time": 0.5464393711274376, "position": { "x": 6, @@ -8863,7 +8863,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.5485491756491652, "position": { "x": 3, @@ -8886,7 +8886,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5506589801708927, "position": { "x": 3, @@ -8909,7 +8909,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5506589801708927, "position": { "x": 4, @@ -8932,7 +8932,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 4, @@ -8955,7 +8955,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 3, @@ -8978,7 +8978,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3150.0, + "noteOrder": 3125.0, "time": 0.5527687846926203, "position": { "x": 3, @@ -9001,7 +9001,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5569883937360753, "position": { "x": 6, @@ -9024,7 +9024,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 6, @@ -9047,7 +9047,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 4, @@ -9070,7 +9070,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 4, @@ -9093,7 +9093,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 7, @@ -9116,7 +9116,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 7, @@ -9139,7 +9139,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.5991844841706266, "position": { "x": 3, @@ -9162,7 +9162,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 3, @@ -9185,7 +9185,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.6920158831266392, "position": { "x": 7, @@ -9208,7 +9208,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 3916, "time": 0.6941256876483666, "position": { "x": 7, @@ -9231,7 +9231,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 3916, "time": 0.6941256876483666, "position": { "x": 6, @@ -9254,7 +9254,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 6, @@ -9277,7 +9277,7 @@ { "lineGroupId": 167, "indexInLine": 5, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 5, @@ -9300,7 +9300,7 @@ { "lineGroupId": 167, "indexInLine": 6, - "noteOrder": 3966.0, + "noteOrder": 3934.0, "time": 0.6962354921700942, "position": { "x": 5, @@ -9323,7 +9323,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 7, @@ -9346,7 +9346,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 3940, "time": 0.6983452966918218, "position": { "x": 7, @@ -9369,7 +9369,7 @@ { "lineGroupId": 168, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 3940, "time": 0.6983452966918218, "position": { "x": 6, @@ -9392,7 +9392,7 @@ { "lineGroupId": 168, "indexInLine": 4, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 6, @@ -9415,7 +9415,7 @@ { "lineGroupId": 168, "indexInLine": 5, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 5, @@ -9438,7 +9438,7 @@ { "lineGroupId": 168, "indexInLine": 6, - "noteOrder": 3990.0, + "noteOrder": 3958.0, "time": 0.7004551012135494, "position": { "x": 5, @@ -9461,7 +9461,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 7, @@ -9484,7 +9484,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 3996, + "noteOrder": 3964, "time": 0.702564905735277, "position": { "x": 7, @@ -9507,7 +9507,7 @@ { "lineGroupId": 169, "indexInLine": 3, - "noteOrder": 3996, + "noteOrder": 3964, "time": 0.702564905735277, "position": { "x": 6, @@ -9530,7 +9530,7 @@ { "lineGroupId": 169, "indexInLine": 4, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 6, @@ -9553,7 +9553,7 @@ { "lineGroupId": 169, "indexInLine": 5, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 5, @@ -9576,7 +9576,7 @@ { "lineGroupId": 169, "indexInLine": 6, - "noteOrder": 4014.0, + "noteOrder": 3982.0, "time": 0.7046747102570045, "position": { "x": 5, @@ -9599,7 +9599,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 7, @@ -9622,7 +9622,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 3988, "time": 0.7067845147787319, "position": { "x": 7, @@ -9645,7 +9645,7 @@ { "lineGroupId": 170, "indexInLine": 3, - "noteOrder": 4020, + "noteOrder": 3988, "time": 0.7067845147787319, "position": { "x": 6, @@ -9668,7 +9668,7 @@ { "lineGroupId": 170, "indexInLine": 4, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 6, @@ -9691,7 +9691,7 @@ { "lineGroupId": 170, "indexInLine": 5, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 5, @@ -9714,7 +9714,7 @@ { "lineGroupId": 170, "indexInLine": 6, - "noteOrder": 4038.0, + "noteOrder": 4006.0, "time": 0.7088943193004595, "position": { "x": 5, @@ -9737,7 +9737,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 7, @@ -9760,7 +9760,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4044, + "noteOrder": 4012, "time": 0.7110041238221871, "position": { "x": 7, @@ -9783,7 +9783,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 4044, + "noteOrder": 4012, "time": 0.7110041238221871, "position": { "x": 6, @@ -9806,7 +9806,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 6, @@ -9829,7 +9829,7 @@ { "lineGroupId": 171, "indexInLine": 5, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 5, @@ -9852,7 +9852,7 @@ { "lineGroupId": 171, "indexInLine": 6, - "noteOrder": 4062.0, + "noteOrder": 4030.0, "time": 0.7131139283439147, "position": { "x": 5, @@ -9875,7 +9875,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 7, @@ -9898,7 +9898,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4068, + "noteOrder": 4035, "time": 0.7152237328656422, "position": { "x": 7, @@ -9921,7 +9921,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 4068, + "noteOrder": 4035, "time": 0.7152237328656422, "position": { "x": 6, @@ -9944,7 +9944,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 6, @@ -9967,7 +9967,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 5, @@ -9990,7 +9990,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 4086.0, + "noteOrder": 4053.0, "time": 0.7173335373873698, "position": { "x": 5, @@ -10013,7 +10013,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 7, @@ -10036,7 +10036,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4092, + "noteOrder": 4059, "time": 0.7194433419090974, "position": { "x": 7, @@ -10059,7 +10059,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 4092, + "noteOrder": 4059, "time": 0.7194433419090974, "position": { "x": 6, @@ -10082,7 +10082,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 6, @@ -10105,7 +10105,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 5, @@ -10128,7 +10128,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 4110.0, + "noteOrder": 4077.0, "time": 0.7215531464308249, "position": { "x": 5, @@ -10151,7 +10151,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 7, @@ -10174,7 +10174,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4116, + "noteOrder": 4083, "time": 0.7236629509525525, "position": { "x": 7, @@ -10197,7 +10197,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 4116, + "noteOrder": 4083, "time": 0.7236629509525525, "position": { "x": 6, @@ -10220,7 +10220,7 @@ { "lineGroupId": 174, "indexInLine": 4, - "noteOrder": 4122.0, + "noteOrder": 4089.0, "time": 0.7236629509525525, "position": { "x": 6, @@ -10243,7 +10243,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7426511916481006, "position": { "x": 7, @@ -10266,7 +10266,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7447609961698282, "position": { "x": 7, @@ -10289,7 +10289,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7447609961698282, "position": { "x": 6, @@ -10312,7 +10312,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 4242.0, + "noteOrder": 4208.0, "time": 0.7447609961698282, "position": { "x": 6, @@ -10335,7 +10335,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7468708006915555, "position": { "x": 3, @@ -10358,7 +10358,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7489806052132831, "position": { "x": 3, @@ -10381,7 +10381,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7489806052132831, "position": { "x": 4, @@ -10404,7 +10404,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 4266.0, + "noteOrder": 4232.0, "time": 0.7489806052132831, "position": { "x": 4, @@ -10427,7 +10427,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7510904097350107, "position": { "x": 7, @@ -10450,7 +10450,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.7532002142567383, "position": { "x": 7, @@ -10473,7 +10473,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.7532002142567383, "position": { "x": 6, @@ -10496,7 +10496,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 6, @@ -10519,7 +10519,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 7, @@ -10542,7 +10542,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4302.0, + "noteOrder": 4268.0, "time": 0.7553100187784659, "position": { "x": 7, @@ -10565,7 +10565,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4285, "time": 0.7595296278219209, "position": { "x": 3, @@ -10588,7 +10588,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4332, + "noteOrder": 4297, "time": 0.7616394323436485, "position": { "x": 3, @@ -10611,7 +10611,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 4332, + "noteOrder": 4297, "time": 0.7616394323436485, "position": { "x": 4, @@ -10634,7 +10634,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 4, @@ -10657,7 +10657,7 @@ { "lineGroupId": 187, "indexInLine": 5, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 5, @@ -10680,7 +10680,7 @@ { "lineGroupId": 187, "indexInLine": 6, - "noteOrder": 4350.0, + "noteOrder": 4315.0, "time": 0.7637492368653761, "position": { "x": 5, @@ -10703,7 +10703,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 3, @@ -10726,7 +10726,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 4321, "time": 0.7658590413871037, "position": { "x": 3, @@ -10749,7 +10749,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 4356, + "noteOrder": 4321, "time": 0.7658590413871037, "position": { "x": 4, @@ -10772,7 +10772,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 4, @@ -10795,7 +10795,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 5, @@ -10818,7 +10818,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 4374.0, + "noteOrder": 4339.0, "time": 0.7679688459088312, "position": { "x": 5, @@ -10841,7 +10841,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 3, @@ -10864,7 +10864,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 4345, "time": 0.7700786504305588, "position": { "x": 3, @@ -10887,7 +10887,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 4345, "time": 0.7700786504305588, "position": { "x": 4, @@ -10910,7 +10910,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 4, @@ -10933,7 +10933,7 @@ { "lineGroupId": 189, "indexInLine": 5, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 5, @@ -10956,7 +10956,7 @@ { "lineGroupId": 189, "indexInLine": 6, - "noteOrder": 4398.0, + "noteOrder": 4363.0, "time": 0.7721884549522864, "position": { "x": 5, @@ -10979,7 +10979,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 3, @@ -11002,7 +11002,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4404, + "noteOrder": 4369, "time": 0.7742982594740139, "position": { "x": 3, @@ -11025,7 +11025,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4404, + "noteOrder": 4369, "time": 0.7742982594740139, "position": { "x": 4, @@ -11048,7 +11048,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 4, @@ -11071,7 +11071,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 5, @@ -11094,7 +11094,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 4422.0, + "noteOrder": 4387.0, "time": 0.7764080639957415, "position": { "x": 5, @@ -11117,128 +11117,174 @@ { "lineGroupId": 191, "indexInLine": 1, + "noteOrder": 4381, + "time": 0.7764080639957415, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 2, + "noteOrder": 4393, + "time": 0.778517868517469, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 3, + "noteOrder": 4393, + "time": 0.778517868517469, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 4, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 5, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 191, + "indexInLine": 6, + "noteOrder": 4411.0, + "time": 0.7806276730391966, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 1, + "noteOrder": 4405, + "time": 0.7806276730391966, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 2, "noteOrder": 4416, - "time": 0.7764080639957415, + "time": 0.7827374775609242, "position": { "x": 3, "y": 0 }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 2, - "noteOrder": 4428, - "time": 0.778517868517469, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 3, - "noteOrder": 4428, - "time": 0.778517868517469, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 4, - "noteOrder": 4440, - "time": 0.7806276730391966, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 5, - "noteOrder": 4440, - "time": 0.7806276730391966, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 191, - "indexInLine": 6, - "noteOrder": 4446.0, - "time": 0.7806276730391966, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, + "noteType": 13, "position2D": { "x": 0, "y": 0 @@ -11254,14 +11300,106 @@ }, { "lineGroupId": 192, + "indexInLine": 3, + "noteOrder": 4416, + "time": 0.7827374775609242, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 4, + "noteOrder": 4428, + "time": 0.7848472820826518, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 5, + "noteOrder": 4428, + "time": 0.7848472820826518, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 192, + "indexInLine": 6, + "noteOrder": 4434.0, + "time": 0.7848472820826518, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4440, - "time": 0.7806276730391966, + "noteOrder": 4428, + "time": 0.7848472820826518, "position": { "x": 3, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11276,15 +11414,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 4452, - "time": 0.7827374775609242, + "noteOrder": 4440, + "time": 0.7869570866043792, "position": { "x": 3, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11299,15 +11437,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 4452, - "time": 0.7827374775609242, + "noteOrder": 4440, + "time": 0.7869570866043792, "position": { "x": 4, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11322,15 +11460,15 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 4464, - "time": 0.7848472820826518, + "noteOrder": 4452, + "time": 0.7890668911261067, "position": { "x": 4, "y": 0 }, - "noteType": 13, + "noteType": 12, "position2D": { "x": 0, "y": 0 @@ -11345,14 +11483,60 @@ "isSliding": false }, { - "lineGroupId": 192, + "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 4464, - "time": 0.7848472820826518, + "noteOrder": 4452, + "time": 0.7890668911261067, "position": { "x": 5, "y": 0 }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 193, + "indexInLine": 6, + "noteOrder": 4458.0, + "time": 0.7890668911261067, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 1, + "noteOrder": 4452, + "time": 0.7890668911261067, + "position": { + "x": 3, + "y": 0 + }, "noteType": 13, "position2D": { "x": 0, @@ -11368,239 +11552,55 @@ "isSliding": false }, { - "lineGroupId": 192, - "indexInLine": 6, + "lineGroupId": 194, + "indexInLine": 2, + "noteOrder": 4464, + "time": 0.7911766956478343, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 3, + "noteOrder": 4464, + "time": 0.7911766956478343, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 194, + "indexInLine": 4, "noteOrder": 4470.0, - "time": 0.7848472820826518, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 1, - "noteOrder": 4464, - "time": 0.7848472820826518, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 2, - "noteOrder": 4476, - "time": 0.7869570866043792, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 3, - "noteOrder": 4476, - "time": 0.7869570866043792, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 4, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 5, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 193, - "indexInLine": 6, - "noteOrder": 4494.0, - "time": 0.7890668911261067, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 1, - "noteOrder": 4488, - "time": 0.7890668911261067, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 2, - "noteOrder": 4500, - "time": 0.7911766956478343, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 3, - "noteOrder": 4500, - "time": 0.7911766956478343, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 194, - "indexInLine": 4, - "noteOrder": 4506.0, "time": 0.7911766956478343, "position": { "x": 4, @@ -11623,7 +11623,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8101649363433824, "position": { "x": 3, @@ -11646,7 +11646,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8122747408651099, "position": { "x": 3, @@ -11669,7 +11669,7 @@ { "lineGroupId": 203, "indexInLine": 3, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8122747408651099, "position": { "x": 4, @@ -11692,7 +11692,7 @@ { "lineGroupId": 203, "indexInLine": 4, - "noteOrder": 4626.0, + "noteOrder": 4589.0, "time": 0.8122747408651099, "position": { "x": 4, @@ -11715,7 +11715,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8143845453868375, "position": { "x": 7, @@ -11738,7 +11738,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8164943499085651, "position": { "x": 7, @@ -11761,7 +11761,7 @@ { "lineGroupId": 204, "indexInLine": 3, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8164943499085651, "position": { "x": 6, @@ -11784,7 +11784,7 @@ { "lineGroupId": 204, "indexInLine": 4, - "noteOrder": 4650.0, + "noteOrder": 4613.0, "time": 0.8164943499085651, "position": { "x": 6, @@ -11807,7 +11807,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8186041544302926, "position": { "x": 3, @@ -11830,7 +11830,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8207139589520202, "position": { "x": 3, @@ -11853,7 +11853,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8207139589520202, "position": { "x": 4, @@ -11876,7 +11876,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 4, @@ -11899,7 +11899,7 @@ { "lineGroupId": 205, "indexInLine": 5, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 3, @@ -11922,7 +11922,7 @@ { "lineGroupId": 205, "indexInLine": 6, - "noteOrder": 4686.0, + "noteOrder": 4649.0, "time": 0.8228237634737477, "position": { "x": 3, @@ -11945,7 +11945,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8270433725172028, "position": { "x": 7, @@ -11968,7 +11968,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8291531770389303, "position": { "x": 7, @@ -11991,7 +11991,7 @@ { "lineGroupId": 207, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8291531770389303, "position": { "x": 6, @@ -12014,7 +12014,7 @@ { "lineGroupId": 207, "indexInLine": 4, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 6, @@ -12037,7 +12037,7 @@ { "lineGroupId": 207, "indexInLine": 5, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 5, @@ -12060,7 +12060,7 @@ { "lineGroupId": 207, "indexInLine": 6, - "noteOrder": 4734.0, + "noteOrder": 4696.0, "time": 0.8312629815606579, "position": { "x": 5, @@ -12083,7 +12083,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 7, @@ -12106,7 +12106,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8375923951258407, "position": { "x": 7, @@ -12129,7 +12129,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8375923951258407, "position": { "x": 6, @@ -12152,7 +12152,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 6, @@ -12175,7 +12175,7 @@ { "lineGroupId": 209, "indexInLine": 5, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 5, @@ -12198,7 +12198,7 @@ { "lineGroupId": 209, "indexInLine": 6, - "noteOrder": 4782.0, + "noteOrder": 4744.0, "time": 0.8397021996475681, "position": { "x": 5, @@ -12221,7 +12221,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 7, @@ -12244,7 +12244,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4812, + "noteOrder": 4774, "time": 0.8460316132127509, "position": { "x": 7, @@ -12267,7 +12267,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 4812, + "noteOrder": 4774, "time": 0.8460316132127509, "position": { "x": 6, @@ -12290,7 +12290,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 6, @@ -12313,7 +12313,7 @@ { "lineGroupId": 211, "indexInLine": 5, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 5, @@ -12336,7 +12336,7 @@ { "lineGroupId": 211, "indexInLine": 6, - "noteOrder": 4830.0, + "noteOrder": 4791.0, "time": 0.8481414177344785, "position": { "x": 5, @@ -12359,7 +12359,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 7, @@ -12382,7 +12382,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4836, + "noteOrder": 4797, "time": 0.850251222256206, "position": { "x": 7, @@ -12405,7 +12405,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 4836, + "noteOrder": 4797, "time": 0.850251222256206, "position": { "x": 6, @@ -12428,7 +12428,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 6, @@ -12451,7 +12451,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 7, @@ -12474,7 +12474,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 4860, + "noteOrder": 4821, "time": 0.8544708312996611, "position": { "x": 7, @@ -12497,7 +12497,7 @@ { "lineGroupId": 212, "indexInLine": 7, - "noteOrder": 4860, + "noteOrder": 4821, "time": 0.8544708312996611, "position": { "x": 6, @@ -12520,7 +12520,7 @@ { "lineGroupId": 212, "indexInLine": 8, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 6, @@ -12543,7 +12543,7 @@ { "lineGroupId": 212, "indexInLine": 9, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 7, @@ -12566,7 +12566,7 @@ { "lineGroupId": 212, "indexInLine": 10, - "noteOrder": 4878.0, + "noteOrder": 4839.0, "time": 0.8565806358213887, "position": { "x": 7, @@ -12589,7 +12589,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.8945571172124847, "position": { "x": 3, @@ -12612,7 +12612,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.8966669217342123, "position": { "x": 3, @@ -12635,7 +12635,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.8966669217342123, "position": { "x": 4, @@ -12658,7 +12658,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 4, @@ -12681,7 +12681,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 5, @@ -12704,7 +12704,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 5118.0, + "noteOrder": 5077.0, "time": 0.8987767262559399, "position": { "x": 5, @@ -12727,7 +12727,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 3, @@ -12750,7 +12750,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9051061398211224, "position": { "x": 3, @@ -12773,7 +12773,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9051061398211224, "position": { "x": 4, @@ -12796,7 +12796,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 4, @@ -12819,7 +12819,7 @@ { "lineGroupId": 226, "indexInLine": 5, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 5, @@ -12842,7 +12842,7 @@ { "lineGroupId": 226, "indexInLine": 6, - "noteOrder": 5166.0, + "noteOrder": 5125.0, "time": 0.90721594434285, "position": { "x": 5, @@ -12865,7 +12865,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 3, @@ -12888,7 +12888,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5196, + "noteOrder": 5154, "time": 0.9135453579080327, "position": { "x": 3, @@ -12911,7 +12911,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5196, + "noteOrder": 5154, "time": 0.9135453579080327, "position": { "x": 4, @@ -12934,7 +12934,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 4, @@ -12957,7 +12957,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 5, @@ -12980,7 +12980,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 5214.0, + "noteOrder": 5172.0, "time": 0.9156551624297603, "position": { "x": 5, @@ -13003,7 +13003,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 3, @@ -13026,7 +13026,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5220, + "noteOrder": 5178, "time": 0.9177649669514879, "position": { "x": 3, @@ -13049,7 +13049,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5220, + "noteOrder": 5178, "time": 0.9177649669514879, "position": { "x": 4, @@ -13072,7 +13072,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 4, @@ -13095,7 +13095,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 3, @@ -13118,7 +13118,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5244, + "noteOrder": 5202, "time": 0.921984575994943, "position": { "x": 3, @@ -13141,7 +13141,7 @@ { "lineGroupId": 229, "indexInLine": 7, - "noteOrder": 5244, + "noteOrder": 5202, "time": 0.921984575994943, "position": { "x": 4, @@ -13164,7 +13164,7 @@ { "lineGroupId": 229, "indexInLine": 8, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 4, @@ -13187,7 +13187,7 @@ { "lineGroupId": 229, "indexInLine": 9, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 3, @@ -13210,7 +13210,7 @@ { "lineGroupId": 229, "indexInLine": 10, - "noteOrder": 5262.0, + "noteOrder": 5220.0, "time": 0.9240943805166705, "position": { "x": 3, @@ -13233,7 +13233,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9283139895601257, "position": { "x": 3, @@ -13256,7 +13256,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 4, @@ -13279,7 +13279,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9367532076470358, "position": { "x": 7, @@ -13302,7 +13302,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 6, @@ -13325,7 +13325,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 6, @@ -13348,7 +13348,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 6, @@ -13371,7 +13371,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 4, @@ -13394,7 +13394,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 4, @@ -13429,7 +13429,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "5.26", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b.json index 4030c573..4eb1cc66 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "Crystal Clear difficulty_1b", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 95, "time": 0.016878436173820465, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 143, "time": 0.0253176542607307, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 190, "time": 0.03375687234764093, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 286, "time": 0.0506353085214614, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 333, "time": 0.059074526608371626, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 381, "time": 0.06751374469528186, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.14768631652092906, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 976, "time": 0.1730039707816598, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.2067608431293007, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.2278588883465763, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 5, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.24473732452039676, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 5, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.27005497878112744, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2742745878245826, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3375687234764093, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4050824681716912, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.4093020772151463, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.49791386712770375, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.5485491756491652, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.578086438953351, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6076237022575368, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6118433113009919, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6329413565182674, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.649819792692088, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6582590107789982, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6624786198224533, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6666982288659085, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6709178379093635, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6751374469528186, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6793570559962738, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6835766650397288, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6835766650397288, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7299923645177352, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7342119735611903, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7426511916481006, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7468708006915555, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7510904097350107, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.797506109213017, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8017257182564721, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8101649363433824, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8143845453868375, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8186041544302926, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 6, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 3, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8776786810386643, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.8818982900821193, "position": { "x": 6, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.8861178991255745, "position": { "x": 3, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 7, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 3, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 6, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.945192425733946, "position": { "x": 3, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 5357, "time": 0.9494120347774012, "position": { "x": 7, @@ -2567,7 +2567,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08439218086910233, "position": { "x": 3, @@ -2590,7 +2590,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 3, @@ -2613,7 +2613,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 571, "time": 0.1012706170429228, "position": { "x": 7, @@ -2636,7 +2636,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 7, @@ -2659,7 +2659,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 667, "time": 0.11814905321674325, "position": { "x": 3, @@ -2682,7 +2682,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 3, @@ -2705,7 +2705,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 762, "time": 0.13502748939056372, "position": { "x": 7, @@ -2728,7 +2728,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 7, @@ -2751,7 +2751,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.1519059255643842, "position": { "x": 3, @@ -2774,7 +2774,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 888, + "noteOrder": 881, "time": 0.15612553460783932, "position": { "x": 3, @@ -2797,7 +2797,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 912, + "noteOrder": 905, "time": 0.1603451436512944, "position": { "x": 7, @@ -2820,7 +2820,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.16456475269474954, "position": { "x": 7, @@ -2843,7 +2843,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18566279791202514, "position": { "x": 7, @@ -2866,7 +2866,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.18988240695548023, "position": { "x": 7, @@ -2889,7 +2889,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19410201599893537, "position": { "x": 3, @@ -2912,7 +2912,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.19832162504239048, "position": { "x": 3, @@ -2935,7 +2935,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.21941967025966608, "position": { "x": 7, @@ -2958,7 +2958,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 7, @@ -2981,7 +2981,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 3, @@ -3004,7 +3004,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 3, @@ -3027,7 +3027,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 7, @@ -3050,7 +3050,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 7, @@ -3073,7 +3073,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.2616157606942172, "position": { "x": 3, @@ -3096,7 +3096,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 3, @@ -3119,7 +3119,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.28693341495494795, "position": { "x": 7, @@ -3142,7 +3142,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 7, @@ -3165,7 +3165,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 6, @@ -3188,7 +3188,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 6, @@ -3211,7 +3211,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 5, @@ -3234,7 +3234,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1686.0, + "noteOrder": 1673.0, "time": 0.2953726330418581, "position": { "x": 5, @@ -3257,7 +3257,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 7, @@ -3280,7 +3280,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 7, @@ -3303,7 +3303,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 6, @@ -3326,7 +3326,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 6, @@ -3349,7 +3349,7 @@ { "lineGroupId": 48, "indexInLine": 5, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 5, @@ -3372,7 +3372,7 @@ { "lineGroupId": 48, "indexInLine": 6, - "noteOrder": 1734.0, + "noteOrder": 1720.0, "time": 0.3038118511287684, "position": { "x": 5, @@ -3395,7 +3395,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 7, @@ -3418,7 +3418,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 7, @@ -3441,7 +3441,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 6, @@ -3464,7 +3464,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 6, @@ -3487,7 +3487,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 5, @@ -3510,7 +3510,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1782.0, + "noteOrder": 1768.0, "time": 0.31225106921567863, "position": { "x": 5, @@ -3533,7 +3533,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 7, @@ -3556,7 +3556,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 7, @@ -3579,7 +3579,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -3602,7 +3602,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 6, @@ -3625,7 +3625,7 @@ { "lineGroupId": 50, "indexInLine": 5, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 5, @@ -3648,7 +3648,7 @@ { "lineGroupId": 50, "indexInLine": 6, - "noteOrder": 1830.0, + "noteOrder": 1815.0, "time": 0.3206902873025888, "position": { "x": 5, @@ -3671,7 +3671,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 7, @@ -3694,7 +3694,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 7, @@ -3717,7 +3717,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.35444715965022977, "position": { "x": 3, @@ -3740,7 +3740,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 3, @@ -3763,7 +3763,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 4, @@ -3786,7 +3786,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 4, @@ -3809,7 +3809,7 @@ { "lineGroupId": 59, "indexInLine": 5, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 5, @@ -3832,7 +3832,7 @@ { "lineGroupId": 59, "indexInLine": 6, - "noteOrder": 2070.0, + "noteOrder": 2054.0, "time": 0.36288637773714, "position": { "x": 5, @@ -3855,7 +3855,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 3, @@ -3878,7 +3878,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 3, @@ -3901,7 +3901,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 4, @@ -3924,7 +3924,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 4, @@ -3947,7 +3947,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 5, @@ -3970,7 +3970,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 2118.0, + "noteOrder": 2101.0, "time": 0.3713255958240503, "position": { "x": 5, @@ -3993,7 +3993,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 3, @@ -4016,7 +4016,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 3, @@ -4039,7 +4039,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 4, @@ -4062,7 +4062,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 4, @@ -4085,7 +4085,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 5, @@ -4108,7 +4108,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 2166.0, + "noteOrder": 2149.0, "time": 0.37976481391096045, "position": { "x": 5, @@ -4131,7 +4131,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 3, @@ -4154,7 +4154,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 3, @@ -4177,7 +4177,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 4, @@ -4200,7 +4200,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 4, @@ -4223,7 +4223,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 5, @@ -4246,7 +4246,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 2214.0, + "noteOrder": 2196.0, "time": 0.38820403199787074, "position": { "x": 5, @@ -4269,7 +4269,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 3, @@ -4292,7 +4292,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 3, @@ -4315,7 +4315,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.42196090434551164, "position": { "x": 7, @@ -4338,7 +4338,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 7, @@ -4361,7 +4361,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 3, @@ -4384,7 +4384,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 3, @@ -4407,7 +4407,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 7, @@ -4430,7 +4430,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 6, @@ -4453,7 +4453,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 3, @@ -4476,7 +4476,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 4, @@ -4499,7 +4499,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 7, @@ -4522,7 +4522,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 6, @@ -4545,7 +4545,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 3, @@ -4568,7 +4568,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 4, @@ -4591,7 +4591,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.4894746490407935, "position": { "x": 3, @@ -4614,7 +4614,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 3, @@ -4637,7 +4637,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 7, @@ -4660,7 +4660,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 7, @@ -4683,7 +4683,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 3, @@ -4706,7 +4706,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 4, @@ -4729,7 +4729,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 7, @@ -4752,7 +4752,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 6, @@ -4775,7 +4775,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 3, @@ -4798,7 +4798,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 4, @@ -4821,7 +4821,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 7, @@ -4844,7 +4844,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 6, @@ -4867,7 +4867,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5569883937360753, "position": { "x": 3, @@ -4890,7 +4890,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 3166, "time": 0.5612080027795304, "position": { "x": 3, @@ -4913,7 +4913,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5654276118229856, "position": { "x": 7, @@ -4936,7 +4936,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5696472208664407, "position": { "x": 7, @@ -4959,7 +4959,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 7, @@ -4982,7 +4982,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 7, @@ -5005,7 +5005,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.5991844841706266, "position": { "x": 3, @@ -5028,7 +5028,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 3, @@ -5051,7 +5051,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6245021384313573, "position": { "x": 7, @@ -5074,7 +5074,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 7, @@ -5097,7 +5097,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6413805746051776, "position": { "x": 3, @@ -5120,7 +5120,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 3, @@ -5143,7 +5143,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.6920158831266392, "position": { "x": 3, @@ -5166,7 +5166,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 3, @@ -5189,7 +5189,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 4, @@ -5212,7 +5212,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 4, @@ -5235,7 +5235,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 5, @@ -5258,7 +5258,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3990.0, + "noteOrder": 3958.0, "time": 0.7004551012135494, "position": { "x": 5, @@ -5281,7 +5281,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 3, @@ -5304,7 +5304,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 3, @@ -5327,7 +5327,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 4, @@ -5350,7 +5350,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 4, @@ -5373,7 +5373,7 @@ { "lineGroupId": 131, "indexInLine": 5, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 5, @@ -5396,7 +5396,7 @@ { "lineGroupId": 131, "indexInLine": 6, - "noteOrder": 4038.0, + "noteOrder": 4006.0, "time": 0.7088943193004595, "position": { "x": 5, @@ -5419,7 +5419,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 3, @@ -5442,7 +5442,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 3, @@ -5465,7 +5465,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 4, @@ -5488,7 +5488,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 4, @@ -5511,7 +5511,7 @@ { "lineGroupId": 132, "indexInLine": 5, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 5, @@ -5534,7 +5534,7 @@ { "lineGroupId": 132, "indexInLine": 6, - "noteOrder": 4086.0, + "noteOrder": 4053.0, "time": 0.7173335373873698, "position": { "x": 5, @@ -5557,7 +5557,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 3, @@ -5580,7 +5580,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 3, @@ -5603,7 +5603,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 4, @@ -5626,7 +5626,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 4, @@ -5649,7 +5649,7 @@ { "lineGroupId": 133, "indexInLine": 5, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 5, @@ -5672,7 +5672,7 @@ { "lineGroupId": 133, "indexInLine": 6, - "noteOrder": 4134.0, + "noteOrder": 4101.0, "time": 0.72577275547428, "position": { "x": 5, @@ -5695,7 +5695,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4285, "time": 0.7595296278219209, "position": { "x": 7, @@ -5718,7 +5718,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 7, @@ -5741,7 +5741,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 6, @@ -5764,7 +5764,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 6, @@ -5787,7 +5787,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 5, @@ -5810,7 +5810,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 4374.0, + "noteOrder": 4339.0, "time": 0.7679688459088312, "position": { "x": 5, @@ -5833,7 +5833,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 7, @@ -5856,7 +5856,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 7, @@ -5879,7 +5879,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 6, @@ -5902,7 +5902,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 6, @@ -5925,7 +5925,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 5, @@ -5948,7 +5948,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 4422.0, + "noteOrder": 4387.0, "time": 0.7764080639957415, "position": { "x": 5, @@ -5971,7 +5971,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 7, @@ -5994,7 +5994,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7806276730391966, "position": { "x": 7, @@ -6017,7 +6017,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7806276730391966, "position": { "x": 6, @@ -6040,7 +6040,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 6, @@ -6063,7 +6063,7 @@ { "lineGroupId": 146, "indexInLine": 5, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 5, @@ -6086,7 +6086,7 @@ { "lineGroupId": 146, "indexInLine": 6, - "noteOrder": 4470.0, + "noteOrder": 4434.0, "time": 0.7848472820826518, "position": { "x": 5, @@ -6109,7 +6109,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 7, @@ -6132,7 +6132,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.7890668911261067, "position": { "x": 7, @@ -6155,7 +6155,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.7890668911261067, "position": { "x": 6, @@ -6178,7 +6178,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 6, @@ -6201,7 +6201,7 @@ { "lineGroupId": 147, "indexInLine": 5, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 5, @@ -6224,7 +6224,7 @@ { "lineGroupId": 147, "indexInLine": 6, - "noteOrder": 4518.0, + "noteOrder": 4482.0, "time": 0.7932865001695619, "position": { "x": 5, @@ -6247,7 +6247,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8270433725172028, "position": { "x": 3, @@ -6270,7 +6270,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 3, @@ -6293,7 +6293,7 @@ { "lineGroupId": 158, "indexInLine": 3, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 4, @@ -6316,7 +6316,7 @@ { "lineGroupId": 158, "indexInLine": 4, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 4, @@ -6339,7 +6339,7 @@ { "lineGroupId": 158, "indexInLine": 5, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 5, @@ -6362,7 +6362,7 @@ { "lineGroupId": 158, "indexInLine": 6, - "noteOrder": 4758.0, + "noteOrder": 4720.0, "time": 0.8354825906041131, "position": { "x": 5, @@ -6385,7 +6385,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 3, @@ -6408,7 +6408,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 3, @@ -6431,7 +6431,7 @@ { "lineGroupId": 159, "indexInLine": 3, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 4, @@ -6454,7 +6454,7 @@ { "lineGroupId": 159, "indexInLine": 4, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 4, @@ -6477,7 +6477,7 @@ { "lineGroupId": 159, "indexInLine": 5, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 5, @@ -6500,7 +6500,7 @@ { "lineGroupId": 159, "indexInLine": 6, - "noteOrder": 4806.0, + "noteOrder": 4768.0, "time": 0.8439218086910233, "position": { "x": 5, @@ -6523,7 +6523,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.8608002448648437, "position": { "x": 7, @@ -6546,7 +6546,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 7, @@ -6569,7 +6569,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 6, @@ -6592,7 +6592,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 4926.0, + "noteOrder": 4887.0, "time": 0.8650198539082989, "position": { "x": 6, @@ -6615,7 +6615,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4904, "time": 0.869239462951754, "position": { "x": 3, @@ -6638,7 +6638,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 3, @@ -6661,7 +6661,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 4, @@ -6684,7 +6684,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 4974.0, + "noteOrder": 4934.0, "time": 0.8734590719952091, "position": { "x": 4, @@ -6707,7 +6707,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.8945571172124847, "position": { "x": 7, @@ -6730,7 +6730,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 7, @@ -6753,7 +6753,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 6, @@ -6776,7 +6776,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 6, @@ -6799,7 +6799,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 5, @@ -6822,7 +6822,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 5142.0, + "noteOrder": 5101.0, "time": 0.9029963352993949, "position": { "x": 5, @@ -6845,7 +6845,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 7, @@ -6868,7 +6868,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 7, @@ -6891,7 +6891,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 6, @@ -6914,7 +6914,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 6, @@ -6937,7 +6937,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 5, @@ -6960,7 +6960,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 5190.0, + "noteOrder": 5149.0, "time": 0.9114355533863052, "position": { "x": 5, @@ -6983,7 +6983,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9283139895601257, "position": { "x": 3, @@ -7006,7 +7006,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 3, @@ -7029,7 +7029,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9367532076470358, "position": { "x": 7, @@ -7052,7 +7052,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 7, @@ -7075,7 +7075,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 4, @@ -7098,7 +7098,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 4, @@ -7121,7 +7121,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 6, @@ -7144,7 +7144,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 6, @@ -7167,7 +7167,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 3924.0, + "noteOrder": 3893.0, "time": 0.687796274083184, "position": { "x": 5, @@ -7195,7 +7195,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5460.0, + "noteOrder": 5416.0, "time": 0.9578512528643114, "position": { "x": 5, @@ -7236,7 +7236,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "2.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b_blockless.json index 0aba4add..97336644 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "Crystal Clear difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 95, "time": 0.016878436173820465, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 143, "time": 0.0253176542607307, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 190, "time": 0.03375687234764093, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.042196090434551164, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 286, "time": 0.0506353085214614, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 333, "time": 0.059074526608371626, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 381, "time": 0.06751374469528186, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 429, "time": 0.0759529627821921, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.1308078803471086, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.14768631652092906, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 952, "time": 0.16878436173820466, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 976, "time": 0.1730039707816598, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.17722357982511489, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.2025412340858456, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.2067608431293007, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21098045217275582, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22363927930312116, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.2278588883465763, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 5, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24051771547694165, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.24473732452039676, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 5, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.27005497878112744, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2742745878245826, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.27849419686803767, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2827138059114928, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3375687234764093, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.3417883325198644, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.3460079415633196, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3502275506067747, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4050824681716912, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.4093020772151463, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.4135216862586014, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.41774129530205656, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.42618051338896673, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.43040012243242187, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.434619731475877, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.44305894956278724, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4472785586062423, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.45149816764969747, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.4768158219104282, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 2714, "time": 0.4810354309538833, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.48525503999733843, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.4936942580842486, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.49791386712770375, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.5021334761711589, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5105726942580691, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5147923033015243, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5190119123449793, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5443295666057101, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.5485491756491652, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5527687846926203, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.5738668299098959, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.578086438953351, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5823060479968061, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6076237022575368, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6118433113009919, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.616062920344447, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6329413565182674, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.649819792692088, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6582590107789982, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6624786198224533, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6666982288659085, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6709178379093635, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6751374469528186, "position": { "x": 7, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6793570559962738, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6835766650397288, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6835766650397288, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7299923645177352, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7342119735611903, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7384315826046454, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7426511916481006, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7468708006915555, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7510904097350107, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7553100187784659, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.797506109213017, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8017257182564721, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8059453272999273, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8101649363433824, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8143845453868375, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8186041544302926, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8228237634737477, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8481414177344785, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8523610267779335, "position": { "x": 6, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8565806358213887, "position": { "x": 3, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8776786810386643, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.8818982900821193, "position": { "x": 6, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.8861178991255745, "position": { "x": 3, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.8903375081690297, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9156551624297603, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9198747714732154, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 7, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9240943805166705, "position": { "x": 3, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 6, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.945192425733946, "position": { "x": 3, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 5357, "time": 0.9494120347774012, "position": { "x": 7, @@ -2567,7 +2567,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08439218086910233, "position": { "x": 3, @@ -2590,7 +2590,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09283139895601257, "position": { "x": 3, @@ -2613,7 +2613,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 571, "time": 0.1012706170429228, "position": { "x": 7, @@ -2636,7 +2636,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 619, "time": 0.10970983512983304, "position": { "x": 7, @@ -2659,7 +2659,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 667, "time": 0.11814905321674325, "position": { "x": 3, @@ -2682,7 +2682,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 714, "time": 0.1265882713036535, "position": { "x": 3, @@ -2705,7 +2705,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 762, "time": 0.13502748939056372, "position": { "x": 7, @@ -2728,7 +2728,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 809, "time": 0.14346670747747398, "position": { "x": 7, @@ -2751,7 +2751,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.1519059255643842, "position": { "x": 3, @@ -2774,7 +2774,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 888, + "noteOrder": 881, "time": 0.15612553460783932, "position": { "x": 3, @@ -2797,7 +2797,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 912, + "noteOrder": 905, "time": 0.1603451436512944, "position": { "x": 7, @@ -2820,7 +2820,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.16456475269474954, "position": { "x": 7, @@ -2843,7 +2843,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18566279791202514, "position": { "x": 7, @@ -2866,7 +2866,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.18988240695548023, "position": { "x": 7, @@ -2889,7 +2889,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19410201599893537, "position": { "x": 3, @@ -2912,7 +2912,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.19832162504239048, "position": { "x": 3, @@ -2935,7 +2935,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.21941967025966608, "position": { "x": 7, @@ -2958,7 +2958,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.23207849739003142, "position": { "x": 7, @@ -2981,7 +2981,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.2362981064334865, "position": { "x": 3, @@ -3004,7 +3004,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.24895693356385187, "position": { "x": 3, @@ -3027,7 +3027,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1428, "time": 0.253176542607307, "position": { "x": 7, @@ -3050,7 +3050,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.25739615165076213, "position": { "x": 7, @@ -3073,7 +3073,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.2616157606942172, "position": { "x": 3, @@ -3096,7 +3096,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.26583536973767236, "position": { "x": 3, @@ -3119,7 +3119,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.28693341495494795, "position": { "x": 7, @@ -3142,7 +3142,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 7, @@ -3165,7 +3165,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.29115302399840304, "position": { "x": 6, @@ -3188,7 +3188,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 6, @@ -3211,7 +3211,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 5, @@ -3234,7 +3234,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1686.0, + "noteOrder": 1673.0, "time": 0.2953726330418581, "position": { "x": 5, @@ -3257,7 +3257,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.2953726330418581, "position": { "x": 7, @@ -3280,7 +3280,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 7, @@ -3303,7 +3303,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.2995922420853133, "position": { "x": 6, @@ -3326,7 +3326,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 6, @@ -3349,7 +3349,7 @@ { "lineGroupId": 48, "indexInLine": 5, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 5, @@ -3372,7 +3372,7 @@ { "lineGroupId": 48, "indexInLine": 6, - "noteOrder": 1734.0, + "noteOrder": 1720.0, "time": 0.3038118511287684, "position": { "x": 5, @@ -3395,7 +3395,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3038118511287684, "position": { "x": 7, @@ -3418,7 +3418,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 7, @@ -3441,7 +3441,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.3080314601722235, "position": { "x": 6, @@ -3464,7 +3464,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 6, @@ -3487,7 +3487,7 @@ { "lineGroupId": 49, "indexInLine": 5, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 5, @@ -3510,7 +3510,7 @@ { "lineGroupId": 49, "indexInLine": 6, - "noteOrder": 1782.0, + "noteOrder": 1768.0, "time": 0.31225106921567863, "position": { "x": 5, @@ -3533,7 +3533,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.31225106921567863, "position": { "x": 7, @@ -3556,7 +3556,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 7, @@ -3579,7 +3579,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.3164706782591337, "position": { "x": 6, @@ -3602,7 +3602,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 6, @@ -3625,7 +3625,7 @@ { "lineGroupId": 50, "indexInLine": 5, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 5, @@ -3648,7 +3648,7 @@ { "lineGroupId": 50, "indexInLine": 6, - "noteOrder": 1830.0, + "noteOrder": 1815.0, "time": 0.3206902873025888, "position": { "x": 5, @@ -3671,7 +3671,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3206902873025888, "position": { "x": 7, @@ -3694,7 +3694,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3291295053894991, "position": { "x": 7, @@ -3717,7 +3717,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.35444715965022977, "position": { "x": 3, @@ -3740,7 +3740,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 3, @@ -3763,7 +3763,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.3586667686936849, "position": { "x": 4, @@ -3786,7 +3786,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 4, @@ -3809,7 +3809,7 @@ { "lineGroupId": 59, "indexInLine": 5, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 5, @@ -3832,7 +3832,7 @@ { "lineGroupId": 59, "indexInLine": 6, - "noteOrder": 2070.0, + "noteOrder": 2054.0, "time": 0.36288637773714, "position": { "x": 5, @@ -3855,7 +3855,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.36288637773714, "position": { "x": 3, @@ -3878,7 +3878,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 3, @@ -3901,7 +3901,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.36710598678059514, "position": { "x": 4, @@ -3924,7 +3924,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 4, @@ -3947,7 +3947,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 5, @@ -3970,7 +3970,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 2118.0, + "noteOrder": 2101.0, "time": 0.3713255958240503, "position": { "x": 5, @@ -3993,7 +3993,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.3713255958240503, "position": { "x": 3, @@ -4016,7 +4016,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 3, @@ -4039,7 +4039,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.37554520486750537, "position": { "x": 4, @@ -4062,7 +4062,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 4, @@ -4085,7 +4085,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 5, @@ -4108,7 +4108,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 2166.0, + "noteOrder": 2149.0, "time": 0.37976481391096045, "position": { "x": 5, @@ -4131,7 +4131,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.37976481391096045, "position": { "x": 3, @@ -4154,7 +4154,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 3, @@ -4177,7 +4177,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.3839844229544156, "position": { "x": 4, @@ -4200,7 +4200,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 4, @@ -4223,7 +4223,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 5, @@ -4246,7 +4246,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 2214.0, + "noteOrder": 2196.0, "time": 0.38820403199787074, "position": { "x": 5, @@ -4269,7 +4269,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.38820403199787074, "position": { "x": 3, @@ -4292,7 +4292,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.39664325008478096, "position": { "x": 3, @@ -4315,7 +4315,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.42196090434551164, "position": { "x": 7, @@ -4338,7 +4338,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 7, @@ -4361,7 +4361,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.43883934051933216, "position": { "x": 3, @@ -4384,7 +4384,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 3, @@ -4407,7 +4407,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.4557177766931526, "position": { "x": 7, @@ -4430,7 +4430,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 6, @@ -4453,7 +4453,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4599373857366077, "position": { "x": 3, @@ -4476,7 +4476,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 4, @@ -4499,7 +4499,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 2619, "time": 0.46415699478006284, "position": { "x": 7, @@ -4522,7 +4522,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 6, @@ -4545,7 +4545,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4683766038235179, "position": { "x": 3, @@ -4568,7 +4568,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.472596212866973, "position": { "x": 4, @@ -4591,7 +4591,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.4894746490407935, "position": { "x": 3, @@ -4614,7 +4614,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 3, @@ -4637,7 +4637,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.506353085214614, "position": { "x": 7, @@ -4660,7 +4660,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 7, @@ -4683,7 +4683,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5232315213884344, "position": { "x": 3, @@ -4706,7 +4706,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 4, @@ -4729,7 +4729,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.5274511304318896, "position": { "x": 7, @@ -4752,7 +4752,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 6, @@ -4775,7 +4775,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5316707394753447, "position": { "x": 3, @@ -4798,7 +4798,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 4, @@ -4821,7 +4821,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5358903485187998, "position": { "x": 7, @@ -4844,7 +4844,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5401099575622549, "position": { "x": 6, @@ -4867,7 +4867,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5569883937360753, "position": { "x": 3, @@ -4890,7 +4890,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 3166, "time": 0.5612080027795304, "position": { "x": 3, @@ -4913,7 +4913,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5654276118229856, "position": { "x": 7, @@ -4936,7 +4936,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5696472208664407, "position": { "x": 7, @@ -4959,7 +4959,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.5907452660837162, "position": { "x": 7, @@ -4982,7 +4982,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.5949648751271714, "position": { "x": 7, @@ -5005,7 +5005,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.5991844841706266, "position": { "x": 3, @@ -5028,7 +5028,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6034040932140816, "position": { "x": 3, @@ -5051,7 +5051,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6245021384313573, "position": { "x": 7, @@ -5074,7 +5074,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6371609655617226, "position": { "x": 7, @@ -5097,7 +5097,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6413805746051776, "position": { "x": 3, @@ -5120,7 +5120,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.654039401735543, "position": { "x": 3, @@ -5143,7 +5143,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.6920158831266392, "position": { "x": 3, @@ -5166,7 +5166,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 3, @@ -5189,7 +5189,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.6962354921700942, "position": { "x": 4, @@ -5212,7 +5212,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 4, @@ -5235,7 +5235,7 @@ { "lineGroupId": 130, "indexInLine": 5, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 5, @@ -5258,7 +5258,7 @@ { "lineGroupId": 130, "indexInLine": 6, - "noteOrder": 3990.0, + "noteOrder": 3958.0, "time": 0.7004551012135494, "position": { "x": 5, @@ -5281,7 +5281,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7004551012135494, "position": { "x": 3, @@ -5304,7 +5304,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 3, @@ -5327,7 +5327,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7046747102570045, "position": { "x": 4, @@ -5350,7 +5350,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 4, @@ -5373,7 +5373,7 @@ { "lineGroupId": 131, "indexInLine": 5, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 5, @@ -5396,7 +5396,7 @@ { "lineGroupId": 131, "indexInLine": 6, - "noteOrder": 4038.0, + "noteOrder": 4006.0, "time": 0.7088943193004595, "position": { "x": 5, @@ -5419,7 +5419,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7088943193004595, "position": { "x": 3, @@ -5442,7 +5442,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 3, @@ -5465,7 +5465,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7131139283439147, "position": { "x": 4, @@ -5488,7 +5488,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 4, @@ -5511,7 +5511,7 @@ { "lineGroupId": 132, "indexInLine": 5, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 5, @@ -5534,7 +5534,7 @@ { "lineGroupId": 132, "indexInLine": 6, - "noteOrder": 4086.0, + "noteOrder": 4053.0, "time": 0.7173335373873698, "position": { "x": 5, @@ -5557,7 +5557,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.7173335373873698, "position": { "x": 3, @@ -5580,7 +5580,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 3, @@ -5603,7 +5603,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7215531464308249, "position": { "x": 4, @@ -5626,7 +5626,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 4, @@ -5649,7 +5649,7 @@ { "lineGroupId": 133, "indexInLine": 5, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.72577275547428, "position": { "x": 5, @@ -5672,7 +5672,7 @@ { "lineGroupId": 133, "indexInLine": 6, - "noteOrder": 4134.0, + "noteOrder": 4101.0, "time": 0.72577275547428, "position": { "x": 5, @@ -5695,7 +5695,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4285, "time": 0.7595296278219209, "position": { "x": 7, @@ -5718,7 +5718,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 7, @@ -5741,7 +5741,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.7637492368653761, "position": { "x": 6, @@ -5764,7 +5764,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 6, @@ -5787,7 +5787,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 5, @@ -5810,7 +5810,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 4374.0, + "noteOrder": 4339.0, "time": 0.7679688459088312, "position": { "x": 5, @@ -5833,7 +5833,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7679688459088312, "position": { "x": 7, @@ -5856,7 +5856,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 7, @@ -5879,7 +5879,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7721884549522864, "position": { "x": 6, @@ -5902,7 +5902,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 6, @@ -5925,7 +5925,7 @@ { "lineGroupId": 145, "indexInLine": 5, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 5, @@ -5948,7 +5948,7 @@ { "lineGroupId": 145, "indexInLine": 6, - "noteOrder": 4422.0, + "noteOrder": 4387.0, "time": 0.7764080639957415, "position": { "x": 5, @@ -5971,7 +5971,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7764080639957415, "position": { "x": 7, @@ -5994,7 +5994,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7806276730391966, "position": { "x": 7, @@ -6017,7 +6017,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7806276730391966, "position": { "x": 6, @@ -6040,7 +6040,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 6, @@ -6063,7 +6063,7 @@ { "lineGroupId": 146, "indexInLine": 5, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 5, @@ -6086,7 +6086,7 @@ { "lineGroupId": 146, "indexInLine": 6, - "noteOrder": 4470.0, + "noteOrder": 4434.0, "time": 0.7848472820826518, "position": { "x": 5, @@ -6109,7 +6109,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.7848472820826518, "position": { "x": 7, @@ -6132,7 +6132,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.7890668911261067, "position": { "x": 7, @@ -6155,7 +6155,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.7890668911261067, "position": { "x": 6, @@ -6178,7 +6178,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 6, @@ -6201,7 +6201,7 @@ { "lineGroupId": 147, "indexInLine": 5, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.7932865001695619, "position": { "x": 5, @@ -6224,7 +6224,7 @@ { "lineGroupId": 147, "indexInLine": 6, - "noteOrder": 4518.0, + "noteOrder": 4482.0, "time": 0.7932865001695619, "position": { "x": 5, @@ -6247,7 +6247,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8270433725172028, "position": { "x": 3, @@ -6270,7 +6270,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 3, @@ -6293,7 +6293,7 @@ { "lineGroupId": 158, "indexInLine": 3, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8312629815606579, "position": { "x": 4, @@ -6316,7 +6316,7 @@ { "lineGroupId": 158, "indexInLine": 4, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 4, @@ -6339,7 +6339,7 @@ { "lineGroupId": 158, "indexInLine": 5, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 5, @@ -6362,7 +6362,7 @@ { "lineGroupId": 158, "indexInLine": 6, - "noteOrder": 4758.0, + "noteOrder": 4720.0, "time": 0.8354825906041131, "position": { "x": 5, @@ -6385,7 +6385,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8354825906041131, "position": { "x": 3, @@ -6408,7 +6408,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 3, @@ -6431,7 +6431,7 @@ { "lineGroupId": 159, "indexInLine": 3, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.8397021996475681, "position": { "x": 4, @@ -6454,7 +6454,7 @@ { "lineGroupId": 159, "indexInLine": 4, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 4, @@ -6477,7 +6477,7 @@ { "lineGroupId": 159, "indexInLine": 5, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8439218086910233, "position": { "x": 5, @@ -6500,7 +6500,7 @@ { "lineGroupId": 159, "indexInLine": 6, - "noteOrder": 4806.0, + "noteOrder": 4768.0, "time": 0.8439218086910233, "position": { "x": 5, @@ -6523,7 +6523,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.8608002448648437, "position": { "x": 7, @@ -6546,7 +6546,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 7, @@ -6569,7 +6569,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8650198539082989, "position": { "x": 6, @@ -6592,7 +6592,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 4926.0, + "noteOrder": 4887.0, "time": 0.8650198539082989, "position": { "x": 6, @@ -6615,7 +6615,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4904, "time": 0.869239462951754, "position": { "x": 3, @@ -6638,7 +6638,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 3, @@ -6661,7 +6661,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8734590719952091, "position": { "x": 4, @@ -6684,7 +6684,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 4974.0, + "noteOrder": 4934.0, "time": 0.8734590719952091, "position": { "x": 4, @@ -6707,7 +6707,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.8945571172124847, "position": { "x": 7, @@ -6730,7 +6730,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 7, @@ -6753,7 +6753,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.8987767262559399, "position": { "x": 6, @@ -6776,7 +6776,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 6, @@ -6799,7 +6799,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 5, @@ -6822,7 +6822,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 5142.0, + "noteOrder": 5101.0, "time": 0.9029963352993949, "position": { "x": 5, @@ -6845,7 +6845,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9029963352993949, "position": { "x": 7, @@ -6868,7 +6868,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 7, @@ -6891,7 +6891,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.90721594434285, "position": { "x": 6, @@ -6914,7 +6914,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 6, @@ -6937,7 +6937,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9114355533863052, "position": { "x": 5, @@ -6960,7 +6960,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 5190.0, + "noteOrder": 5149.0, "time": 0.9114355533863052, "position": { "x": 5, @@ -6983,7 +6983,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9283139895601257, "position": { "x": 3, @@ -7006,7 +7006,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9325335986035808, "position": { "x": 3, @@ -7029,7 +7029,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9367532076470358, "position": { "x": 7, @@ -7052,7 +7052,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.940972816690491, "position": { "x": 7, @@ -7075,7 +7075,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 4, @@ -7098,7 +7098,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 4, @@ -7121,7 +7121,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 5424, + "noteOrder": 5381, "time": 0.9536316438208564, "position": { "x": 6, @@ -7144,7 +7144,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 5448, + "noteOrder": 5404, "time": 0.9578512528643114, "position": { "x": 6, @@ -7179,7 +7179,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "2.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/info.json b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/info.json index 3e426a79..5b0b25f7 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Crystal Clear/info.json @@ -3,7 +3,7 @@ "SongName": "Crystal Clear", "SongLength": "114.680454", "SongAuthorName": "Stessie", - "Bpm": "124", + "Bpm": "123", "SongPath": "304.ogg", "CreateTicks": 637720992000000000, "CreateTime": "637720992000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a.json index 3ff3245a..2cb55e66 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "Jetcoaster Windy difficulty_1a", "sphereNodes": [ { - "noteOrder": 192, + "noteOrder": 96, "time": 0.014387971199989922, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.0179849639999874, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.028775942399979843, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.032372935199977325, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.043163913599969767, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.04676090639996725, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.057551884799959686, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 408, "time": 0.06114887759995717, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 432, "time": 0.06474587039995465, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07553684879994708, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07913384159994458, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.08273083439994205, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08632782719993953, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08992481999993701, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.0935218127999345, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.09711880559993198, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.10071579839992946, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.10431279119992694, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10790978399992442, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11510376959991937, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11870076239991686, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.12229775519991434, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12589474799991182, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.1438797119998992, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.1474767047998967, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.15107369759989417, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.15467069039989167, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15826768319988915, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.16186467599988663, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.1654616687998841, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.17265565439987907, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.17625264719987654, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17984963999987402, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.1834466327998715, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.187043625599869, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.19064061839986648, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.19423761119986396, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.20143159679985892, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2050285895998564, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.20862558239985388, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.21222257519985135, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.21581956799984883, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21941656079984634, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.2230135535998438, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.22661054639984127, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.23020753919983875, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.23380453199983625, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.23740152479983373, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2409985175998312, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.2445955103998287, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.24819250319982616, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.25178949599982364, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2553864887998211, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.2589834815998186, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2625804743998161, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.26617746719981356, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26977445999981103, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.27337145279980857, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.27696844559980605, "position": { "x": 8, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2805654383998035, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.284162431199801, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.2913564167997959, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2949534095997934, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.30574438799978587, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.30934138079978335, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.3165353663997783, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3201323591997758, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.32372935199977326, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.32732634479977074, "position": { "x": 8, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.3309233375997682, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.3345203303997657, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.33811732319976323, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.34171431599976065, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.34531130879975813, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.3489083015997556, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.3525052943997531, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.35610228719975057, "position": { "x": 8, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.35969927999974805, "position": { "x": 5, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.3632962727997455, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.366893265599743, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 2, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3776842439997355, "position": { "x": 2, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.38128123679973297, "position": { "x": 2, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.38487822959973045, "position": { "x": 2, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 2, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.39207221519972535, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3956692079997228, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.4064601863997153, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.4100571791997128, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.4136541719997103, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.42084815759970523, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.43163913599969767, "position": { "x": 8, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.4352361287996952, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.4388331215996927, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.44243011439969016, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 6, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.44962409999968506, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.45322109279968253, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.45681808559968, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.5035789919996473, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.5035789919996473, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.5215639559996347, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.5287579415996296, "position": { "x": 3, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5359519271996246, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5395489199996221, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5467429055996171, "position": { "x": 8, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5503398983996146, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5539368911996121, "position": { "x": 8, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5575338839996096, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.561130876799607, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5647278695996045, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.568324862399602, "position": { "x": 8, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 5, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5755188479995968, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.5791158407995943, "position": { "x": 8, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5827128335995918, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5863098263995893, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5899068191995868, "position": { "x": 3, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5935038119995842, "position": { "x": 6, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5971008047995817, "position": { "x": 2, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.6042947903995767, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.6078917831995742, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.6114887759995717, "position": { "x": 6, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.6150857687995692, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 2, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6222797543995642, "position": { "x": 4, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6258767471995617, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6294737399995591, "position": { "x": 3, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.6762346463995265, "position": { "x": 6, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6798316391995238, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 9216, + "noteOrder": 4608, "time": 0.6906226175995163, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 9264, + "noteOrder": 4632, "time": 0.6942196103995137, "position": { "x": 3, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6978166031995112, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.7014135959995087, "position": { "x": 2, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.7050105887995062, "position": { "x": 5, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.7086075815995037, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.7122045743995011, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.7193985599994961, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.7229955527994936, "position": { "x": 6, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.726592545599491, "position": { "x": 8, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.733786531199486, "position": { "x": 5, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7373835239994836, "position": { "x": 8, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7409805167994811, "position": { "x": 6, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 5, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.748174502399476, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7517714951994735, "position": { "x": 3, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7625624735994659, "position": { "x": 3, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7661594663994634, "position": { "x": 7, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7769504447994559, "position": { "x": 6, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7805474375994533, "position": { "x": 3, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7913384159994457, "position": { "x": 7, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7949354087994431, "position": { "x": 4, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.8057263871994357, "position": { "x": 7, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 10800, + "noteOrder": 5400, "time": 0.8093233799994332, "position": { "x": 7, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 10848, + "noteOrder": 5424, "time": 0.8129203727994306, "position": { "x": 4, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 10896, + "noteOrder": 5448, "time": 0.8165173655994281, "position": { "x": 4, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 10944, + "noteOrder": 5472, "time": 0.8201143583994256, "position": { "x": 7, @@ -3303,7 +3303,7 @@ "isPlayAudio": false }, { - "noteOrder": 10992, + "noteOrder": 5496, "time": 0.8237113511994231, "position": { "x": 3, @@ -3323,7 +3323,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.830905336799418, "position": { "x": 3, @@ -3343,7 +3343,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8345023295994155, "position": { "x": 7, @@ -3363,7 +3363,7 @@ "isPlayAudio": false }, { - "noteOrder": 11184, + "noteOrder": 5592, "time": 0.838099322399413, "position": { "x": 3, @@ -3383,7 +3383,7 @@ "isPlayAudio": false }, { - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8452933079994079, "position": { "x": 7, @@ -3403,7 +3403,7 @@ "isPlayAudio": false }, { - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8488903007994054, "position": { "x": 3, @@ -3423,7 +3423,7 @@ "isPlayAudio": false }, { - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.8524872935994029, "position": { "x": 7, @@ -3443,7 +3443,7 @@ "isPlayAudio": false }, { - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8560842863994004, "position": { "x": 3, @@ -3463,7 +3463,7 @@ "isPlayAudio": false }, { - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8596812791993979, "position": { "x": 7, @@ -3487,7 +3487,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.2877594239997984, "position": { "x": 5, @@ -3510,7 +3510,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 5, @@ -3533,7 +3533,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.30214739519978834, "position": { "x": 5, @@ -3556,7 +3556,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 5, @@ -3579,7 +3579,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.37049025839974054, "position": { "x": 5, @@ -3602,7 +3602,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 5, @@ -3625,7 +3625,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 5, @@ -3648,7 +3648,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.3992662007997203, "position": { "x": 8, @@ -3671,7 +3671,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 8, @@ -3694,7 +3694,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 6, @@ -3717,7 +3717,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 7, @@ -3740,7 +3740,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.4280421431997002, "position": { "x": 5, @@ -3763,7 +3763,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.43163913599969767, "position": { "x": 5, @@ -3786,7 +3786,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 3, @@ -3809,7 +3809,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.4604150783996775, "position": { "x": 7, @@ -3832,7 +3832,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.464012071199675, "position": { "x": 5, @@ -3855,7 +3855,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4676090639996725, "position": { "x": 7, @@ -3878,7 +3878,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.47120605679967, "position": { "x": 5, @@ -3901,7 +3901,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.47480304959966746, "position": { "x": 3, @@ -3924,7 +3924,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.47840004239966494, "position": { "x": 5, @@ -3947,7 +3947,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4819970351996624, "position": { "x": 3, @@ -3970,7 +3970,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.4855940279996599, "position": { "x": 5, @@ -3993,7 +3993,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.5431459127996195, "position": { "x": 4, @@ -4016,7 +4016,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 6, @@ -4039,7 +4039,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.6006977975995792, "position": { "x": 6, @@ -4062,7 +4062,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 4, @@ -4085,7 +4085,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6330707327995566, "position": { "x": 6, @@ -4108,7 +4108,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.6348692291995554, "position": { "x": 6, @@ -4131,7 +4131,7 @@ { "lineGroupId": 159, "indexInLine": 3, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.6348692291995554, "position": { "x": 5, @@ -4154,7 +4154,7 @@ { "lineGroupId": 159, "indexInLine": 4, - "noteOrder": 8478.0, + "noteOrder": 4242.0, "time": 0.6348692291995554, "position": { "x": 5, @@ -4177,7 +4177,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.6366677255995541, "position": { "x": 6, @@ -4200,7 +4200,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.6384662219995528, "position": { "x": 6, @@ -4223,7 +4223,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.6384662219995528, "position": { "x": 5, @@ -4246,7 +4246,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 8526.0, + "noteOrder": 4266.0, "time": 0.6384662219995528, "position": { "x": 5, @@ -4269,7 +4269,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6402647183995516, "position": { "x": 6, @@ -4292,7 +4292,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.6420632147995503, "position": { "x": 6, @@ -4315,7 +4315,7 @@ { "lineGroupId": 162, "indexInLine": 3, - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.6420632147995503, "position": { "x": 5, @@ -4338,7 +4338,7 @@ { "lineGroupId": 162, "indexInLine": 4, - "noteOrder": 8574.0, + "noteOrder": 4290.0, "time": 0.6420632147995503, "position": { "x": 5, @@ -4361,7 +4361,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.643861711199549, "position": { "x": 6, @@ -4384,7 +4384,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.6456602075995478, "position": { "x": 6, @@ -4407,7 +4407,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.6456602075995478, "position": { "x": 5, @@ -4430,7 +4430,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 8622.0, + "noteOrder": 4314.0, "time": 0.6456602075995478, "position": { "x": 5, @@ -4453,7 +4453,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.6474587039995465, "position": { "x": 3, @@ -4476,7 +4476,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.6492572003995453, "position": { "x": 3, @@ -4499,7 +4499,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.6492572003995453, "position": { "x": 5, @@ -4522,7 +4522,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 8670.0, + "noteOrder": 4338.0, "time": 0.6492572003995453, "position": { "x": 5, @@ -4545,7 +4545,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.651055696799544, "position": { "x": 3, @@ -4568,7 +4568,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.6528541931995427, "position": { "x": 3, @@ -4591,7 +4591,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.6528541931995427, "position": { "x": 5, @@ -4614,7 +4614,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 8718.0, + "noteOrder": 4362.0, "time": 0.6528541931995427, "position": { "x": 5, @@ -4637,7 +4637,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6546526895995415, "position": { "x": 3, @@ -4660,7 +4660,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.6564511859995402, "position": { "x": 3, @@ -4683,7 +4683,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.6564511859995402, "position": { "x": 5, @@ -4706,7 +4706,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 8766.0, + "noteOrder": 4386.0, "time": 0.6564511859995402, "position": { "x": 5, @@ -4729,7 +4729,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.658249682399539, "position": { "x": 3, @@ -4752,7 +4752,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 8808, + "noteOrder": 4404, "time": 0.6600481787995377, "position": { "x": 3, @@ -4775,7 +4775,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 8808, + "noteOrder": 4404, "time": 0.6600481787995377, "position": { "x": 5, @@ -4798,7 +4798,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 8814.0, + "noteOrder": 4410.0, "time": 0.6600481787995377, "position": { "x": 5, @@ -4821,7 +4821,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6618466751995364, "position": { "x": 7, @@ -4844,7 +4844,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 8856, + "noteOrder": 4428, "time": 0.6636451715995352, "position": { "x": 7, @@ -4867,7 +4867,7 @@ { "lineGroupId": 168, "indexInLine": 3, - "noteOrder": 8856, + "noteOrder": 4428, "time": 0.6636451715995352, "position": { "x": 6, @@ -4890,7 +4890,7 @@ { "lineGroupId": 168, "indexInLine": 4, - "noteOrder": 8862.0, + "noteOrder": 4434.0, "time": 0.6636451715995352, "position": { "x": 6, @@ -4913,7 +4913,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6654436679995339, "position": { "x": 4, @@ -4936,7 +4936,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 8904, + "noteOrder": 4452, "time": 0.6672421643995327, "position": { "x": 4, @@ -4959,7 +4959,7 @@ { "lineGroupId": 169, "indexInLine": 3, - "noteOrder": 8904, + "noteOrder": 4452, "time": 0.6672421643995327, "position": { "x": 5, @@ -4982,7 +4982,7 @@ { "lineGroupId": 169, "indexInLine": 4, - "noteOrder": 8910.0, + "noteOrder": 4458.0, "time": 0.6672421643995327, "position": { "x": 5, @@ -5005,7 +5005,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6690406607995314, "position": { "x": 7, @@ -5028,7 +5028,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 8952, + "noteOrder": 4476, "time": 0.6708391571995301, "position": { "x": 7, @@ -5051,7 +5051,7 @@ { "lineGroupId": 170, "indexInLine": 3, - "noteOrder": 8952, + "noteOrder": 4476, "time": 0.6708391571995301, "position": { "x": 6, @@ -5074,7 +5074,7 @@ { "lineGroupId": 170, "indexInLine": 4, - "noteOrder": 8958.0, + "noteOrder": 4482.0, "time": 0.6708391571995301, "position": { "x": 6, @@ -5097,7 +5097,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.672637653599529, "position": { "x": 4, @@ -5120,7 +5120,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 9000, + "noteOrder": 4500, "time": 0.6744361499995277, "position": { "x": 4, @@ -5143,7 +5143,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 9000, + "noteOrder": 4500, "time": 0.6744361499995277, "position": { "x": 5, @@ -5166,7 +5166,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 9006.0, + "noteOrder": 4506.0, "time": 0.6744361499995277, "position": { "x": 5, @@ -5189,7 +5189,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.7158015671994986, "position": { "x": 4, @@ -5212,7 +5212,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 7, @@ -5235,7 +5235,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 8, @@ -5258,7 +5258,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 6, @@ -5281,7 +5281,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8632782719993953, "position": { "x": 3, @@ -5304,7 +5304,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8650767683993942, "position": { "x": 3, @@ -5327,7 +5327,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8650767683993942, "position": { "x": 4, @@ -5350,7 +5350,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 11550.0, + "noteOrder": 5778.0, "time": 0.8650767683993942, "position": { "x": 4, @@ -5373,7 +5373,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8668752647993929, "position": { "x": 7, @@ -5396,7 +5396,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8686737611993917, "position": { "x": 7, @@ -5419,7 +5419,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8686737611993917, "position": { "x": 6, @@ -5442,7 +5442,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 11598.0, + "noteOrder": 5802.0, "time": 0.8686737611993917, "position": { "x": 6, @@ -5465,7 +5465,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8704722575993904, "position": { "x": 3, @@ -5488,7 +5488,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8722707539993891, "position": { "x": 3, @@ -5511,7 +5511,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8722707539993891, "position": { "x": 4, @@ -5534,7 +5534,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 11646.0, + "noteOrder": 5826.0, "time": 0.8722707539993891, "position": { "x": 4, @@ -5557,7 +5557,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8740692503993879, "position": { "x": 7, @@ -5580,7 +5580,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8758677467993866, "position": { "x": 7, @@ -5603,7 +5603,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8758677467993866, "position": { "x": 6, @@ -5626,7 +5626,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.935218127999345, "position": { "x": 6, @@ -5649,7 +5649,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8776662431993854, "position": { "x": 2, @@ -5672,7 +5672,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8920542143993752, "position": { "x": 8, @@ -5695,7 +5695,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.935218127999345, "position": { "x": 2, @@ -5718,7 +5718,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 289.5, + "noteOrder": 145.5, "time": 0.021581956799984883, "position": { "x": 5, @@ -5746,7 +5746,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 481.5, + "noteOrder": 241.5, "time": 0.0359699279999748, "position": { "x": 5, @@ -5774,7 +5774,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 673.5, + "noteOrder": 337.5, "time": 0.05035789919996473, "position": { "x": 5, @@ -5802,7 +5802,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 924.0, + "noteOrder": 468.0, "time": 0.06834286319995214, "position": { "x": 5, @@ -5830,7 +5830,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1489.5, + "noteOrder": 745.5, "time": 0.1115067767999219, "position": { "x": 5, @@ -5858,7 +5858,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1729.5, + "noteOrder": 865.5, "time": 0.1294917407999093, "position": { "x": 5, @@ -5886,7 +5886,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2257.5, + "noteOrder": 1129.5, "time": 0.16905866159988162, "position": { "x": 5, @@ -5914,7 +5914,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2641.5, + "noteOrder": 1321.5, "time": 0.1978346039998614, "position": { "x": 5, @@ -5942,7 +5942,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6529.5, + "noteOrder": 3265.5, "time": 0.4891910207996574, "position": { "x": 5, @@ -5970,7 +5970,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6721.5, + "noteOrder": 3361.5, "time": 0.5035789919996473, "position": { "x": 5, @@ -5998,7 +5998,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6876.0, + "noteOrder": 3444.0, "time": 0.5143699703996397, "position": { "x": 5, @@ -6026,7 +6026,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8449.5, + "noteOrder": 4225.5, "time": 0.6330707327995566, "position": { "x": 5, @@ -6054,7 +6054,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9121.5, + "noteOrder": 4561.5, "time": 0.6834286319995213, "position": { "x": 5, @@ -6082,7 +6082,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9180.0, + "noteOrder": 4596.0, "time": 0.6870256247995188, "position": { "x": 5, @@ -6110,7 +6110,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10081.5, + "noteOrder": 5041.5, "time": 0.755368487999471, "position": { "x": 5, @@ -6138,7 +6138,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10273.5, + "noteOrder": 5137.5, "time": 0.7697564591994609, "position": { "x": 5, @@ -6166,7 +6166,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10465.5, + "noteOrder": 5233.5, "time": 0.7841444303994507, "position": { "x": 5, @@ -6194,7 +6194,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10657.5, + "noteOrder": 5329.5, "time": 0.7985324015994406, "position": { "x": 5, @@ -6222,7 +6222,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10716.0, + "noteOrder": 5364.0, "time": 0.8021293943994382, "position": { "x": 5, @@ -6250,7 +6250,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 11041.5, + "noteOrder": 5521.5, "time": 0.8273083439994205, "position": { "x": 5, @@ -6278,7 +6278,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 11233.5, + "noteOrder": 5617.5, "time": 0.8416963151994105, "position": { "x": 5, @@ -6319,7 +6319,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 268, + "BPM": 134, "NPS": "2.35", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a_blockless.json index 1e509d4a..a1cb3c49 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "Jetcoaster Windy difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 192, + "noteOrder": 96, "time": 0.014387971199989922, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.0179849639999874, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.028775942399979843, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.032372935199977325, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.043163913599969767, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.04676090639996725, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.057551884799959686, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 408, "time": 0.06114887759995717, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 432, "time": 0.06474587039995465, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07553684879994708, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07913384159994458, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.08273083439994205, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08632782719993953, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08992481999993701, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.0935218127999345, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.09711880559993198, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.10071579839992946, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.10431279119992694, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10790978399992442, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11510376959991937, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11870076239991686, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.12229775519991434, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12589474799991182, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.1438797119998992, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.1474767047998967, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.15107369759989417, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.15467069039989167, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15826768319988915, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.16186467599988663, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.1654616687998841, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.17265565439987907, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.17625264719987654, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17984963999987402, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.1834466327998715, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.187043625599869, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.19064061839986648, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.19423761119986396, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.20143159679985892, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2050285895998564, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.20862558239985388, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.21222257519985135, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.21581956799984883, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21941656079984634, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.2230135535998438, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.22661054639984127, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.23020753919983875, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.23380453199983625, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.23740152479983373, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2409985175998312, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.2445955103998287, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.24819250319982616, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.25178949599982364, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2553864887998211, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.2589834815998186, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2625804743998161, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.26617746719981356, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26977445999981103, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.27337145279980857, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.27696844559980605, "position": { "x": 8, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2805654383998035, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.284162431199801, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.2913564167997959, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2949534095997934, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.30574438799978587, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.30934138079978335, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.3165353663997783, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3201323591997758, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.32372935199977326, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.32732634479977074, "position": { "x": 8, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.3309233375997682, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.3345203303997657, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.33811732319976323, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.34171431599976065, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.34531130879975813, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.3489083015997556, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.3525052943997531, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.35610228719975057, "position": { "x": 8, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.35969927999974805, "position": { "x": 5, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.3632962727997455, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.366893265599743, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 2, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3776842439997355, "position": { "x": 2, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.38128123679973297, "position": { "x": 2, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.38487822959973045, "position": { "x": 2, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 2, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.39207221519972535, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3956692079997228, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.4064601863997153, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.4100571791997128, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.4136541719997103, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.42084815759970523, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.43163913599969767, "position": { "x": 8, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.4352361287996952, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.4388331215996927, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.44243011439969016, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 6, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.44962409999968506, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.45322109279968253, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.45681808559968, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.5035789919996473, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.5035789919996473, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.5215639559996347, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.5287579415996296, "position": { "x": 3, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5359519271996246, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5395489199996221, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5467429055996171, "position": { "x": 8, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5503398983996146, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5539368911996121, "position": { "x": 8, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5575338839996096, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.561130876799607, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5647278695996045, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.568324862399602, "position": { "x": 8, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 5, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5755188479995968, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.5791158407995943, "position": { "x": 8, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5827128335995918, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5863098263995893, "position": { "x": 7, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5899068191995868, "position": { "x": 3, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5935038119995842, "position": { "x": 6, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5971008047995817, "position": { "x": 2, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.6042947903995767, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.6078917831995742, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.6114887759995717, "position": { "x": 6, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.6150857687995692, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 2, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6222797543995642, "position": { "x": 4, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6258767471995617, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6294737399995591, "position": { "x": 3, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.6762346463995265, "position": { "x": 6, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6798316391995238, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 9216, + "noteOrder": 4608, "time": 0.6906226175995163, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 9264, + "noteOrder": 4632, "time": 0.6942196103995137, "position": { "x": 3, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6978166031995112, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.7014135959995087, "position": { "x": 2, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.7050105887995062, "position": { "x": 5, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.7086075815995037, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.7122045743995011, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.7193985599994961, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.7229955527994936, "position": { "x": 6, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.726592545599491, "position": { "x": 8, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.733786531199486, "position": { "x": 5, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7373835239994836, "position": { "x": 8, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7409805167994811, "position": { "x": 6, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 5, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.748174502399476, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7517714951994735, "position": { "x": 3, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7625624735994659, "position": { "x": 3, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7661594663994634, "position": { "x": 7, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7769504447994559, "position": { "x": 6, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7805474375994533, "position": { "x": 3, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7913384159994457, "position": { "x": 7, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7949354087994431, "position": { "x": 4, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.8057263871994357, "position": { "x": 7, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 10800, + "noteOrder": 5400, "time": 0.8093233799994332, "position": { "x": 7, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 10848, + "noteOrder": 5424, "time": 0.8129203727994306, "position": { "x": 4, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 10896, + "noteOrder": 5448, "time": 0.8165173655994281, "position": { "x": 4, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 10944, + "noteOrder": 5472, "time": 0.8201143583994256, "position": { "x": 7, @@ -3303,7 +3303,7 @@ "isPlayAudio": false }, { - "noteOrder": 10992, + "noteOrder": 5496, "time": 0.8237113511994231, "position": { "x": 3, @@ -3323,7 +3323,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.830905336799418, "position": { "x": 3, @@ -3343,7 +3343,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8345023295994155, "position": { "x": 7, @@ -3363,7 +3363,7 @@ "isPlayAudio": false }, { - "noteOrder": 11184, + "noteOrder": 5592, "time": 0.838099322399413, "position": { "x": 3, @@ -3383,7 +3383,7 @@ "isPlayAudio": false }, { - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8452933079994079, "position": { "x": 7, @@ -3403,7 +3403,7 @@ "isPlayAudio": false }, { - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8488903007994054, "position": { "x": 3, @@ -3423,7 +3423,7 @@ "isPlayAudio": false }, { - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.8524872935994029, "position": { "x": 7, @@ -3443,7 +3443,7 @@ "isPlayAudio": false }, { - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8560842863994004, "position": { "x": 3, @@ -3463,7 +3463,7 @@ "isPlayAudio": false }, { - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8596812791993979, "position": { "x": 7, @@ -3487,7 +3487,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.2877594239997984, "position": { "x": 5, @@ -3510,7 +3510,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 5, @@ -3533,7 +3533,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.30214739519978834, "position": { "x": 5, @@ -3556,7 +3556,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 5, @@ -3579,7 +3579,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.37049025839974054, "position": { "x": 5, @@ -3602,7 +3602,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 5, @@ -3625,7 +3625,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 5, @@ -3648,7 +3648,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.3992662007997203, "position": { "x": 8, @@ -3671,7 +3671,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 8, @@ -3694,7 +3694,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 6, @@ -3717,7 +3717,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 7, @@ -3740,7 +3740,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.4280421431997002, "position": { "x": 5, @@ -3763,7 +3763,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.43163913599969767, "position": { "x": 5, @@ -3786,7 +3786,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 3, @@ -3809,7 +3809,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.4604150783996775, "position": { "x": 7, @@ -3832,7 +3832,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.464012071199675, "position": { "x": 5, @@ -3855,7 +3855,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4676090639996725, "position": { "x": 7, @@ -3878,7 +3878,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.47120605679967, "position": { "x": 5, @@ -3901,7 +3901,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.47480304959966746, "position": { "x": 3, @@ -3924,7 +3924,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.47840004239966494, "position": { "x": 5, @@ -3947,7 +3947,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4819970351996624, "position": { "x": 3, @@ -3970,7 +3970,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.4855940279996599, "position": { "x": 5, @@ -3993,7 +3993,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.5431459127996195, "position": { "x": 4, @@ -4016,7 +4016,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 6, @@ -4039,7 +4039,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.6006977975995792, "position": { "x": 6, @@ -4062,7 +4062,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 4, @@ -4085,7 +4085,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6330707327995566, "position": { "x": 6, @@ -4108,7 +4108,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.6348692291995554, "position": { "x": 6, @@ -4131,7 +4131,7 @@ { "lineGroupId": 159, "indexInLine": 3, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.6348692291995554, "position": { "x": 5, @@ -4154,7 +4154,7 @@ { "lineGroupId": 159, "indexInLine": 4, - "noteOrder": 8478.0, + "noteOrder": 4242.0, "time": 0.6348692291995554, "position": { "x": 5, @@ -4177,7 +4177,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.6366677255995541, "position": { "x": 6, @@ -4200,7 +4200,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.6384662219995528, "position": { "x": 6, @@ -4223,7 +4223,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.6384662219995528, "position": { "x": 5, @@ -4246,7 +4246,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 8526.0, + "noteOrder": 4266.0, "time": 0.6384662219995528, "position": { "x": 5, @@ -4269,7 +4269,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6402647183995516, "position": { "x": 6, @@ -4292,7 +4292,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.6420632147995503, "position": { "x": 6, @@ -4315,7 +4315,7 @@ { "lineGroupId": 162, "indexInLine": 3, - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.6420632147995503, "position": { "x": 5, @@ -4338,7 +4338,7 @@ { "lineGroupId": 162, "indexInLine": 4, - "noteOrder": 8574.0, + "noteOrder": 4290.0, "time": 0.6420632147995503, "position": { "x": 5, @@ -4361,7 +4361,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.643861711199549, "position": { "x": 6, @@ -4384,7 +4384,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.6456602075995478, "position": { "x": 6, @@ -4407,7 +4407,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.6456602075995478, "position": { "x": 5, @@ -4430,7 +4430,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 8622.0, + "noteOrder": 4314.0, "time": 0.6456602075995478, "position": { "x": 5, @@ -4453,7 +4453,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.6474587039995465, "position": { "x": 3, @@ -4476,7 +4476,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.6492572003995453, "position": { "x": 3, @@ -4499,7 +4499,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.6492572003995453, "position": { "x": 5, @@ -4522,7 +4522,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 8670.0, + "noteOrder": 4338.0, "time": 0.6492572003995453, "position": { "x": 5, @@ -4545,7 +4545,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.651055696799544, "position": { "x": 3, @@ -4568,7 +4568,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.6528541931995427, "position": { "x": 3, @@ -4591,7 +4591,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.6528541931995427, "position": { "x": 5, @@ -4614,7 +4614,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 8718.0, + "noteOrder": 4362.0, "time": 0.6528541931995427, "position": { "x": 5, @@ -4637,7 +4637,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6546526895995415, "position": { "x": 3, @@ -4660,7 +4660,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.6564511859995402, "position": { "x": 3, @@ -4683,7 +4683,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.6564511859995402, "position": { "x": 5, @@ -4706,7 +4706,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 8766.0, + "noteOrder": 4386.0, "time": 0.6564511859995402, "position": { "x": 5, @@ -4729,7 +4729,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.658249682399539, "position": { "x": 3, @@ -4752,7 +4752,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 8808, + "noteOrder": 4404, "time": 0.6600481787995377, "position": { "x": 3, @@ -4775,7 +4775,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 8808, + "noteOrder": 4404, "time": 0.6600481787995377, "position": { "x": 5, @@ -4798,7 +4798,7 @@ { "lineGroupId": 167, "indexInLine": 4, - "noteOrder": 8814.0, + "noteOrder": 4410.0, "time": 0.6600481787995377, "position": { "x": 5, @@ -4821,7 +4821,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6618466751995364, "position": { "x": 7, @@ -4844,7 +4844,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 8856, + "noteOrder": 4428, "time": 0.6636451715995352, "position": { "x": 7, @@ -4867,7 +4867,7 @@ { "lineGroupId": 168, "indexInLine": 3, - "noteOrder": 8856, + "noteOrder": 4428, "time": 0.6636451715995352, "position": { "x": 6, @@ -4890,7 +4890,7 @@ { "lineGroupId": 168, "indexInLine": 4, - "noteOrder": 8862.0, + "noteOrder": 4434.0, "time": 0.6636451715995352, "position": { "x": 6, @@ -4913,7 +4913,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6654436679995339, "position": { "x": 4, @@ -4936,7 +4936,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 8904, + "noteOrder": 4452, "time": 0.6672421643995327, "position": { "x": 4, @@ -4959,7 +4959,7 @@ { "lineGroupId": 169, "indexInLine": 3, - "noteOrder": 8904, + "noteOrder": 4452, "time": 0.6672421643995327, "position": { "x": 5, @@ -4982,7 +4982,7 @@ { "lineGroupId": 169, "indexInLine": 4, - "noteOrder": 8910.0, + "noteOrder": 4458.0, "time": 0.6672421643995327, "position": { "x": 5, @@ -5005,7 +5005,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6690406607995314, "position": { "x": 7, @@ -5028,7 +5028,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 8952, + "noteOrder": 4476, "time": 0.6708391571995301, "position": { "x": 7, @@ -5051,7 +5051,7 @@ { "lineGroupId": 170, "indexInLine": 3, - "noteOrder": 8952, + "noteOrder": 4476, "time": 0.6708391571995301, "position": { "x": 6, @@ -5074,7 +5074,7 @@ { "lineGroupId": 170, "indexInLine": 4, - "noteOrder": 8958.0, + "noteOrder": 4482.0, "time": 0.6708391571995301, "position": { "x": 6, @@ -5097,7 +5097,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.672637653599529, "position": { "x": 4, @@ -5120,7 +5120,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 9000, + "noteOrder": 4500, "time": 0.6744361499995277, "position": { "x": 4, @@ -5143,7 +5143,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 9000, + "noteOrder": 4500, "time": 0.6744361499995277, "position": { "x": 5, @@ -5166,7 +5166,7 @@ { "lineGroupId": 171, "indexInLine": 4, - "noteOrder": 9006.0, + "noteOrder": 4506.0, "time": 0.6744361499995277, "position": { "x": 5, @@ -5189,7 +5189,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.7158015671994986, "position": { "x": 4, @@ -5212,7 +5212,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 7, @@ -5235,7 +5235,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 8, @@ -5258,7 +5258,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 6, @@ -5281,7 +5281,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8632782719993953, "position": { "x": 3, @@ -5304,7 +5304,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8650767683993942, "position": { "x": 3, @@ -5327,7 +5327,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8650767683993942, "position": { "x": 4, @@ -5350,7 +5350,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 11550.0, + "noteOrder": 5778.0, "time": 0.8650767683993942, "position": { "x": 4, @@ -5373,7 +5373,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8668752647993929, "position": { "x": 7, @@ -5396,7 +5396,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8686737611993917, "position": { "x": 7, @@ -5419,7 +5419,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8686737611993917, "position": { "x": 6, @@ -5442,7 +5442,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 11598.0, + "noteOrder": 5802.0, "time": 0.8686737611993917, "position": { "x": 6, @@ -5465,7 +5465,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8704722575993904, "position": { "x": 3, @@ -5488,7 +5488,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8722707539993891, "position": { "x": 3, @@ -5511,7 +5511,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8722707539993891, "position": { "x": 4, @@ -5534,7 +5534,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 11646.0, + "noteOrder": 5826.0, "time": 0.8722707539993891, "position": { "x": 4, @@ -5557,7 +5557,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8740692503993879, "position": { "x": 7, @@ -5580,7 +5580,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8758677467993866, "position": { "x": 7, @@ -5603,7 +5603,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8758677467993866, "position": { "x": 6, @@ -5626,7 +5626,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.935218127999345, "position": { "x": 6, @@ -5649,7 +5649,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8776662431993854, "position": { "x": 2, @@ -5672,7 +5672,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8920542143993752, "position": { "x": 8, @@ -5695,7 +5695,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.935218127999345, "position": { "x": 2, @@ -5730,7 +5730,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 268, + "BPM": 134, "NPS": "2.35", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b.json index f658c352..be9d699a 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "Jetcoaster Windy difficulty_1b", "sphereNodes": [ { - "noteOrder": 192, + "noteOrder": 96, "time": 0.014387971199989922, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.028775942399979843, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.043163913599969767, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.057551884799959686, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06834286319995214, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07553684879994708, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07913384159994458, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.08273083439994205, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08632782719993953, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08992481999993701, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.0935218127999345, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.10071579839992946, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.10431279119992694, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10790978399992442, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1115067767999219, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11510376959991937, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11870076239991686, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.12229775519991434, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12589474799991182, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.1438797119998992, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.1474767047998967, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.15107369759989417, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.15467069039989167, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15826768319988915, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.16186467599988663, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.1654616687998841, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.16905866159988162, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.17265565439987907, "position": { "x": 5, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.17625264719987654, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17984963999987402, "position": { "x": 5, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.1834466327998715, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.187043625599869, "position": { "x": 5, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.19064061839986648, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.19423761119986396, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.1978346039998614, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.20143159679985892, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2050285895998564, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.20862558239985388, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.21222257519985135, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.21581956799984883, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21941656079984634, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.2230135535998438, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.22661054639984127, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.23020753919983875, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.23380453199983625, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.23740152479983373, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2409985175998312, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.2445955103998287, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.24819250319982616, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.25178949599982364, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2553864887998211, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.2589834815998186, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2625804743998161, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.26617746719981356, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26977445999981103, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.27337145279980857, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.27696844559980605, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2805654383998035, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.284162431199801, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.2877594239997984, "position": { "x": 8, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.2913564167997959, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2949534095997934, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.30214739519978834, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.30574438799978587, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.30934138079978335, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.34531130879975813, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.3525052943997531, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.35969927999974805, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.366893265599743, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.37049025839974054, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3776842439997355, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.38128123679973297, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.38487822959973045, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.39207221519972535, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3956692079997228, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.3992662007997203, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.4064601863997153, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.4100571791997128, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.4136541719997103, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 2, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.42084815759970523, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.4280421431997002, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.4388331215996927, "position": { "x": 2, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.44243011439969016, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.44962409999968506, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.45322109279968253, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.45681808559968, "position": { "x": 8, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 6, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5395489199996221, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.5431459127996195, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5467429055996171, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5503398983996146, "position": { "x": 7, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5539368911996121, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5575338839996096, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.561130876799607, "position": { "x": 5, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5647278695996045, "position": { "x": 8, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.568324862399602, "position": { "x": 4, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5899068191995868, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5971008047995817, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.6042947903995767, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.6078917831995742, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.6114887759995717, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.6150857687995692, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6222797543995642, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6258767471995617, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6294737399995591, "position": { "x": 8, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.651055696799544, "position": { "x": 8, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.658249682399539, "position": { "x": 8, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6654436679995339, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.672637653599529, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6798316391995238, "position": { "x": 5, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 9168, + "noteOrder": 4584, "time": 0.6870256247995188, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 9264, + "noteOrder": 4632, "time": 0.6942196103995137, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.7014135959995087, "position": { "x": 4, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.7086075815995037, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.7158015671994986, "position": { "x": 7, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.7229955527994936, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 7, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7373835239994836, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7625624735994659, "position": { "x": 6, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7661594663994634, "position": { "x": 3, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7697564591994609, "position": { "x": 5, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7769504447994559, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7805474375994533, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7841444303994507, "position": { "x": 5, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7913384159994457, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7949354087994431, "position": { "x": 4, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7985324015994406, "position": { "x": 6, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.8057263871994357, "position": { "x": 4, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 10800, + "noteOrder": 5400, "time": 0.8093233799994332, "position": { "x": 4, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 10848, + "noteOrder": 5424, "time": 0.8129203727994306, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 10896, + "noteOrder": 5448, "time": 0.8165173655994281, "position": { "x": 5, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 10944, + "noteOrder": 5472, "time": 0.8201143583994256, "position": { "x": 4, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 10992, + "noteOrder": 5496, "time": 0.8237113511994231, "position": { "x": 4, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.8273083439994205, "position": { "x": 4, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8345023295994155, "position": { "x": 7, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 11184, + "noteOrder": 5592, "time": 0.838099322399413, "position": { "x": 4, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8416963151994105, "position": { "x": 6, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8488903007994054, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.8524872935994029, "position": { "x": 7, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8560842863994004, "position": { "x": 5, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8596812791993979, "position": { "x": 8, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8632782719993953, "position": { "x": 4, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8668752647993929, "position": { "x": 7, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8704722575993904, "position": { "x": 4, @@ -3207,7 +3207,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.3165353663997783, "position": { "x": 7, @@ -3230,7 +3230,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3201323591997758, "position": { "x": 6, @@ -3253,7 +3253,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.32372935199977326, "position": { "x": 3, @@ -3276,7 +3276,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.32732634479977074, "position": { "x": 4, @@ -3299,7 +3299,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.3309233375997682, "position": { "x": 7, @@ -3322,7 +3322,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.3345203303997657, "position": { "x": 6, @@ -3345,7 +3345,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.33811732319976323, "position": { "x": 3, @@ -3368,7 +3368,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.34171431599976065, "position": { "x": 4, @@ -3391,7 +3391,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.4604150783996775, "position": { "x": 4, @@ -3414,7 +3414,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.464012071199675, "position": { "x": 6, @@ -3437,7 +3437,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4676090639996725, "position": { "x": 4, @@ -3460,7 +3460,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.47120605679967, "position": { "x": 6, @@ -3483,7 +3483,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.47480304959966746, "position": { "x": 4, @@ -3506,7 +3506,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.47840004239966494, "position": { "x": 4, @@ -3529,7 +3529,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4819970351996624, "position": { "x": 4, @@ -3552,7 +3552,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.4855940279996599, "position": { "x": 4, @@ -3575,7 +3575,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5755188479995968, "position": { "x": 8, @@ -3598,7 +3598,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.5791158407995943, "position": { "x": 6, @@ -3621,7 +3621,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5827128335995918, "position": { "x": 8, @@ -3644,7 +3644,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5863098263995893, "position": { "x": 6, @@ -3667,7 +3667,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6330707327995566, "position": { "x": 5, @@ -3690,7 +3690,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.6474587039995465, "position": { "x": 5, @@ -3713,7 +3713,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.748174502399476, "position": { "x": 4, @@ -3736,7 +3736,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7517714951994735, "position": { "x": 4, @@ -3759,7 +3759,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.755368487999471, "position": { "x": 4, @@ -3782,7 +3782,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7589654807994685, "position": { "x": 4, @@ -3805,7 +3805,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8740692503993879, "position": { "x": 6, @@ -3828,7 +3828,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9496060991993349, "position": { "x": 6, @@ -3851,7 +3851,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8776662431993854, "position": { "x": 2, @@ -3874,7 +3874,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8848602287993803, "position": { "x": 4, @@ -3897,7 +3897,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9496060991993349, "position": { "x": 4, @@ -3920,7 +3920,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 289.5, + "noteOrder": 145.5, "time": 0.021581956799984883, "position": { "x": 5, @@ -3948,7 +3948,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 481.5, + "noteOrder": 241.5, "time": 0.0359699279999748, "position": { "x": 5, @@ -3976,7 +3976,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 673.5, + "noteOrder": 337.5, "time": 0.05035789919996473, "position": { "x": 5, @@ -4004,7 +4004,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 865.5, + "noteOrder": 433.5, "time": 0.06474587039995465, "position": { "x": 5, @@ -4032,7 +4032,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1729.5, + "noteOrder": 865.5, "time": 0.1294917407999093, "position": { "x": 5, @@ -4060,7 +4060,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5761.5, + "noteOrder": 2881.5, "time": 0.43163913599969767, "position": { "x": 5, @@ -4088,7 +4088,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6529.5, + "noteOrder": 3265.5, "time": 0.4891910207996574, "position": { "x": 5, @@ -4116,7 +4116,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6721.5, + "noteOrder": 3361.5, "time": 0.5035789919996473, "position": { "x": 5, @@ -4144,7 +4144,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6876.0, + "noteOrder": 3444.0, "time": 0.5143699703996397, "position": { "x": 5, @@ -4185,7 +4185,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 268, + "BPM": 134, "NPS": "1.61", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b_blockless.json index 7a27d657..447080d6 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "Jetcoaster Windy difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 192, + "noteOrder": 96, "time": 0.014387971199989922, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.028775942399979843, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.043163913599969767, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.057551884799959686, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06834286319995214, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07553684879994708, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07913384159994458, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.08273083439994205, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08632782719993953, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08992481999993701, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.0935218127999345, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.10071579839992946, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.10431279119992694, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10790978399992442, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1115067767999219, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11510376959991937, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11870076239991686, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.12229775519991434, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12589474799991182, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.1438797119998992, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.1474767047998967, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.15107369759989417, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.15467069039989167, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15826768319988915, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.16186467599988663, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.1654616687998841, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.16905866159988162, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.17265565439987907, "position": { "x": 5, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.17625264719987654, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17984963999987402, "position": { "x": 5, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.1834466327998715, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.187043625599869, "position": { "x": 5, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.19064061839986648, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.19423761119986396, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.1978346039998614, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.20143159679985892, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2050285895998564, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.20862558239985388, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.21222257519985135, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.21581956799984883, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21941656079984634, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.2230135535998438, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.22661054639984127, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.23020753919983875, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.23380453199983625, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.23740152479983373, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2409985175998312, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.2445955103998287, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.24819250319982616, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.25178949599982364, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2553864887998211, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.2589834815998186, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2625804743998161, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.26617746719981356, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26977445999981103, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.27337145279980857, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.27696844559980605, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2805654383998035, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.284162431199801, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.2877594239997984, "position": { "x": 8, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.2913564167997959, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2949534095997934, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.29855040239979086, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.30214739519978834, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.30574438799978587, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.30934138079978335, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.31293837359978083, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.34531130879975813, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.3525052943997531, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.35969927999974805, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.366893265599743, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.37049025839974054, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.374087251199738, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3776842439997355, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.38128123679973297, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.38487822959973045, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3884752223997279, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.39207221519972535, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3956692079997228, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.3992662007997203, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.40286319359971784, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.4064601863997153, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.4100571791997128, "position": { "x": 3, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.4136541719997103, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.41725116479970775, "position": { "x": 2, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.42084815759970523, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.4244451503997027, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.4280421431997002, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.4388331215996927, "position": { "x": 2, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.44243011439969016, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.4460271071996876, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.44962409999968506, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.45322109279968253, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.45681808559968, "position": { "x": 8, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.5179669631996372, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5251609487996322, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 6, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5323549343996271, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5395489199996221, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.5431459127996195, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5467429055996171, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5503398983996146, "position": { "x": 7, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5539368911996121, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5575338839996096, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.561130876799607, "position": { "x": 5, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5647278695996045, "position": { "x": 8, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.568324862399602, "position": { "x": 4, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.5719218551995995, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5899068191995868, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5971008047995817, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.6042947903995767, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.6078917831995742, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.6114887759995717, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.6150857687995692, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.6186827615995667, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6222797543995642, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6258767471995617, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6294737399995591, "position": { "x": 8, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.651055696799544, "position": { "x": 8, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.658249682399539, "position": { "x": 8, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6654436679995339, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.672637653599529, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6798316391995238, "position": { "x": 5, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 9168, + "noteOrder": 4584, "time": 0.6870256247995188, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 9264, + "noteOrder": 4632, "time": 0.6942196103995137, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.7014135959995087, "position": { "x": 4, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.7086075815995037, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.7158015671994986, "position": { "x": 7, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.7229955527994936, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7301895383994885, "position": { "x": 7, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7373835239994836, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7445775095994785, "position": { "x": 6, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7625624735994659, "position": { "x": 6, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7661594663994634, "position": { "x": 3, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7697564591994609, "position": { "x": 5, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7769504447994559, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7805474375994533, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7841444303994507, "position": { "x": 5, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7913384159994457, "position": { "x": 6, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7949354087994431, "position": { "x": 4, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7985324015994406, "position": { "x": 6, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.8057263871994357, "position": { "x": 4, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 10800, + "noteOrder": 5400, "time": 0.8093233799994332, "position": { "x": 4, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 10848, + "noteOrder": 5424, "time": 0.8129203727994306, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 10896, + "noteOrder": 5448, "time": 0.8165173655994281, "position": { "x": 5, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 10944, + "noteOrder": 5472, "time": 0.8201143583994256, "position": { "x": 4, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 10992, + "noteOrder": 5496, "time": 0.8237113511994231, "position": { "x": 4, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.8273083439994205, "position": { "x": 4, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8345023295994155, "position": { "x": 7, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 11184, + "noteOrder": 5592, "time": 0.838099322399413, "position": { "x": 4, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8416963151994105, "position": { "x": 6, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8488903007994054, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.8524872935994029, "position": { "x": 7, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8560842863994004, "position": { "x": 5, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8596812791993979, "position": { "x": 8, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8632782719993953, "position": { "x": 4, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8668752647993929, "position": { "x": 7, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8704722575993904, "position": { "x": 4, @@ -3207,7 +3207,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.3165353663997783, "position": { "x": 7, @@ -3230,7 +3230,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3201323591997758, "position": { "x": 6, @@ -3253,7 +3253,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.32372935199977326, "position": { "x": 3, @@ -3276,7 +3276,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.32732634479977074, "position": { "x": 4, @@ -3299,7 +3299,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.3309233375997682, "position": { "x": 7, @@ -3322,7 +3322,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.3345203303997657, "position": { "x": 6, @@ -3345,7 +3345,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.33811732319976323, "position": { "x": 3, @@ -3368,7 +3368,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.34171431599976065, "position": { "x": 4, @@ -3391,7 +3391,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.4604150783996775, "position": { "x": 4, @@ -3414,7 +3414,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.464012071199675, "position": { "x": 6, @@ -3437,7 +3437,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4676090639996725, "position": { "x": 4, @@ -3460,7 +3460,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.47120605679967, "position": { "x": 6, @@ -3483,7 +3483,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.47480304959966746, "position": { "x": 4, @@ -3506,7 +3506,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.47840004239966494, "position": { "x": 4, @@ -3529,7 +3529,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4819970351996624, "position": { "x": 4, @@ -3552,7 +3552,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.4855940279996599, "position": { "x": 4, @@ -3575,7 +3575,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5755188479995968, "position": { "x": 8, @@ -3598,7 +3598,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.5791158407995943, "position": { "x": 6, @@ -3621,7 +3621,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5827128335995918, "position": { "x": 8, @@ -3644,7 +3644,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5863098263995893, "position": { "x": 6, @@ -3667,7 +3667,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6330707327995566, "position": { "x": 5, @@ -3690,7 +3690,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.6474587039995465, "position": { "x": 5, @@ -3713,7 +3713,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.748174502399476, "position": { "x": 4, @@ -3736,7 +3736,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7517714951994735, "position": { "x": 4, @@ -3759,7 +3759,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.755368487999471, "position": { "x": 4, @@ -3782,7 +3782,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7589654807994685, "position": { "x": 4, @@ -3805,7 +3805,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8740692503993879, "position": { "x": 6, @@ -3828,7 +3828,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9496060991993349, "position": { "x": 6, @@ -3851,7 +3851,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8776662431993854, "position": { "x": 2, @@ -3874,7 +3874,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8848602287993803, "position": { "x": 4, @@ -3897,7 +3897,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9496060991993349, "position": { "x": 4, @@ -3932,7 +3932,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 268, + "BPM": 134, "NPS": "1.61", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/info.json b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/info.json index 243c5093..7e809c91 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Jetcoaster Windy/info.json @@ -3,7 +3,7 @@ "SongName": "Jetcoaster Windy", "SongLength": "124.481474", "SongAuthorName": "BEMANI Sound Team \"dj TAKA\" feat.\u306e\u306e", - "Bpm": "268", + "Bpm": "134", "SongPath": "230.ogg", "CreateTicks": 637376256000000000, "CreateTime": "637376256000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a.json index 706411f0..ad169a61 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "LIKE A VAMPIRE difficulty_1a", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.0069442427790604895, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 72, "time": 0.010416364168590734, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.013888485558120979, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.017360606947651222, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 144, "time": 0.02083272833718147, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 168, "time": 0.02430484972671171, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.027776971116241958, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.031249092505772205, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 240, "time": 0.034721213895302444, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 264, "time": 0.038193335284832694, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.04166545667436294, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.04513757806389319, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 336, "time": 0.04860969945342342, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 360, "time": 0.05208182084295367, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.055553942232483916, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07291454918013514, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08680303473825612, "position": { "x": 5, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.1006915202963771, "position": { "x": 5, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11458000585449808, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12152424863355857, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.12846849141261904, "position": { "x": 5, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 912, "time": 0.1319406128021493, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 936, "time": 0.13541273419167954, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.14235697697074004, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.14582909836027028, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.1493012197498005, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.156245462528861, "position": { "x": 8, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.15971758391839128, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.1631897053079215, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.170133948086982, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.22221576892993566, "position": { "x": 2, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.22916001170899616, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2326321330985264, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.23610425448805664, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.2395763758775869, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.24304849726711714, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2465206186566474, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.24999274004617764, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2534648614357079, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.2569369828252381, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26040910421476837, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.2638812256042986, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.26735334699382884, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2708254683833591, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.27429758977288937, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.27776971116241955, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.28124183255194984, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.3333236533949035, "position": { "x": 8, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.3437400175634942, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.3472121389530245, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.35068426034255473, "position": { "x": 5, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.35415638173208497, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.3576285031216152, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.3611006245111455, "position": { "x": 3, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3645727459006757, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.39929395979597815, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.4062382025750387, "position": { "x": 5, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.40971032396456886, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.41318244535409915, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.4201266881331596, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.45832002341799233, "position": { "x": 7, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4652642661970528, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.4722085089761133, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.4860969945342343, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.4930412373132948, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.496513358702825, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.49998548009235527, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.5034576014818855, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.5104018442609459, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5138739656504762, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5208182084295367, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5277624512085972, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5694279078829602, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5763721506620206, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.5798442720515509, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.5833163934410811, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.5867885148306113, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.597204878999202, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6041491217782625, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6076212431677929, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6110933645573231, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.6145654859468533, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 8, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.6215097287259138, "position": { "x": 5, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.624981850115444, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.6284539715049743, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6319260928945045, "position": { "x": 6, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.6353982142840349, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6388703356735651, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6423424570630952, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6458145784526255, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.6492866998421558, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6562309426212163, "position": { "x": 2, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 9120, + "noteOrder": 4560, "time": 0.6597030640107465, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 9168, + "noteOrder": 4584, "time": 0.6631751854002768, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 9216, + "noteOrder": 4608, "time": 0.666647306789807, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.6770636709583977, "position": { "x": 5, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 3, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.6840079137374582, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.6909521565165186, "position": { "x": 5, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 3, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.6978963992955792, "position": { "x": 5, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7048406420746397, "position": { "x": 5, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 7, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7117848848537002, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7187291276327606, "position": { "x": 5, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 7, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7256733704118212, "position": { "x": 5, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 6, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7326176131908816, "position": { "x": 4, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7360897345804119, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7395618559699422, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7430339773594724, "position": { "x": 7, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 10320, + "noteOrder": 5160, "time": 0.7465060987490026, "position": { "x": 5, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7499782201385328, "position": { "x": 3, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7534503415280631, "position": { "x": 5, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7569224629175934, "position": { "x": 7, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 10512, + "noteOrder": 5256, "time": 0.7603945843071236, "position": { "x": 5, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7638667056966538, "position": { "x": 3, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7673388270861842, "position": { "x": 5, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.7985879195919563, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.8020600409814865, "position": { "x": 4, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8055321623710168, "position": { "x": 6, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8610861046035007, "position": { "x": 8, @@ -3167,7 +3167,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 432, "time": 0.06249818501154441, "position": { "x": 4, @@ -3190,7 +3190,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 3, @@ -3213,7 +3213,7 @@ { "lineGroupId": 17, "indexInLine": 3, - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 4, @@ -3236,7 +3236,7 @@ { "lineGroupId": 17, "indexInLine": 4, - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07291454918013514, "position": { "x": 3, @@ -3259,7 +3259,7 @@ { "lineGroupId": 17, "indexInLine": 5, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 4, @@ -3282,7 +3282,7 @@ { "lineGroupId": 17, "indexInLine": 6, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 3, @@ -3305,7 +3305,7 @@ { "lineGroupId": 17, "indexInLine": 7, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 4, @@ -3328,7 +3328,7 @@ { "lineGroupId": 17, "indexInLine": 8, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08680303473825612, "position": { "x": 3, @@ -3351,7 +3351,7 @@ { "lineGroupId": 17, "indexInLine": 9, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 4, @@ -3374,7 +3374,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 6, @@ -3397,7 +3397,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 7, @@ -3420,7 +3420,7 @@ { "lineGroupId": 25, "indexInLine": 3, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 6, @@ -3443,7 +3443,7 @@ { "lineGroupId": 25, "indexInLine": 4, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.1006915202963771, "position": { "x": 7, @@ -3466,7 +3466,7 @@ { "lineGroupId": 25, "indexInLine": 5, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 6, @@ -3489,7 +3489,7 @@ { "lineGroupId": 25, "indexInLine": 6, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 7, @@ -3512,7 +3512,7 @@ { "lineGroupId": 25, "indexInLine": 7, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 6, @@ -3535,7 +3535,7 @@ { "lineGroupId": 25, "indexInLine": 8, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11458000585449808, "position": { "x": 7, @@ -3558,7 +3558,7 @@ { "lineGroupId": 25, "indexInLine": 9, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 6, @@ -3581,7 +3581,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17360606947651225, "position": { "x": 2, @@ -3604,7 +3604,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.17534213017127737, "position": { "x": 2, @@ -3627,7 +3627,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.17534213017127737, "position": { "x": 3, @@ -3650,7 +3650,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 2430.0, + "noteOrder": 1218.0, "time": 0.17534213017127737, "position": { "x": 3, @@ -3673,7 +3673,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 2, @@ -3696,7 +3696,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2472, + "noteOrder": 1236, "time": 0.1788142515608076, "position": { "x": 2, @@ -3719,7 +3719,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 2472, + "noteOrder": 1236, "time": 0.1788142515608076, "position": { "x": 3, @@ -3742,7 +3742,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 2478.0, + "noteOrder": 1242.0, "time": 0.1788142515608076, "position": { "x": 3, @@ -3765,7 +3765,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.18055031225557275, "position": { "x": 2, @@ -3788,7 +3788,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2520, + "noteOrder": 1260, "time": 0.18228637295033784, "position": { "x": 2, @@ -3811,7 +3811,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 2520, + "noteOrder": 1260, "time": 0.18228637295033784, "position": { "x": 3, @@ -3834,7 +3834,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 2526.0, + "noteOrder": 1266.0, "time": 0.18228637295033784, "position": { "x": 3, @@ -3857,7 +3857,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 2, @@ -3880,7 +3880,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 2568, + "noteOrder": 1284, "time": 0.1857584943398681, "position": { "x": 2, @@ -3903,7 +3903,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 2568, + "noteOrder": 1284, "time": 0.1857584943398681, "position": { "x": 3, @@ -3926,7 +3926,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 2574.0, + "noteOrder": 1290.0, "time": 0.1857584943398681, "position": { "x": 3, @@ -3949,7 +3949,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.1874945550346332, "position": { "x": 2, @@ -3972,7 +3972,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.18923061572939834, "position": { "x": 2, @@ -3995,7 +3995,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.18923061572939834, "position": { "x": 3, @@ -4018,7 +4018,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 2622.0, + "noteOrder": 1314.0, "time": 0.18923061572939834, "position": { "x": 3, @@ -4041,7 +4041,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 2, @@ -4064,7 +4064,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.19270273711892857, "position": { "x": 2, @@ -4087,7 +4087,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.19270273711892857, "position": { "x": 3, @@ -4110,7 +4110,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 2670.0, + "noteOrder": 1338.0, "time": 0.19270273711892857, "position": { "x": 3, @@ -4133,7 +4133,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.1944387978136937, "position": { "x": 2, @@ -4156,7 +4156,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.19617485850845884, "position": { "x": 2, @@ -4179,7 +4179,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.19617485850845884, "position": { "x": 3, @@ -4202,7 +4202,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 2718.0, + "noteOrder": 1362.0, "time": 0.19617485850845884, "position": { "x": 3, @@ -4225,7 +4225,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 2, @@ -4248,7 +4248,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.19964697989798907, "position": { "x": 2, @@ -4271,7 +4271,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.19964697989798907, "position": { "x": 3, @@ -4294,7 +4294,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 2766.0, + "noteOrder": 1386.0, "time": 0.19964697989798907, "position": { "x": 3, @@ -4317,7 +4317,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.2013830405927542, "position": { "x": 2, @@ -4340,7 +4340,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 1404, "time": 0.20311910128751934, "position": { "x": 2, @@ -4363,7 +4363,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 2808, + "noteOrder": 1404, "time": 0.20311910128751934, "position": { "x": 3, @@ -4386,7 +4386,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 2814.0, + "noteOrder": 1410.0, "time": 0.20311910128751934, "position": { "x": 3, @@ -4409,7 +4409,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 2, @@ -4432,7 +4432,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 1428, "time": 0.20659122267704957, "position": { "x": 2, @@ -4455,7 +4455,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 2856, + "noteOrder": 1428, "time": 0.20659122267704957, "position": { "x": 3, @@ -4478,7 +4478,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 2862.0, + "noteOrder": 1434.0, "time": 0.20659122267704957, "position": { "x": 3, @@ -4501,7 +4501,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.2083272833718147, "position": { "x": 2, @@ -4524,7 +4524,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 1452, "time": 0.2100633440665798, "position": { "x": 2, @@ -4547,7 +4547,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 2904, + "noteOrder": 1452, "time": 0.2100633440665798, "position": { "x": 3, @@ -4570,7 +4570,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 2910.0, + "noteOrder": 1458.0, "time": 0.2100633440665798, "position": { "x": 3, @@ -4593,7 +4593,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 2, @@ -4616,7 +4616,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 1476, "time": 0.21353546545611007, "position": { "x": 2, @@ -4639,7 +4639,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 2952, + "noteOrder": 1476, "time": 0.21353546545611007, "position": { "x": 3, @@ -4662,7 +4662,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 2958.0, + "noteOrder": 1482.0, "time": 0.21353546545611007, "position": { "x": 3, @@ -4685,7 +4685,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.21527152615087516, "position": { "x": 2, @@ -4708,7 +4708,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.2170075868456403, "position": { "x": 2, @@ -4731,7 +4731,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.2170075868456403, "position": { "x": 3, @@ -4754,7 +4754,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 3006.0, + "noteOrder": 1506.0, "time": 0.2170075868456403, "position": { "x": 3, @@ -4777,7 +4777,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 2, @@ -4800,7 +4800,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.22047970823517055, "position": { "x": 2, @@ -4823,7 +4823,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.22047970823517055, "position": { "x": 3, @@ -4846,7 +4846,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 3054.0, + "noteOrder": 1530.0, "time": 0.22047970823517055, "position": { "x": 3, @@ -4869,7 +4869,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2847139539414801, "position": { "x": 8, @@ -4892,7 +4892,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.2864500146362452, "position": { "x": 8, @@ -4915,7 +4915,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.2864500146362452, "position": { "x": 7, @@ -4938,7 +4938,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 3966.0, + "noteOrder": 1986.0, "time": 0.2864500146362452, "position": { "x": 7, @@ -4961,7 +4961,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 8, @@ -4984,7 +4984,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.28992213602577543, "position": { "x": 8, @@ -5007,7 +5007,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.28992213602577543, "position": { "x": 7, @@ -5030,7 +5030,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 4014.0, + "noteOrder": 2010.0, "time": 0.28992213602577543, "position": { "x": 7, @@ -5053,7 +5053,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.29165819672054055, "position": { "x": 8, @@ -5076,7 +5076,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.29339425741530567, "position": { "x": 8, @@ -5099,7 +5099,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.29339425741530567, "position": { "x": 7, @@ -5122,7 +5122,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 4062.0, + "noteOrder": 2034.0, "time": 0.29339425741530567, "position": { "x": 7, @@ -5145,7 +5145,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 8, @@ -5168,7 +5168,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.29686637880483596, "position": { "x": 8, @@ -5191,7 +5191,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.29686637880483596, "position": { "x": 7, @@ -5214,7 +5214,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 4110.0, + "noteOrder": 2058.0, "time": 0.29686637880483596, "position": { "x": 7, @@ -5237,7 +5237,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.298602439499601, "position": { "x": 8, @@ -5260,7 +5260,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.30033850019436614, "position": { "x": 8, @@ -5283,7 +5283,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.30033850019436614, "position": { "x": 7, @@ -5306,7 +5306,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 4158.0, + "noteOrder": 2082.0, "time": 0.30033850019436614, "position": { "x": 7, @@ -5329,7 +5329,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 8, @@ -5352,7 +5352,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 2100, "time": 0.30381062158389643, "position": { "x": 8, @@ -5375,7 +5375,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 4200, + "noteOrder": 2100, "time": 0.30381062158389643, "position": { "x": 7, @@ -5398,7 +5398,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 4206.0, + "noteOrder": 2106.0, "time": 0.30381062158389643, "position": { "x": 7, @@ -5421,7 +5421,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.30554668227866155, "position": { "x": 8, @@ -5444,7 +5444,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 4248, + "noteOrder": 2124, "time": 0.30728274297342667, "position": { "x": 8, @@ -5467,7 +5467,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 4248, + "noteOrder": 2124, "time": 0.30728274297342667, "position": { "x": 7, @@ -5490,7 +5490,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 4254.0, + "noteOrder": 2130.0, "time": 0.30728274297342667, "position": { "x": 7, @@ -5513,7 +5513,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 8, @@ -5536,7 +5536,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 4296, + "noteOrder": 2148, "time": 0.3107548643629569, "position": { "x": 8, @@ -5559,7 +5559,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 4296, + "noteOrder": 2148, "time": 0.3107548643629569, "position": { "x": 7, @@ -5582,7 +5582,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 4302.0, + "noteOrder": 2154.0, "time": 0.3107548643629569, "position": { "x": 7, @@ -5605,7 +5605,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.312490925057722, "position": { "x": 8, @@ -5628,7 +5628,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 2172, "time": 0.31422698575248714, "position": { "x": 8, @@ -5651,7 +5651,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 4344, + "noteOrder": 2172, "time": 0.31422698575248714, "position": { "x": 7, @@ -5674,7 +5674,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 4350.0, + "noteOrder": 2178.0, "time": 0.31422698575248714, "position": { "x": 7, @@ -5697,7 +5697,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 8, @@ -5720,7 +5720,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.31769910714201743, "position": { "x": 8, @@ -5743,7 +5743,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.31769910714201743, "position": { "x": 7, @@ -5766,7 +5766,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 4398.0, + "noteOrder": 2202.0, "time": 0.31769910714201743, "position": { "x": 7, @@ -5789,7 +5789,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.31943516783678255, "position": { "x": 8, @@ -5812,7 +5812,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 2220, "time": 0.3211712285315476, "position": { "x": 8, @@ -5835,7 +5835,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 4440, + "noteOrder": 2220, "time": 0.3211712285315476, "position": { "x": 7, @@ -5858,7 +5858,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 4446.0, + "noteOrder": 2226.0, "time": 0.3211712285315476, "position": { "x": 7, @@ -5881,7 +5881,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 8, @@ -5904,7 +5904,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 2244, "time": 0.3246433499210779, "position": { "x": 8, @@ -5927,7 +5927,7 @@ { "lineGroupId": 92, "indexInLine": 3, - "noteOrder": 4488, + "noteOrder": 2244, "time": 0.3246433499210779, "position": { "x": 7, @@ -5950,7 +5950,7 @@ { "lineGroupId": 92, "indexInLine": 4, - "noteOrder": 4494.0, + "noteOrder": 2250.0, "time": 0.3246433499210779, "position": { "x": 7, @@ -5973,7 +5973,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.326379410615843, "position": { "x": 8, @@ -5996,7 +5996,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.32811547131060814, "position": { "x": 8, @@ -6019,7 +6019,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.32811547131060814, "position": { "x": 7, @@ -6042,7 +6042,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 4542.0, + "noteOrder": 2274.0, "time": 0.32811547131060814, "position": { "x": 7, @@ -6065,7 +6065,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 8, @@ -6088,7 +6088,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 2292, "time": 0.3315875927001384, "position": { "x": 8, @@ -6111,7 +6111,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 4584, + "noteOrder": 2292, "time": 0.3315875927001384, "position": { "x": 7, @@ -6134,7 +6134,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 4590.0, + "noteOrder": 2298.0, "time": 0.3315875927001384, "position": { "x": 7, @@ -6157,7 +6157,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.340267896173964, "position": { "x": 8, @@ -6180,7 +6180,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 5, @@ -6203,7 +6203,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.3958218384064479, "position": { "x": 2, @@ -6226,7 +6226,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.42359880952268986, "position": { "x": 5, @@ -6249,7 +6249,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4513757806389318, "position": { "x": 7, @@ -6272,7 +6272,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 3, @@ -6295,7 +6295,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 3, @@ -6318,7 +6318,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 7, @@ -6341,7 +6341,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 7, @@ -6364,7 +6364,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 3, @@ -6387,7 +6387,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 6, @@ -6410,7 +6410,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5381788153771879, "position": { "x": 6, @@ -6433,7 +6433,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 4, @@ -6456,7 +6456,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5451230581562484, "position": { "x": 4, @@ -6479,7 +6479,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 3, @@ -6502,7 +6502,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5555394223248391, "position": { "x": 3, @@ -6525,7 +6525,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 7, @@ -6548,7 +6548,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5555394223248391, "position": { "x": 7, @@ -6571,7 +6571,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5624836651038997, "position": { "x": 8, @@ -6594,7 +6594,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 5, @@ -6617,7 +6617,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 2, @@ -6640,7 +6640,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 5, @@ -6663,7 +6663,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6735915495688675, "position": { "x": 6, @@ -6686,7 +6686,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.6770636709583977, "position": { "x": 7, @@ -6709,7 +6709,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 6, @@ -6732,7 +6732,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.6840079137374582, "position": { "x": 7, @@ -6755,7 +6755,7 @@ { "lineGroupId": 182, "indexInLine": 5, - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 6, @@ -6778,7 +6778,7 @@ { "lineGroupId": 182, "indexInLine": 6, - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.6909521565165186, "position": { "x": 7, @@ -6801,7 +6801,7 @@ { "lineGroupId": 182, "indexInLine": 7, - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 6, @@ -6824,7 +6824,7 @@ { "lineGroupId": 182, "indexInLine": 8, - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.6978963992955792, "position": { "x": 7, @@ -6847,7 +6847,7 @@ { "lineGroupId": 182, "indexInLine": 9, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 6, @@ -6870,7 +6870,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 4, @@ -6893,7 +6893,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7048406420746397, "position": { "x": 3, @@ -6916,7 +6916,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 4, @@ -6939,7 +6939,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7117848848537002, "position": { "x": 3, @@ -6962,7 +6962,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 4, @@ -6985,7 +6985,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7187291276327606, "position": { "x": 3, @@ -7008,7 +7008,7 @@ { "lineGroupId": 190, "indexInLine": 7, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 4, @@ -7031,7 +7031,7 @@ { "lineGroupId": 190, "indexInLine": 8, - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7256733704118212, "position": { "x": 3, @@ -7054,7 +7054,7 @@ { "lineGroupId": 190, "indexInLine": 9, - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 4, @@ -7077,7 +7077,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 7, @@ -7100,7 +7100,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 7, @@ -7123,7 +7123,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 3, @@ -7146,7 +7146,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 3, @@ -7169,7 +7169,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8124764051500774, "position": { "x": 8, @@ -7192,7 +7192,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 11256, + "noteOrder": 5628, "time": 0.8142124658448424, "position": { "x": 8, @@ -7215,7 +7215,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 11256, + "noteOrder": 5628, "time": 0.8142124658448424, "position": { "x": 7, @@ -7238,7 +7238,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 11262.0, + "noteOrder": 5634.0, "time": 0.8142124658448424, "position": { "x": 7, @@ -7261,7 +7261,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 8, @@ -7284,7 +7284,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 11304, + "noteOrder": 5652, "time": 0.8176845872343727, "position": { "x": 8, @@ -7307,7 +7307,7 @@ { "lineGroupId": 219, "indexInLine": 3, - "noteOrder": 11304, + "noteOrder": 5652, "time": 0.8176845872343727, "position": { "x": 7, @@ -7330,7 +7330,7 @@ { "lineGroupId": 219, "indexInLine": 4, - "noteOrder": 11310.0, + "noteOrder": 5658.0, "time": 0.8176845872343727, "position": { "x": 7, @@ -7353,7 +7353,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8194206479291377, "position": { "x": 8, @@ -7376,7 +7376,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 11352, + "noteOrder": 5676, "time": 0.8211567086239029, "position": { "x": 8, @@ -7399,7 +7399,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 11352, + "noteOrder": 5676, "time": 0.8211567086239029, "position": { "x": 7, @@ -7422,7 +7422,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 11358.0, + "noteOrder": 5682.0, "time": 0.8211567086239029, "position": { "x": 7, @@ -7445,7 +7445,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 8, @@ -7468,7 +7468,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 11400, + "noteOrder": 5700, "time": 0.8246288300134332, "position": { "x": 8, @@ -7491,7 +7491,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 11400, + "noteOrder": 5700, "time": 0.8246288300134332, "position": { "x": 7, @@ -7514,7 +7514,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 11406.0, + "noteOrder": 5706.0, "time": 0.8246288300134332, "position": { "x": 7, @@ -7537,7 +7537,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8263648907081983, "position": { "x": 8, @@ -7560,7 +7560,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 11448, + "noteOrder": 5724, "time": 0.8281009514029634, "position": { "x": 8, @@ -7583,7 +7583,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 11448, + "noteOrder": 5724, "time": 0.8281009514029634, "position": { "x": 7, @@ -7606,7 +7606,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 11454.0, + "noteOrder": 5730.0, "time": 0.8281009514029634, "position": { "x": 7, @@ -7629,7 +7629,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 8, @@ -7652,7 +7652,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 11496, + "noteOrder": 5748, "time": 0.8315730727924936, "position": { "x": 8, @@ -7675,7 +7675,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 11496, + "noteOrder": 5748, "time": 0.8315730727924936, "position": { "x": 7, @@ -7698,7 +7698,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 11502.0, + "noteOrder": 5754.0, "time": 0.8315730727924936, "position": { "x": 7, @@ -7721,7 +7721,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8333091334872588, "position": { "x": 8, @@ -7744,7 +7744,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8350451941820238, "position": { "x": 8, @@ -7767,7 +7767,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8350451941820238, "position": { "x": 7, @@ -7790,7 +7790,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 11550.0, + "noteOrder": 5778.0, "time": 0.8350451941820238, "position": { "x": 7, @@ -7813,7 +7813,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 8, @@ -7836,7 +7836,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8385173155715542, "position": { "x": 8, @@ -7859,7 +7859,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8385173155715542, "position": { "x": 7, @@ -7882,7 +7882,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 11598.0, + "noteOrder": 5802.0, "time": 0.8385173155715542, "position": { "x": 7, @@ -7905,7 +7905,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8402533762663192, "position": { "x": 8, @@ -7928,7 +7928,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8419894369610844, "position": { "x": 8, @@ -7951,7 +7951,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8419894369610844, "position": { "x": 7, @@ -7974,7 +7974,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 11646.0, + "noteOrder": 5826.0, "time": 0.8419894369610844, "position": { "x": 7, @@ -7997,7 +7997,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 8, @@ -8020,7 +8020,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8454615583506147, "position": { "x": 8, @@ -8043,7 +8043,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8454615583506147, "position": { "x": 7, @@ -8066,7 +8066,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 11694.0, + "noteOrder": 5850.0, "time": 0.8454615583506147, "position": { "x": 7, @@ -8089,7 +8089,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8471976190453797, "position": { "x": 8, @@ -8112,7 +8112,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 11736, + "noteOrder": 5868, "time": 0.8489336797401448, "position": { "x": 8, @@ -8135,7 +8135,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 11736, + "noteOrder": 5868, "time": 0.8489336797401448, "position": { "x": 7, @@ -8158,7 +8158,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 11742.0, + "noteOrder": 5874.0, "time": 0.8489336797401448, "position": { "x": 7, @@ -8181,7 +8181,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 8, @@ -8204,7 +8204,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 11784, + "noteOrder": 5892, "time": 0.852405801129675, "position": { "x": 8, @@ -8227,7 +8227,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 11784, + "noteOrder": 5892, "time": 0.852405801129675, "position": { "x": 7, @@ -8250,7 +8250,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 11790.0, + "noteOrder": 5898.0, "time": 0.852405801129675, "position": { "x": 7, @@ -8273,7 +8273,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8541418618244403, "position": { "x": 8, @@ -8296,7 +8296,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 11832, + "noteOrder": 5916, "time": 0.8558779225192054, "position": { "x": 8, @@ -8319,7 +8319,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 11832, + "noteOrder": 5916, "time": 0.8558779225192054, "position": { "x": 7, @@ -8342,7 +8342,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 11838.0, + "noteOrder": 5922.0, "time": 0.8558779225192054, "position": { "x": 7, @@ -8365,7 +8365,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 8, @@ -8388,7 +8388,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 11880, + "noteOrder": 5940, "time": 0.8593500439087356, "position": { "x": 8, @@ -8411,7 +8411,7 @@ { "lineGroupId": 231, "indexInLine": 3, - "noteOrder": 11880, + "noteOrder": 5940, "time": 0.8593500439087356, "position": { "x": 7, @@ -8434,7 +8434,7 @@ { "lineGroupId": 231, "indexInLine": 4, - "noteOrder": 11886.0, + "noteOrder": 5946.0, "time": 0.8593500439087356, "position": { "x": 7, @@ -8457,7 +8457,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 12000, + "noteOrder": 6000, "time": 0.8680303473825612, "position": { "x": 2, @@ -8480,7 +8480,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 12024, + "noteOrder": 6012, "time": 0.8697664080773263, "position": { "x": 2, @@ -8503,7 +8503,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 12024, + "noteOrder": 6012, "time": 0.8697664080773263, "position": { "x": 3, @@ -8526,7 +8526,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 12030.0, + "noteOrder": 6018.0, "time": 0.8697664080773263, "position": { "x": 3, @@ -8549,7 +8549,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 12048, + "noteOrder": 6024, "time": 0.8715024687720915, "position": { "x": 2, @@ -8572,7 +8572,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 12072, + "noteOrder": 6036, "time": 0.8732385294668565, "position": { "x": 2, @@ -8595,7 +8595,7 @@ { "lineGroupId": 234, "indexInLine": 3, - "noteOrder": 12072, + "noteOrder": 6036, "time": 0.8732385294668565, "position": { "x": 3, @@ -8618,7 +8618,7 @@ { "lineGroupId": 234, "indexInLine": 4, - "noteOrder": 12078.0, + "noteOrder": 6042.0, "time": 0.8732385294668565, "position": { "x": 3, @@ -8641,7 +8641,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 12096, + "noteOrder": 6048, "time": 0.8749745901616217, "position": { "x": 2, @@ -8664,7 +8664,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 12120, + "noteOrder": 6060, "time": 0.8767106508563868, "position": { "x": 2, @@ -8687,7 +8687,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 12120, + "noteOrder": 6060, "time": 0.8767106508563868, "position": { "x": 3, @@ -8710,7 +8710,7 @@ { "lineGroupId": 235, "indexInLine": 4, - "noteOrder": 12126.0, + "noteOrder": 6066.0, "time": 0.8767106508563868, "position": { "x": 3, @@ -8733,7 +8733,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 12144, + "noteOrder": 6072, "time": 0.878446711551152, "position": { "x": 2, @@ -8756,7 +8756,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 12168, + "noteOrder": 6084, "time": 0.880182772245917, "position": { "x": 2, @@ -8779,7 +8779,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 12168, + "noteOrder": 6084, "time": 0.880182772245917, "position": { "x": 3, @@ -8802,7 +8802,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 12174.0, + "noteOrder": 6090.0, "time": 0.880182772245917, "position": { "x": 3, @@ -8825,7 +8825,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 12192, + "noteOrder": 6096, "time": 0.8819188329406822, "position": { "x": 2, @@ -8848,7 +8848,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 12216, + "noteOrder": 6108, "time": 0.8836548936354474, "position": { "x": 2, @@ -8871,7 +8871,7 @@ { "lineGroupId": 237, "indexInLine": 3, - "noteOrder": 12216, + "noteOrder": 6108, "time": 0.8836548936354474, "position": { "x": 3, @@ -8894,7 +8894,7 @@ { "lineGroupId": 237, "indexInLine": 4, - "noteOrder": 12222.0, + "noteOrder": 6114.0, "time": 0.8836548936354474, "position": { "x": 3, @@ -8917,7 +8917,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 12240, + "noteOrder": 6120, "time": 0.8853909543302124, "position": { "x": 2, @@ -8940,7 +8940,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 12264, + "noteOrder": 6132, "time": 0.8871270150249776, "position": { "x": 2, @@ -8963,7 +8963,7 @@ { "lineGroupId": 238, "indexInLine": 3, - "noteOrder": 12264, + "noteOrder": 6132, "time": 0.8871270150249776, "position": { "x": 3, @@ -8986,7 +8986,7 @@ { "lineGroupId": 238, "indexInLine": 4, - "noteOrder": 12270.0, + "noteOrder": 6138.0, "time": 0.8871270150249776, "position": { "x": 3, @@ -9009,7 +9009,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 2, @@ -9032,7 +9032,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 12312, + "noteOrder": 6156, "time": 0.8905991364145077, "position": { "x": 2, @@ -9055,7 +9055,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 12312, + "noteOrder": 6156, "time": 0.8905991364145077, "position": { "x": 3, @@ -9078,7 +9078,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 12318.0, + "noteOrder": 6162.0, "time": 0.8905991364145077, "position": { "x": 3, @@ -9101,7 +9101,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 12336, + "noteOrder": 6168, "time": 0.8923351971092729, "position": { "x": 2, @@ -9124,7 +9124,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 12360, + "noteOrder": 6180, "time": 0.894071257804038, "position": { "x": 2, @@ -9147,7 +9147,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 12360, + "noteOrder": 6180, "time": 0.894071257804038, "position": { "x": 3, @@ -9170,7 +9170,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 12366.0, + "noteOrder": 6186.0, "time": 0.894071257804038, "position": { "x": 3, @@ -9193,7 +9193,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 12384, + "noteOrder": 6192, "time": 0.8958073184988031, "position": { "x": 2, @@ -9216,7 +9216,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 12408, + "noteOrder": 6204, "time": 0.8975433791935683, "position": { "x": 2, @@ -9239,7 +9239,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 12408, + "noteOrder": 6204, "time": 0.8975433791935683, "position": { "x": 3, @@ -9262,7 +9262,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 12414.0, + "noteOrder": 6210.0, "time": 0.8975433791935683, "position": { "x": 3, @@ -9285,7 +9285,7 @@ { "lineGroupId": 242, "indexInLine": 1, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 2, @@ -9308,7 +9308,7 @@ { "lineGroupId": 242, "indexInLine": 2, - "noteOrder": 12456, + "noteOrder": 6228, "time": 0.9010155005830985, "position": { "x": 2, @@ -9331,7 +9331,7 @@ { "lineGroupId": 242, "indexInLine": 3, - "noteOrder": 12456, + "noteOrder": 6228, "time": 0.9010155005830985, "position": { "x": 3, @@ -9354,7 +9354,7 @@ { "lineGroupId": 242, "indexInLine": 4, - "noteOrder": 12462.0, + "noteOrder": 6234.0, "time": 0.9010155005830985, "position": { "x": 3, @@ -9377,7 +9377,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.9027515612778636, "position": { "x": 2, @@ -9400,7 +9400,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 12504, + "noteOrder": 6252, "time": 0.9044876219726288, "position": { "x": 2, @@ -9423,7 +9423,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 12504, + "noteOrder": 6252, "time": 0.9044876219726288, "position": { "x": 3, @@ -9446,7 +9446,7 @@ { "lineGroupId": 243, "indexInLine": 4, - "noteOrder": 12510.0, + "noteOrder": 6258.0, "time": 0.9044876219726288, "position": { "x": 3, @@ -9469,7 +9469,7 @@ { "lineGroupId": 244, "indexInLine": 1, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 2, @@ -9492,7 +9492,7 @@ { "lineGroupId": 244, "indexInLine": 2, - "noteOrder": 12552, + "noteOrder": 6276, "time": 0.907959743362159, "position": { "x": 2, @@ -9515,7 +9515,7 @@ { "lineGroupId": 244, "indexInLine": 3, - "noteOrder": 12552, + "noteOrder": 6276, "time": 0.907959743362159, "position": { "x": 3, @@ -9538,7 +9538,7 @@ { "lineGroupId": 244, "indexInLine": 4, - "noteOrder": 12558.0, + "noteOrder": 6282.0, "time": 0.907959743362159, "position": { "x": 3, @@ -9561,7 +9561,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 12576, + "noteOrder": 6288, "time": 0.9096958040569241, "position": { "x": 2, @@ -9584,7 +9584,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 12600, + "noteOrder": 6300, "time": 0.9114318647516894, "position": { "x": 2, @@ -9607,7 +9607,7 @@ { "lineGroupId": 245, "indexInLine": 3, - "noteOrder": 12600, + "noteOrder": 6300, "time": 0.9114318647516894, "position": { "x": 3, @@ -9630,7 +9630,7 @@ { "lineGroupId": 245, "indexInLine": 4, - "noteOrder": 12606.0, + "noteOrder": 6306.0, "time": 0.9114318647516894, "position": { "x": 3, @@ -9653,7 +9653,7 @@ { "lineGroupId": 246, "indexInLine": 1, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 2, @@ -9676,7 +9676,7 @@ { "lineGroupId": 246, "indexInLine": 2, - "noteOrder": 12648, + "noteOrder": 6324, "time": 0.9149039861412195, "position": { "x": 2, @@ -9699,7 +9699,7 @@ { "lineGroupId": 246, "indexInLine": 3, - "noteOrder": 12648, + "noteOrder": 6324, "time": 0.9149039861412195, "position": { "x": 3, @@ -9722,7 +9722,7 @@ { "lineGroupId": 246, "indexInLine": 4, - "noteOrder": 12654.0, + "noteOrder": 6330.0, "time": 0.9149039861412195, "position": { "x": 3, @@ -9745,7 +9745,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9166400468359847, "position": { "x": 3, @@ -9768,7 +9768,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 3, @@ -9791,7 +9791,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 12720, + "noteOrder": 6360, "time": 0.9201121682255149, "position": { "x": 7, @@ -9814,7 +9814,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 7, @@ -9837,7 +9837,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 828.0, + "noteOrder": 420.0, "time": 0.05902606362201416, "position": { "x": 5, @@ -9865,7 +9865,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5089.5, + "noteOrder": 2545.5, "time": 0.36804486729020597, "position": { "x": 5, @@ -9893,7 +9893,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5185.5, + "noteOrder": 2593.5, "time": 0.3749891100692664, "position": { "x": 5, @@ -9921,7 +9921,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5281.5, + "noteOrder": 2641.5, "time": 0.3819333528483269, "position": { "x": 5, @@ -9949,7 +9949,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5377.5, + "noteOrder": 2689.5, "time": 0.3888775956273874, "position": { "x": 5, @@ -9977,7 +9977,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5857.5, + "noteOrder": 2929.5, "time": 0.42359880952268986, "position": { "x": 5, @@ -10005,7 +10005,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5953.5, + "noteOrder": 2977.5, "time": 0.43054305230175033, "position": { "x": 5, @@ -10033,7 +10033,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6049.5, + "noteOrder": 3025.5, "time": 0.43748729508081086, "position": { "x": 5, @@ -10061,7 +10061,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6145.5, + "noteOrder": 3073.5, "time": 0.44443153785987133, "position": { "x": 5, @@ -10089,7 +10089,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7441.5, + "noteOrder": 3721.5, "time": 0.5381788153771879, "position": { "x": 5, @@ -10117,7 +10117,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7537.5, + "noteOrder": 3769.5, "time": 0.5451230581562484, "position": { "x": 5, @@ -10145,7 +10145,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7681.5, + "noteOrder": 3841.5, "time": 0.5555394223248391, "position": { "x": 5, @@ -10173,7 +10173,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10753.5, + "noteOrder": 5377.5, "time": 0.7777551912547748, "position": { "x": 5, @@ -10201,7 +10201,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10849.5, + "noteOrder": 5425.5, "time": 0.7846994340338354, "position": { "x": 5, @@ -10229,7 +10229,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 11196.0, + "noteOrder": 5604.0, "time": 0.8090042837605471, "position": { "x": 5, @@ -10270,7 +10270,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 276, + "BPM": 138, "NPS": "3.7", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a_blockless.json index 87f8ec41..a52ebc46 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "LIKE A VAMPIRE difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.0069442427790604895, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 72, "time": 0.010416364168590734, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.013888485558120979, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.017360606947651222, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 144, "time": 0.02083272833718147, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 168, "time": 0.02430484972671171, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.027776971116241958, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.031249092505772205, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 240, "time": 0.034721213895302444, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 264, "time": 0.038193335284832694, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.04166545667436294, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.04513757806389319, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 336, "time": 0.04860969945342342, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 360, "time": 0.05208182084295367, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.055553942232483916, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07291454918013514, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08680303473825612, "position": { "x": 5, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.1006915202963771, "position": { "x": 5, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11458000585449808, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.12152424863355857, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.12846849141261904, "position": { "x": 5, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 912, "time": 0.1319406128021493, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 936, "time": 0.13541273419167954, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.14235697697074004, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.14582909836027028, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 1032, "time": 0.1493012197498005, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.156245462528861, "position": { "x": 8, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.15971758391839128, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.1631897053079215, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.170133948086982, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.22221576892993566, "position": { "x": 2, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.22916001170899616, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2326321330985264, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.23610425448805664, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.2395763758775869, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.24304849726711714, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2465206186566474, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.24999274004617764, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.2534648614357079, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.2569369828252381, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26040910421476837, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.2638812256042986, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.26735334699382884, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2708254683833591, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.27429758977288937, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.27776971116241955, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.28124183255194984, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.3333236533949035, "position": { "x": 8, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.3437400175634942, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.3472121389530245, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.35068426034255473, "position": { "x": 5, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.35415638173208497, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.3576285031216152, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.3611006245111455, "position": { "x": 3, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5040, + "noteOrder": 2520, "time": 0.3645727459006757, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.39929395979597815, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.4062382025750387, "position": { "x": 5, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.40971032396456886, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.41318244535409915, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.4201266881331596, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.45832002341799233, "position": { "x": 7, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4652642661970528, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.4722085089761133, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.4860969945342343, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.4930412373132948, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.496513358702825, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.49998548009235527, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.5034576014818855, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.5104018442609459, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.5138739656504762, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5208182084295367, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5277624512085972, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5694279078829602, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5763721506620206, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.5798442720515509, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.5833163934410811, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.5867885148306113, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.597204878999202, "position": { "x": 5, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6041491217782625, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.6076212431677929, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6110933645573231, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.6145654859468533, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 8, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.6215097287259138, "position": { "x": 5, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.624981850115444, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.6284539715049743, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6319260928945045, "position": { "x": 6, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.6353982142840349, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6388703356735651, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8880, + "noteOrder": 4440, "time": 0.6423424570630952, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6458145784526255, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 4488, "time": 0.6492866998421558, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 9072, + "noteOrder": 4536, "time": 0.6562309426212163, "position": { "x": 2, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 9120, + "noteOrder": 4560, "time": 0.6597030640107465, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 9168, + "noteOrder": 4584, "time": 0.6631751854002768, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 9216, + "noteOrder": 4608, "time": 0.666647306789807, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.6770636709583977, "position": { "x": 5, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 3, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.6840079137374582, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.6909521565165186, "position": { "x": 5, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 3, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.6978963992955792, "position": { "x": 5, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7048406420746397, "position": { "x": 5, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 7, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7117848848537002, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 7, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7187291276327606, "position": { "x": 5, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 7, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7256733704118212, "position": { "x": 5, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 6, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7326176131908816, "position": { "x": 4, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7360897345804119, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 10224, + "noteOrder": 5112, "time": 0.7395618559699422, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7430339773594724, "position": { "x": 7, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 10320, + "noteOrder": 5160, "time": 0.7465060987490026, "position": { "x": 5, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7499782201385328, "position": { "x": 3, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 10416, + "noteOrder": 5208, "time": 0.7534503415280631, "position": { "x": 5, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7569224629175934, "position": { "x": 7, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 10512, + "noteOrder": 5256, "time": 0.7603945843071236, "position": { "x": 5, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7638667056966538, "position": { "x": 3, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7673388270861842, "position": { "x": 5, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.7985879195919563, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.8020600409814865, "position": { "x": 4, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 11136, + "noteOrder": 5568, "time": 0.8055321623710168, "position": { "x": 6, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8610861046035007, "position": { "x": 8, @@ -3167,7 +3167,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 432, "time": 0.06249818501154441, "position": { "x": 4, @@ -3190,7 +3190,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 3, @@ -3213,7 +3213,7 @@ { "lineGroupId": 17, "indexInLine": 3, - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 4, @@ -3236,7 +3236,7 @@ { "lineGroupId": 17, "indexInLine": 4, - "noteOrder": 1008, + "noteOrder": 504, "time": 0.07291454918013514, "position": { "x": 3, @@ -3259,7 +3259,7 @@ { "lineGroupId": 17, "indexInLine": 5, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 4, @@ -3282,7 +3282,7 @@ { "lineGroupId": 17, "indexInLine": 6, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 3, @@ -3305,7 +3305,7 @@ { "lineGroupId": 17, "indexInLine": 7, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 4, @@ -3328,7 +3328,7 @@ { "lineGroupId": 17, "indexInLine": 8, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.08680303473825612, "position": { "x": 3, @@ -3351,7 +3351,7 @@ { "lineGroupId": 17, "indexInLine": 9, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 4, @@ -3374,7 +3374,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 6, @@ -3397,7 +3397,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 7, @@ -3420,7 +3420,7 @@ { "lineGroupId": 25, "indexInLine": 3, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 6, @@ -3443,7 +3443,7 @@ { "lineGroupId": 25, "indexInLine": 4, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.1006915202963771, "position": { "x": 7, @@ -3466,7 +3466,7 @@ { "lineGroupId": 25, "indexInLine": 5, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 6, @@ -3489,7 +3489,7 @@ { "lineGroupId": 25, "indexInLine": 6, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 7, @@ -3512,7 +3512,7 @@ { "lineGroupId": 25, "indexInLine": 7, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 6, @@ -3535,7 +3535,7 @@ { "lineGroupId": 25, "indexInLine": 8, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.11458000585449808, "position": { "x": 7, @@ -3558,7 +3558,7 @@ { "lineGroupId": 25, "indexInLine": 9, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 6, @@ -3581,7 +3581,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17360606947651225, "position": { "x": 2, @@ -3604,7 +3604,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.17534213017127737, "position": { "x": 2, @@ -3627,7 +3627,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.17534213017127737, "position": { "x": 3, @@ -3650,7 +3650,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 2430.0, + "noteOrder": 1218.0, "time": 0.17534213017127737, "position": { "x": 3, @@ -3673,7 +3673,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 2, @@ -3696,7 +3696,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2472, + "noteOrder": 1236, "time": 0.1788142515608076, "position": { "x": 2, @@ -3719,7 +3719,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 2472, + "noteOrder": 1236, "time": 0.1788142515608076, "position": { "x": 3, @@ -3742,7 +3742,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 2478.0, + "noteOrder": 1242.0, "time": 0.1788142515608076, "position": { "x": 3, @@ -3765,7 +3765,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.18055031225557275, "position": { "x": 2, @@ -3788,7 +3788,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2520, + "noteOrder": 1260, "time": 0.18228637295033784, "position": { "x": 2, @@ -3811,7 +3811,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 2520, + "noteOrder": 1260, "time": 0.18228637295033784, "position": { "x": 3, @@ -3834,7 +3834,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 2526.0, + "noteOrder": 1266.0, "time": 0.18228637295033784, "position": { "x": 3, @@ -3857,7 +3857,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 2, @@ -3880,7 +3880,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 2568, + "noteOrder": 1284, "time": 0.1857584943398681, "position": { "x": 2, @@ -3903,7 +3903,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 2568, + "noteOrder": 1284, "time": 0.1857584943398681, "position": { "x": 3, @@ -3926,7 +3926,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 2574.0, + "noteOrder": 1290.0, "time": 0.1857584943398681, "position": { "x": 3, @@ -3949,7 +3949,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.1874945550346332, "position": { "x": 2, @@ -3972,7 +3972,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.18923061572939834, "position": { "x": 2, @@ -3995,7 +3995,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.18923061572939834, "position": { "x": 3, @@ -4018,7 +4018,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 2622.0, + "noteOrder": 1314.0, "time": 0.18923061572939834, "position": { "x": 3, @@ -4041,7 +4041,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 2, @@ -4064,7 +4064,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.19270273711892857, "position": { "x": 2, @@ -4087,7 +4087,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.19270273711892857, "position": { "x": 3, @@ -4110,7 +4110,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 2670.0, + "noteOrder": 1338.0, "time": 0.19270273711892857, "position": { "x": 3, @@ -4133,7 +4133,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.1944387978136937, "position": { "x": 2, @@ -4156,7 +4156,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.19617485850845884, "position": { "x": 2, @@ -4179,7 +4179,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.19617485850845884, "position": { "x": 3, @@ -4202,7 +4202,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 2718.0, + "noteOrder": 1362.0, "time": 0.19617485850845884, "position": { "x": 3, @@ -4225,7 +4225,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 2, @@ -4248,7 +4248,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.19964697989798907, "position": { "x": 2, @@ -4271,7 +4271,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.19964697989798907, "position": { "x": 3, @@ -4294,7 +4294,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 2766.0, + "noteOrder": 1386.0, "time": 0.19964697989798907, "position": { "x": 3, @@ -4317,7 +4317,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.2013830405927542, "position": { "x": 2, @@ -4340,7 +4340,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 1404, "time": 0.20311910128751934, "position": { "x": 2, @@ -4363,7 +4363,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 2808, + "noteOrder": 1404, "time": 0.20311910128751934, "position": { "x": 3, @@ -4386,7 +4386,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 2814.0, + "noteOrder": 1410.0, "time": 0.20311910128751934, "position": { "x": 3, @@ -4409,7 +4409,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 2, @@ -4432,7 +4432,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 1428, "time": 0.20659122267704957, "position": { "x": 2, @@ -4455,7 +4455,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 2856, + "noteOrder": 1428, "time": 0.20659122267704957, "position": { "x": 3, @@ -4478,7 +4478,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 2862.0, + "noteOrder": 1434.0, "time": 0.20659122267704957, "position": { "x": 3, @@ -4501,7 +4501,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.2083272833718147, "position": { "x": 2, @@ -4524,7 +4524,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 1452, "time": 0.2100633440665798, "position": { "x": 2, @@ -4547,7 +4547,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 2904, + "noteOrder": 1452, "time": 0.2100633440665798, "position": { "x": 3, @@ -4570,7 +4570,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 2910.0, + "noteOrder": 1458.0, "time": 0.2100633440665798, "position": { "x": 3, @@ -4593,7 +4593,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 2, @@ -4616,7 +4616,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 1476, "time": 0.21353546545611007, "position": { "x": 2, @@ -4639,7 +4639,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 2952, + "noteOrder": 1476, "time": 0.21353546545611007, "position": { "x": 3, @@ -4662,7 +4662,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 2958.0, + "noteOrder": 1482.0, "time": 0.21353546545611007, "position": { "x": 3, @@ -4685,7 +4685,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.21527152615087516, "position": { "x": 2, @@ -4708,7 +4708,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.2170075868456403, "position": { "x": 2, @@ -4731,7 +4731,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.2170075868456403, "position": { "x": 3, @@ -4754,7 +4754,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 3006.0, + "noteOrder": 1506.0, "time": 0.2170075868456403, "position": { "x": 3, @@ -4777,7 +4777,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 2, @@ -4800,7 +4800,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.22047970823517055, "position": { "x": 2, @@ -4823,7 +4823,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.22047970823517055, "position": { "x": 3, @@ -4846,7 +4846,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 3054.0, + "noteOrder": 1530.0, "time": 0.22047970823517055, "position": { "x": 3, @@ -4869,7 +4869,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2847139539414801, "position": { "x": 8, @@ -4892,7 +4892,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.2864500146362452, "position": { "x": 8, @@ -4915,7 +4915,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.2864500146362452, "position": { "x": 7, @@ -4938,7 +4938,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 3966.0, + "noteOrder": 1986.0, "time": 0.2864500146362452, "position": { "x": 7, @@ -4961,7 +4961,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 8, @@ -4984,7 +4984,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.28992213602577543, "position": { "x": 8, @@ -5007,7 +5007,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.28992213602577543, "position": { "x": 7, @@ -5030,7 +5030,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 4014.0, + "noteOrder": 2010.0, "time": 0.28992213602577543, "position": { "x": 7, @@ -5053,7 +5053,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.29165819672054055, "position": { "x": 8, @@ -5076,7 +5076,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.29339425741530567, "position": { "x": 8, @@ -5099,7 +5099,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.29339425741530567, "position": { "x": 7, @@ -5122,7 +5122,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 4062.0, + "noteOrder": 2034.0, "time": 0.29339425741530567, "position": { "x": 7, @@ -5145,7 +5145,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 8, @@ -5168,7 +5168,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.29686637880483596, "position": { "x": 8, @@ -5191,7 +5191,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.29686637880483596, "position": { "x": 7, @@ -5214,7 +5214,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 4110.0, + "noteOrder": 2058.0, "time": 0.29686637880483596, "position": { "x": 7, @@ -5237,7 +5237,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.298602439499601, "position": { "x": 8, @@ -5260,7 +5260,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.30033850019436614, "position": { "x": 8, @@ -5283,7 +5283,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.30033850019436614, "position": { "x": 7, @@ -5306,7 +5306,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 4158.0, + "noteOrder": 2082.0, "time": 0.30033850019436614, "position": { "x": 7, @@ -5329,7 +5329,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 8, @@ -5352,7 +5352,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 2100, "time": 0.30381062158389643, "position": { "x": 8, @@ -5375,7 +5375,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 4200, + "noteOrder": 2100, "time": 0.30381062158389643, "position": { "x": 7, @@ -5398,7 +5398,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 4206.0, + "noteOrder": 2106.0, "time": 0.30381062158389643, "position": { "x": 7, @@ -5421,7 +5421,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.30554668227866155, "position": { "x": 8, @@ -5444,7 +5444,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 4248, + "noteOrder": 2124, "time": 0.30728274297342667, "position": { "x": 8, @@ -5467,7 +5467,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 4248, + "noteOrder": 2124, "time": 0.30728274297342667, "position": { "x": 7, @@ -5490,7 +5490,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 4254.0, + "noteOrder": 2130.0, "time": 0.30728274297342667, "position": { "x": 7, @@ -5513,7 +5513,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 8, @@ -5536,7 +5536,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 4296, + "noteOrder": 2148, "time": 0.3107548643629569, "position": { "x": 8, @@ -5559,7 +5559,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 4296, + "noteOrder": 2148, "time": 0.3107548643629569, "position": { "x": 7, @@ -5582,7 +5582,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 4302.0, + "noteOrder": 2154.0, "time": 0.3107548643629569, "position": { "x": 7, @@ -5605,7 +5605,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.312490925057722, "position": { "x": 8, @@ -5628,7 +5628,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 2172, "time": 0.31422698575248714, "position": { "x": 8, @@ -5651,7 +5651,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 4344, + "noteOrder": 2172, "time": 0.31422698575248714, "position": { "x": 7, @@ -5674,7 +5674,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 4350.0, + "noteOrder": 2178.0, "time": 0.31422698575248714, "position": { "x": 7, @@ -5697,7 +5697,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 8, @@ -5720,7 +5720,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.31769910714201743, "position": { "x": 8, @@ -5743,7 +5743,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.31769910714201743, "position": { "x": 7, @@ -5766,7 +5766,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 4398.0, + "noteOrder": 2202.0, "time": 0.31769910714201743, "position": { "x": 7, @@ -5789,7 +5789,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.31943516783678255, "position": { "x": 8, @@ -5812,7 +5812,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 2220, "time": 0.3211712285315476, "position": { "x": 8, @@ -5835,7 +5835,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 4440, + "noteOrder": 2220, "time": 0.3211712285315476, "position": { "x": 7, @@ -5858,7 +5858,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 4446.0, + "noteOrder": 2226.0, "time": 0.3211712285315476, "position": { "x": 7, @@ -5881,7 +5881,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 8, @@ -5904,7 +5904,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 2244, "time": 0.3246433499210779, "position": { "x": 8, @@ -5927,7 +5927,7 @@ { "lineGroupId": 92, "indexInLine": 3, - "noteOrder": 4488, + "noteOrder": 2244, "time": 0.3246433499210779, "position": { "x": 7, @@ -5950,7 +5950,7 @@ { "lineGroupId": 92, "indexInLine": 4, - "noteOrder": 4494.0, + "noteOrder": 2250.0, "time": 0.3246433499210779, "position": { "x": 7, @@ -5973,7 +5973,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.326379410615843, "position": { "x": 8, @@ -5996,7 +5996,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.32811547131060814, "position": { "x": 8, @@ -6019,7 +6019,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.32811547131060814, "position": { "x": 7, @@ -6042,7 +6042,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 4542.0, + "noteOrder": 2274.0, "time": 0.32811547131060814, "position": { "x": 7, @@ -6065,7 +6065,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 8, @@ -6088,7 +6088,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 2292, "time": 0.3315875927001384, "position": { "x": 8, @@ -6111,7 +6111,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 4584, + "noteOrder": 2292, "time": 0.3315875927001384, "position": { "x": 7, @@ -6134,7 +6134,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 4590.0, + "noteOrder": 2298.0, "time": 0.3315875927001384, "position": { "x": 7, @@ -6157,7 +6157,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.340267896173964, "position": { "x": 8, @@ -6180,7 +6180,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 5, @@ -6203,7 +6203,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.3958218384064479, "position": { "x": 2, @@ -6226,7 +6226,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.42359880952268986, "position": { "x": 5, @@ -6249,7 +6249,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4513757806389318, "position": { "x": 7, @@ -6272,7 +6272,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 3, @@ -6295,7 +6295,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 3, @@ -6318,7 +6318,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 7, @@ -6341,7 +6341,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 7, @@ -6364,7 +6364,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 3, @@ -6387,7 +6387,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 6, @@ -6410,7 +6410,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.5381788153771879, "position": { "x": 6, @@ -6433,7 +6433,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 4, @@ -6456,7 +6456,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.5451230581562484, "position": { "x": 4, @@ -6479,7 +6479,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 3, @@ -6502,7 +6502,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5555394223248391, "position": { "x": 3, @@ -6525,7 +6525,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 7, @@ -6548,7 +6548,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.5555394223248391, "position": { "x": 7, @@ -6571,7 +6571,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5624836651038997, "position": { "x": 8, @@ -6594,7 +6594,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 5, @@ -6617,7 +6617,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 2, @@ -6640,7 +6640,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 5, @@ -6663,7 +6663,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6735915495688675, "position": { "x": 6, @@ -6686,7 +6686,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 9360, + "noteOrder": 4680, "time": 0.6770636709583977, "position": { "x": 7, @@ -6709,7 +6709,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 6, @@ -6732,7 +6732,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 9456, + "noteOrder": 4728, "time": 0.6840079137374582, "position": { "x": 7, @@ -6755,7 +6755,7 @@ { "lineGroupId": 182, "indexInLine": 5, - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 6, @@ -6778,7 +6778,7 @@ { "lineGroupId": 182, "indexInLine": 6, - "noteOrder": 9552, + "noteOrder": 4776, "time": 0.6909521565165186, "position": { "x": 7, @@ -6801,7 +6801,7 @@ { "lineGroupId": 182, "indexInLine": 7, - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 6, @@ -6824,7 +6824,7 @@ { "lineGroupId": 182, "indexInLine": 8, - "noteOrder": 9648, + "noteOrder": 4824, "time": 0.6978963992955792, "position": { "x": 7, @@ -6847,7 +6847,7 @@ { "lineGroupId": 182, "indexInLine": 9, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 6, @@ -6870,7 +6870,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 4, @@ -6893,7 +6893,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 9744, + "noteOrder": 4872, "time": 0.7048406420746397, "position": { "x": 3, @@ -6916,7 +6916,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 4, @@ -6939,7 +6939,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 9840, + "noteOrder": 4920, "time": 0.7117848848537002, "position": { "x": 3, @@ -6962,7 +6962,7 @@ { "lineGroupId": 190, "indexInLine": 5, - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 4, @@ -6985,7 +6985,7 @@ { "lineGroupId": 190, "indexInLine": 6, - "noteOrder": 9936, + "noteOrder": 4968, "time": 0.7187291276327606, "position": { "x": 3, @@ -7008,7 +7008,7 @@ { "lineGroupId": 190, "indexInLine": 7, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 4, @@ -7031,7 +7031,7 @@ { "lineGroupId": 190, "indexInLine": 8, - "noteOrder": 10032, + "noteOrder": 5016, "time": 0.7256733704118212, "position": { "x": 3, @@ -7054,7 +7054,7 @@ { "lineGroupId": 190, "indexInLine": 9, - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 4, @@ -7077,7 +7077,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 7, @@ -7100,7 +7100,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 7, @@ -7123,7 +7123,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 3, @@ -7146,7 +7146,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 3, @@ -7169,7 +7169,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8124764051500774, "position": { "x": 8, @@ -7192,7 +7192,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 11256, + "noteOrder": 5628, "time": 0.8142124658448424, "position": { "x": 8, @@ -7215,7 +7215,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 11256, + "noteOrder": 5628, "time": 0.8142124658448424, "position": { "x": 7, @@ -7238,7 +7238,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 11262.0, + "noteOrder": 5634.0, "time": 0.8142124658448424, "position": { "x": 7, @@ -7261,7 +7261,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 8, @@ -7284,7 +7284,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 11304, + "noteOrder": 5652, "time": 0.8176845872343727, "position": { "x": 8, @@ -7307,7 +7307,7 @@ { "lineGroupId": 219, "indexInLine": 3, - "noteOrder": 11304, + "noteOrder": 5652, "time": 0.8176845872343727, "position": { "x": 7, @@ -7330,7 +7330,7 @@ { "lineGroupId": 219, "indexInLine": 4, - "noteOrder": 11310.0, + "noteOrder": 5658.0, "time": 0.8176845872343727, "position": { "x": 7, @@ -7353,7 +7353,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8194206479291377, "position": { "x": 8, @@ -7376,7 +7376,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 11352, + "noteOrder": 5676, "time": 0.8211567086239029, "position": { "x": 8, @@ -7399,7 +7399,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 11352, + "noteOrder": 5676, "time": 0.8211567086239029, "position": { "x": 7, @@ -7422,7 +7422,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 11358.0, + "noteOrder": 5682.0, "time": 0.8211567086239029, "position": { "x": 7, @@ -7445,7 +7445,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 8, @@ -7468,7 +7468,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 11400, + "noteOrder": 5700, "time": 0.8246288300134332, "position": { "x": 8, @@ -7491,7 +7491,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 11400, + "noteOrder": 5700, "time": 0.8246288300134332, "position": { "x": 7, @@ -7514,7 +7514,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 11406.0, + "noteOrder": 5706.0, "time": 0.8246288300134332, "position": { "x": 7, @@ -7537,7 +7537,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8263648907081983, "position": { "x": 8, @@ -7560,7 +7560,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 11448, + "noteOrder": 5724, "time": 0.8281009514029634, "position": { "x": 8, @@ -7583,7 +7583,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 11448, + "noteOrder": 5724, "time": 0.8281009514029634, "position": { "x": 7, @@ -7606,7 +7606,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 11454.0, + "noteOrder": 5730.0, "time": 0.8281009514029634, "position": { "x": 7, @@ -7629,7 +7629,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 8, @@ -7652,7 +7652,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 11496, + "noteOrder": 5748, "time": 0.8315730727924936, "position": { "x": 8, @@ -7675,7 +7675,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 11496, + "noteOrder": 5748, "time": 0.8315730727924936, "position": { "x": 7, @@ -7698,7 +7698,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 11502.0, + "noteOrder": 5754.0, "time": 0.8315730727924936, "position": { "x": 7, @@ -7721,7 +7721,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8333091334872588, "position": { "x": 8, @@ -7744,7 +7744,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8350451941820238, "position": { "x": 8, @@ -7767,7 +7767,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 11544, + "noteOrder": 5772, "time": 0.8350451941820238, "position": { "x": 7, @@ -7790,7 +7790,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 11550.0, + "noteOrder": 5778.0, "time": 0.8350451941820238, "position": { "x": 7, @@ -7813,7 +7813,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 8, @@ -7836,7 +7836,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8385173155715542, "position": { "x": 8, @@ -7859,7 +7859,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 11592, + "noteOrder": 5796, "time": 0.8385173155715542, "position": { "x": 7, @@ -7882,7 +7882,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 11598.0, + "noteOrder": 5802.0, "time": 0.8385173155715542, "position": { "x": 7, @@ -7905,7 +7905,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8402533762663192, "position": { "x": 8, @@ -7928,7 +7928,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8419894369610844, "position": { "x": 8, @@ -7951,7 +7951,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 11640, + "noteOrder": 5820, "time": 0.8419894369610844, "position": { "x": 7, @@ -7974,7 +7974,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 11646.0, + "noteOrder": 5826.0, "time": 0.8419894369610844, "position": { "x": 7, @@ -7997,7 +7997,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 8, @@ -8020,7 +8020,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8454615583506147, "position": { "x": 8, @@ -8043,7 +8043,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 11688, + "noteOrder": 5844, "time": 0.8454615583506147, "position": { "x": 7, @@ -8066,7 +8066,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 11694.0, + "noteOrder": 5850.0, "time": 0.8454615583506147, "position": { "x": 7, @@ -8089,7 +8089,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8471976190453797, "position": { "x": 8, @@ -8112,7 +8112,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 11736, + "noteOrder": 5868, "time": 0.8489336797401448, "position": { "x": 8, @@ -8135,7 +8135,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 11736, + "noteOrder": 5868, "time": 0.8489336797401448, "position": { "x": 7, @@ -8158,7 +8158,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 11742.0, + "noteOrder": 5874.0, "time": 0.8489336797401448, "position": { "x": 7, @@ -8181,7 +8181,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 8, @@ -8204,7 +8204,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 11784, + "noteOrder": 5892, "time": 0.852405801129675, "position": { "x": 8, @@ -8227,7 +8227,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 11784, + "noteOrder": 5892, "time": 0.852405801129675, "position": { "x": 7, @@ -8250,7 +8250,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 11790.0, + "noteOrder": 5898.0, "time": 0.852405801129675, "position": { "x": 7, @@ -8273,7 +8273,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8541418618244403, "position": { "x": 8, @@ -8296,7 +8296,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 11832, + "noteOrder": 5916, "time": 0.8558779225192054, "position": { "x": 8, @@ -8319,7 +8319,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 11832, + "noteOrder": 5916, "time": 0.8558779225192054, "position": { "x": 7, @@ -8342,7 +8342,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 11838.0, + "noteOrder": 5922.0, "time": 0.8558779225192054, "position": { "x": 7, @@ -8365,7 +8365,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 8, @@ -8388,7 +8388,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 11880, + "noteOrder": 5940, "time": 0.8593500439087356, "position": { "x": 8, @@ -8411,7 +8411,7 @@ { "lineGroupId": 231, "indexInLine": 3, - "noteOrder": 11880, + "noteOrder": 5940, "time": 0.8593500439087356, "position": { "x": 7, @@ -8434,7 +8434,7 @@ { "lineGroupId": 231, "indexInLine": 4, - "noteOrder": 11886.0, + "noteOrder": 5946.0, "time": 0.8593500439087356, "position": { "x": 7, @@ -8457,7 +8457,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 12000, + "noteOrder": 6000, "time": 0.8680303473825612, "position": { "x": 2, @@ -8480,7 +8480,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 12024, + "noteOrder": 6012, "time": 0.8697664080773263, "position": { "x": 2, @@ -8503,7 +8503,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 12024, + "noteOrder": 6012, "time": 0.8697664080773263, "position": { "x": 3, @@ -8526,7 +8526,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 12030.0, + "noteOrder": 6018.0, "time": 0.8697664080773263, "position": { "x": 3, @@ -8549,7 +8549,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 12048, + "noteOrder": 6024, "time": 0.8715024687720915, "position": { "x": 2, @@ -8572,7 +8572,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 12072, + "noteOrder": 6036, "time": 0.8732385294668565, "position": { "x": 2, @@ -8595,7 +8595,7 @@ { "lineGroupId": 234, "indexInLine": 3, - "noteOrder": 12072, + "noteOrder": 6036, "time": 0.8732385294668565, "position": { "x": 3, @@ -8618,7 +8618,7 @@ { "lineGroupId": 234, "indexInLine": 4, - "noteOrder": 12078.0, + "noteOrder": 6042.0, "time": 0.8732385294668565, "position": { "x": 3, @@ -8641,7 +8641,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 12096, + "noteOrder": 6048, "time": 0.8749745901616217, "position": { "x": 2, @@ -8664,7 +8664,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 12120, + "noteOrder": 6060, "time": 0.8767106508563868, "position": { "x": 2, @@ -8687,7 +8687,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 12120, + "noteOrder": 6060, "time": 0.8767106508563868, "position": { "x": 3, @@ -8710,7 +8710,7 @@ { "lineGroupId": 235, "indexInLine": 4, - "noteOrder": 12126.0, + "noteOrder": 6066.0, "time": 0.8767106508563868, "position": { "x": 3, @@ -8733,7 +8733,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 12144, + "noteOrder": 6072, "time": 0.878446711551152, "position": { "x": 2, @@ -8756,7 +8756,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 12168, + "noteOrder": 6084, "time": 0.880182772245917, "position": { "x": 2, @@ -8779,7 +8779,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 12168, + "noteOrder": 6084, "time": 0.880182772245917, "position": { "x": 3, @@ -8802,7 +8802,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 12174.0, + "noteOrder": 6090.0, "time": 0.880182772245917, "position": { "x": 3, @@ -8825,7 +8825,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 12192, + "noteOrder": 6096, "time": 0.8819188329406822, "position": { "x": 2, @@ -8848,7 +8848,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 12216, + "noteOrder": 6108, "time": 0.8836548936354474, "position": { "x": 2, @@ -8871,7 +8871,7 @@ { "lineGroupId": 237, "indexInLine": 3, - "noteOrder": 12216, + "noteOrder": 6108, "time": 0.8836548936354474, "position": { "x": 3, @@ -8894,7 +8894,7 @@ { "lineGroupId": 237, "indexInLine": 4, - "noteOrder": 12222.0, + "noteOrder": 6114.0, "time": 0.8836548936354474, "position": { "x": 3, @@ -8917,7 +8917,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 12240, + "noteOrder": 6120, "time": 0.8853909543302124, "position": { "x": 2, @@ -8940,7 +8940,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 12264, + "noteOrder": 6132, "time": 0.8871270150249776, "position": { "x": 2, @@ -8963,7 +8963,7 @@ { "lineGroupId": 238, "indexInLine": 3, - "noteOrder": 12264, + "noteOrder": 6132, "time": 0.8871270150249776, "position": { "x": 3, @@ -8986,7 +8986,7 @@ { "lineGroupId": 238, "indexInLine": 4, - "noteOrder": 12270.0, + "noteOrder": 6138.0, "time": 0.8871270150249776, "position": { "x": 3, @@ -9009,7 +9009,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 2, @@ -9032,7 +9032,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 12312, + "noteOrder": 6156, "time": 0.8905991364145077, "position": { "x": 2, @@ -9055,7 +9055,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 12312, + "noteOrder": 6156, "time": 0.8905991364145077, "position": { "x": 3, @@ -9078,7 +9078,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 12318.0, + "noteOrder": 6162.0, "time": 0.8905991364145077, "position": { "x": 3, @@ -9101,7 +9101,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 12336, + "noteOrder": 6168, "time": 0.8923351971092729, "position": { "x": 2, @@ -9124,7 +9124,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 12360, + "noteOrder": 6180, "time": 0.894071257804038, "position": { "x": 2, @@ -9147,7 +9147,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 12360, + "noteOrder": 6180, "time": 0.894071257804038, "position": { "x": 3, @@ -9170,7 +9170,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 12366.0, + "noteOrder": 6186.0, "time": 0.894071257804038, "position": { "x": 3, @@ -9193,7 +9193,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 12384, + "noteOrder": 6192, "time": 0.8958073184988031, "position": { "x": 2, @@ -9216,7 +9216,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 12408, + "noteOrder": 6204, "time": 0.8975433791935683, "position": { "x": 2, @@ -9239,7 +9239,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 12408, + "noteOrder": 6204, "time": 0.8975433791935683, "position": { "x": 3, @@ -9262,7 +9262,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 12414.0, + "noteOrder": 6210.0, "time": 0.8975433791935683, "position": { "x": 3, @@ -9285,7 +9285,7 @@ { "lineGroupId": 242, "indexInLine": 1, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 2, @@ -9308,7 +9308,7 @@ { "lineGroupId": 242, "indexInLine": 2, - "noteOrder": 12456, + "noteOrder": 6228, "time": 0.9010155005830985, "position": { "x": 2, @@ -9331,7 +9331,7 @@ { "lineGroupId": 242, "indexInLine": 3, - "noteOrder": 12456, + "noteOrder": 6228, "time": 0.9010155005830985, "position": { "x": 3, @@ -9354,7 +9354,7 @@ { "lineGroupId": 242, "indexInLine": 4, - "noteOrder": 12462.0, + "noteOrder": 6234.0, "time": 0.9010155005830985, "position": { "x": 3, @@ -9377,7 +9377,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.9027515612778636, "position": { "x": 2, @@ -9400,7 +9400,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 12504, + "noteOrder": 6252, "time": 0.9044876219726288, "position": { "x": 2, @@ -9423,7 +9423,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 12504, + "noteOrder": 6252, "time": 0.9044876219726288, "position": { "x": 3, @@ -9446,7 +9446,7 @@ { "lineGroupId": 243, "indexInLine": 4, - "noteOrder": 12510.0, + "noteOrder": 6258.0, "time": 0.9044876219726288, "position": { "x": 3, @@ -9469,7 +9469,7 @@ { "lineGroupId": 244, "indexInLine": 1, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 2, @@ -9492,7 +9492,7 @@ { "lineGroupId": 244, "indexInLine": 2, - "noteOrder": 12552, + "noteOrder": 6276, "time": 0.907959743362159, "position": { "x": 2, @@ -9515,7 +9515,7 @@ { "lineGroupId": 244, "indexInLine": 3, - "noteOrder": 12552, + "noteOrder": 6276, "time": 0.907959743362159, "position": { "x": 3, @@ -9538,7 +9538,7 @@ { "lineGroupId": 244, "indexInLine": 4, - "noteOrder": 12558.0, + "noteOrder": 6282.0, "time": 0.907959743362159, "position": { "x": 3, @@ -9561,7 +9561,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 12576, + "noteOrder": 6288, "time": 0.9096958040569241, "position": { "x": 2, @@ -9584,7 +9584,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 12600, + "noteOrder": 6300, "time": 0.9114318647516894, "position": { "x": 2, @@ -9607,7 +9607,7 @@ { "lineGroupId": 245, "indexInLine": 3, - "noteOrder": 12600, + "noteOrder": 6300, "time": 0.9114318647516894, "position": { "x": 3, @@ -9630,7 +9630,7 @@ { "lineGroupId": 245, "indexInLine": 4, - "noteOrder": 12606.0, + "noteOrder": 6306.0, "time": 0.9114318647516894, "position": { "x": 3, @@ -9653,7 +9653,7 @@ { "lineGroupId": 246, "indexInLine": 1, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 2, @@ -9676,7 +9676,7 @@ { "lineGroupId": 246, "indexInLine": 2, - "noteOrder": 12648, + "noteOrder": 6324, "time": 0.9149039861412195, "position": { "x": 2, @@ -9699,7 +9699,7 @@ { "lineGroupId": 246, "indexInLine": 3, - "noteOrder": 12648, + "noteOrder": 6324, "time": 0.9149039861412195, "position": { "x": 3, @@ -9722,7 +9722,7 @@ { "lineGroupId": 246, "indexInLine": 4, - "noteOrder": 12654.0, + "noteOrder": 6330.0, "time": 0.9149039861412195, "position": { "x": 3, @@ -9745,7 +9745,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9166400468359847, "position": { "x": 3, @@ -9768,7 +9768,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 3, @@ -9791,7 +9791,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 12720, + "noteOrder": 6360, "time": 0.9201121682255149, "position": { "x": 7, @@ -9814,7 +9814,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 7, @@ -9849,7 +9849,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 276, + "BPM": 138, "NPS": "3.7", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b.json index 2aff8c1a..c8263fa2 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "LIKE A VAMPIRE difficulty_1b", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.0069442427790604895, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.013888485558120979, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 144, "time": 0.02083272833718147, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.027776971116241958, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 240, "time": 0.034721213895302444, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.04166545667436294, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 336, "time": 0.04860969945342342, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 360, "time": 0.05208182084295367, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.055553942232483916, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 408, "time": 0.05902606362201416, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 432, "time": 0.06249818501154441, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.22916001170899616, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2326321330985264, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.23610425448805664, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.24304849726711714, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2465206186566474, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.24999274004617764, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.2569369828252381, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26040910421476837, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.2638812256042986, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2708254683833591, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.27429758977288937, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.27776971116241955, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.340267896173964, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.3437400175634942, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.3472121389530245, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.35415638173208497, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.3576285031216152, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.3611006245111455, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3749891100692664, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3749891100692664, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3819333528483269, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3819333528483269, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.3888775956273874, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.43054305230175033, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.44443153785987133, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.4930412373132948, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.496513358702825, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.552067300935309, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7326176131908816, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7360897345804119, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7430339773594724, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 10320, + "noteOrder": 5160, "time": 0.7465060987490026, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7499782201385328, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7569224629175934, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 10512, + "noteOrder": 5256, "time": 0.7603945843071236, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7638667056966538, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7673388270861842, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 4, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 10704, + "noteOrder": 5352, "time": 0.7742830698652445, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.7985879195919563, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.8020600409814865, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 12096, + "noteOrder": 6048, "time": 0.8749745901616217, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 12192, + "noteOrder": 6096, "time": 0.8819188329406822, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 6, @@ -1667,7 +1667,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 3, @@ -1690,7 +1690,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 4, @@ -1713,7 +1713,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 912, "time": 0.1319406128021493, "position": { "x": 7, @@ -1736,7 +1736,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 6, @@ -1759,7 +1759,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.14582909836027028, "position": { "x": 3, @@ -1782,7 +1782,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 4, @@ -1805,7 +1805,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.15971758391839128, "position": { "x": 7, @@ -1828,7 +1828,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 6, @@ -1851,7 +1851,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17360606947651225, "position": { "x": 3, @@ -1874,7 +1874,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 3, @@ -1897,7 +1897,7 @@ { "lineGroupId": 31, "indexInLine": 3, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 4, @@ -1920,7 +1920,7 @@ { "lineGroupId": 31, "indexInLine": 4, - "noteOrder": 2454.0, + "noteOrder": 1230.0, "time": 0.17707819086604248, "position": { "x": 4, @@ -1943,7 +1943,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.18055031225557275, "position": { "x": 3, @@ -1966,7 +1966,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 3, @@ -1989,7 +1989,7 @@ { "lineGroupId": 32, "indexInLine": 3, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 4, @@ -2012,7 +2012,7 @@ { "lineGroupId": 32, "indexInLine": 4, - "noteOrder": 2550.0, + "noteOrder": 1278.0, "time": 0.18402243364510298, "position": { "x": 4, @@ -2035,7 +2035,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.1874945550346332, "position": { "x": 3, @@ -2058,7 +2058,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 3, @@ -2081,7 +2081,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 4, @@ -2104,7 +2104,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 2646.0, + "noteOrder": 1326.0, "time": 0.19096667642416346, "position": { "x": 4, @@ -2127,7 +2127,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.1944387978136937, "position": { "x": 3, @@ -2150,7 +2150,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 3, @@ -2173,7 +2173,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 4, @@ -2196,7 +2196,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 2742.0, + "noteOrder": 1374.0, "time": 0.19791091920322396, "position": { "x": 4, @@ -2219,7 +2219,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.2013830405927542, "position": { "x": 3, @@ -2242,7 +2242,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 3, @@ -2265,7 +2265,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 4, @@ -2288,7 +2288,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 2838.0, + "noteOrder": 1422.0, "time": 0.20485516198228443, "position": { "x": 4, @@ -2311,7 +2311,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.2083272833718147, "position": { "x": 3, @@ -2334,7 +2334,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 3, @@ -2357,7 +2357,7 @@ { "lineGroupId": 36, "indexInLine": 3, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 4, @@ -2380,7 +2380,7 @@ { "lineGroupId": 36, "indexInLine": 4, - "noteOrder": 2934.0, + "noteOrder": 1470.0, "time": 0.21179940476134493, "position": { "x": 4, @@ -2403,7 +2403,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.21527152615087516, "position": { "x": 3, @@ -2426,7 +2426,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 3, @@ -2449,7 +2449,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 4, @@ -2472,7 +2472,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 3030.0, + "noteOrder": 1518.0, "time": 0.21874364754040543, "position": { "x": 4, @@ -2495,7 +2495,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.22221576892993566, "position": { "x": 3, @@ -2518,7 +2518,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 3, @@ -2541,7 +2541,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 4, @@ -2564,7 +2564,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 3126.0, + "noteOrder": 1566.0, "time": 0.2256878903194659, "position": { "x": 4, @@ -2587,7 +2587,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2847139539414801, "position": { "x": 7, @@ -2610,7 +2610,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 7, @@ -2633,7 +2633,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 6, @@ -2656,7 +2656,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 3990.0, + "noteOrder": 1998.0, "time": 0.2881860753310103, "position": { "x": 6, @@ -2679,7 +2679,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.29165819672054055, "position": { "x": 7, @@ -2702,7 +2702,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 7, @@ -2725,7 +2725,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 6, @@ -2748,7 +2748,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 4086.0, + "noteOrder": 2046.0, "time": 0.29513031811007084, "position": { "x": 6, @@ -2771,7 +2771,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.298602439499601, "position": { "x": 7, @@ -2794,7 +2794,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 7, @@ -2817,7 +2817,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 6, @@ -2840,7 +2840,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 4182.0, + "noteOrder": 2094.0, "time": 0.30207456088913126, "position": { "x": 6, @@ -2863,7 +2863,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.30554668227866155, "position": { "x": 7, @@ -2886,7 +2886,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 7, @@ -2909,7 +2909,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 6, @@ -2932,7 +2932,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 4278.0, + "noteOrder": 2142.0, "time": 0.3090188036681918, "position": { "x": 6, @@ -2955,7 +2955,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.312490925057722, "position": { "x": 7, @@ -2978,7 +2978,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 7, @@ -3001,7 +3001,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 6, @@ -3024,7 +3024,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 4374.0, + "noteOrder": 2190.0, "time": 0.31596304644725226, "position": { "x": 6, @@ -3047,7 +3047,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.31943516783678255, "position": { "x": 7, @@ -3070,7 +3070,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 7, @@ -3093,7 +3093,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 6, @@ -3116,7 +3116,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 4470.0, + "noteOrder": 2238.0, "time": 0.32290728922631273, "position": { "x": 6, @@ -3139,7 +3139,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.326379410615843, "position": { "x": 7, @@ -3162,7 +3162,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 7, @@ -3185,7 +3185,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 6, @@ -3208,7 +3208,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 4566.0, + "noteOrder": 2286.0, "time": 0.32985153200537326, "position": { "x": 6, @@ -3231,7 +3231,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.3333236533949035, "position": { "x": 7, @@ -3254,7 +3254,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.33679577478443373, "position": { "x": 7, @@ -3277,7 +3277,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.33679577478443373, "position": { "x": 6, @@ -3300,7 +3300,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 4662.0, + "noteOrder": 2334.0, "time": 0.33679577478443373, "position": { "x": 6, @@ -3323,7 +3323,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.3958218384064479, "position": { "x": 7, @@ -3346,7 +3346,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 6, @@ -3369,7 +3369,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.40971032396456886, "position": { "x": 3, @@ -3392,7 +3392,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 4, @@ -3415,7 +3415,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.42359880952268986, "position": { "x": 7, @@ -3438,7 +3438,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.43054305230175033, "position": { "x": 6, @@ -3461,7 +3461,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.43748729508081086, "position": { "x": 3, @@ -3484,7 +3484,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.44443153785987133, "position": { "x": 4, @@ -3507,7 +3507,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4513757806389318, "position": { "x": 7, @@ -3530,7 +3530,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 7, @@ -3553,7 +3553,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 6, @@ -3576,7 +3576,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 6294.0, + "noteOrder": 3150.0, "time": 0.45484790202846204, "position": { "x": 6, @@ -3599,7 +3599,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.45832002341799233, "position": { "x": 3, @@ -3622,7 +3622,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 3, @@ -3645,7 +3645,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 4, @@ -3668,7 +3668,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 6390.0, + "noteOrder": 3198.0, "time": 0.4617921448075225, "position": { "x": 4, @@ -3691,7 +3691,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4652642661970528, "position": { "x": 7, @@ -3714,7 +3714,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 7, @@ -3737,7 +3737,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 6, @@ -3760,7 +3760,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 6486.0, + "noteOrder": 3246.0, "time": 0.46873638758658304, "position": { "x": 6, @@ -3783,7 +3783,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.4722085089761133, "position": { "x": 3, @@ -3806,7 +3806,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 3, @@ -3829,7 +3829,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 4, @@ -3852,7 +3852,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 6582.0, + "noteOrder": 3294.0, "time": 0.4756806303656435, "position": { "x": 4, @@ -3875,7 +3875,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 7, @@ -3898,7 +3898,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 7, @@ -3921,7 +3921,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 6, @@ -3944,7 +3944,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 6678.0, + "noteOrder": 3342.0, "time": 0.48262487314470404, "position": { "x": 6, @@ -3967,7 +3967,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.4860969945342343, "position": { "x": 3, @@ -3990,7 +3990,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 3, @@ -4013,7 +4013,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 4, @@ -4036,7 +4036,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 6774.0, + "noteOrder": 3390.0, "time": 0.4895691159237645, "position": { "x": 4, @@ -4059,7 +4059,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 3, @@ -4082,7 +4082,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 4, @@ -4105,7 +4105,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5208182084295367, "position": { "x": 7, @@ -4128,7 +4128,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 7, @@ -4151,7 +4151,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 6, @@ -4174,7 +4174,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 7254.0, + "noteOrder": 3630.0, "time": 0.524290329819067, "position": { "x": 6, @@ -4197,7 +4197,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5277624512085972, "position": { "x": 7, @@ -4220,7 +4220,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 7, @@ -4243,7 +4243,7 @@ { "lineGroupId": 92, "indexInLine": 3, - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 6, @@ -4266,7 +4266,7 @@ { "lineGroupId": 92, "indexInLine": 4, - "noteOrder": 7350.0, + "noteOrder": 3678.0, "time": 0.5312345725981275, "position": { "x": 6, @@ -4289,7 +4289,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 7, @@ -4312,7 +4312,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 6, @@ -4335,7 +4335,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5624836651038997, "position": { "x": 7, @@ -4358,7 +4358,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 7, @@ -4381,7 +4381,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 6, @@ -4404,7 +4404,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 7830.0, + "noteOrder": 3918.0, "time": 0.5659557864934299, "position": { "x": 6, @@ -4427,7 +4427,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5694279078829602, "position": { "x": 7, @@ -4450,7 +4450,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 7, @@ -4473,7 +4473,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 6, @@ -4496,7 +4496,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 7926.0, + "noteOrder": 3966.0, "time": 0.5729000292724904, "position": { "x": 6, @@ -4519,7 +4519,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5763721506620206, "position": { "x": 6, @@ -4542,7 +4542,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.5833163934410811, "position": { "x": 6, @@ -4565,7 +4565,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 3, @@ -4588,7 +4588,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 3, @@ -4611,7 +4611,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 4, @@ -4634,7 +4634,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 8214.0, + "noteOrder": 4110.0, "time": 0.5937327576096719, "position": { "x": 4, @@ -4657,7 +4657,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.597204878999202, "position": { "x": 3, @@ -4680,7 +4680,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 3, @@ -4703,7 +4703,7 @@ { "lineGroupId": 102, "indexInLine": 3, - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 4, @@ -4726,7 +4726,7 @@ { "lineGroupId": 102, "indexInLine": 4, - "noteOrder": 8310.0, + "noteOrder": 4158.0, "time": 0.6006770003887323, "position": { "x": 4, @@ -4749,7 +4749,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6041491217782625, "position": { "x": 4, @@ -4772,7 +4772,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6110933645573231, "position": { "x": 4, @@ -4795,7 +4795,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 6, @@ -4818,7 +4818,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.624981850115444, "position": { "x": 6, @@ -4841,7 +4841,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6319260928945045, "position": { "x": 4, @@ -4864,7 +4864,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6388703356735651, "position": { "x": 4, @@ -4887,7 +4887,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6458145784526255, "position": { "x": 6, @@ -4910,7 +4910,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 6, @@ -4933,7 +4933,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 4, @@ -4956,7 +4956,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 9120, + "noteOrder": 4560, "time": 0.6597030640107465, "position": { "x": 4, @@ -4979,7 +4979,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6735915495688675, "position": { "x": 3, @@ -5002,7 +5002,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 4, @@ -5025,7 +5025,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 7, @@ -5048,7 +5048,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 6, @@ -5071,7 +5071,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 3, @@ -5094,7 +5094,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 4, @@ -5117,7 +5117,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 7, @@ -5140,7 +5140,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 6, @@ -5163,7 +5163,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8124764051500774, "position": { "x": 3, @@ -5186,7 +5186,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 3, @@ -5209,7 +5209,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 4, @@ -5232,7 +5232,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 11286.0, + "noteOrder": 5646.0, "time": 0.8159485265396075, "position": { "x": 4, @@ -5255,7 +5255,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8194206479291377, "position": { "x": 3, @@ -5278,7 +5278,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 3, @@ -5301,7 +5301,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 4, @@ -5324,7 +5324,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 11382.0, + "noteOrder": 5694.0, "time": 0.822892769318668, "position": { "x": 4, @@ -5347,7 +5347,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8263648907081983, "position": { "x": 3, @@ -5370,7 +5370,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 3, @@ -5393,7 +5393,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 4, @@ -5416,7 +5416,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 11478.0, + "noteOrder": 5742.0, "time": 0.8298370120977285, "position": { "x": 4, @@ -5439,7 +5439,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8333091334872588, "position": { "x": 3, @@ -5462,7 +5462,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 3, @@ -5485,7 +5485,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 4, @@ -5508,7 +5508,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 11574.0, + "noteOrder": 5790.0, "time": 0.8367812548767889, "position": { "x": 4, @@ -5531,7 +5531,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8402533762663192, "position": { "x": 3, @@ -5554,7 +5554,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 3, @@ -5577,7 +5577,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 4, @@ -5600,7 +5600,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 11670.0, + "noteOrder": 5838.0, "time": 0.8437254976558495, "position": { "x": 4, @@ -5623,7 +5623,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8471976190453797, "position": { "x": 3, @@ -5646,7 +5646,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 3, @@ -5669,7 +5669,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 4, @@ -5692,7 +5692,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 11766.0, + "noteOrder": 5886.0, "time": 0.85066974043491, "position": { "x": 4, @@ -5715,7 +5715,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8541418618244403, "position": { "x": 3, @@ -5738,7 +5738,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 3, @@ -5761,7 +5761,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 4, @@ -5784,7 +5784,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 11862.0, + "noteOrder": 5934.0, "time": 0.8576139832139704, "position": { "x": 4, @@ -5807,7 +5807,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8610861046035007, "position": { "x": 3, @@ -5830,7 +5830,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 11952, + "noteOrder": 5976, "time": 0.8645582259930309, "position": { "x": 3, @@ -5853,7 +5853,7 @@ { "lineGroupId": 143, "indexInLine": 3, - "noteOrder": 11952, + "noteOrder": 5976, "time": 0.8645582259930309, "position": { "x": 4, @@ -5876,7 +5876,7 @@ { "lineGroupId": 143, "indexInLine": 4, - "noteOrder": 11958.0, + "noteOrder": 5982.0, "time": 0.8645582259930309, "position": { "x": 4, @@ -5899,7 +5899,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 12000, + "noteOrder": 6000, "time": 0.8680303473825612, "position": { "x": 3, @@ -5922,7 +5922,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 6, @@ -5945,7 +5945,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 12384, + "noteOrder": 6192, "time": 0.8958073184988031, "position": { "x": 7, @@ -5968,7 +5968,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 7, @@ -5991,7 +5991,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 6, @@ -6014,7 +6014,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 12438.0, + "noteOrder": 6222.0, "time": 0.8992794398883335, "position": { "x": 6, @@ -6037,7 +6037,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.9027515612778636, "position": { "x": 7, @@ -6060,7 +6060,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 7, @@ -6083,7 +6083,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 6, @@ -6106,7 +6106,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 12534.0, + "noteOrder": 6270.0, "time": 0.9062236826673938, "position": { "x": 6, @@ -6129,7 +6129,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 12576, + "noteOrder": 6288, "time": 0.9096958040569241, "position": { "x": 7, @@ -6152,7 +6152,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 7, @@ -6175,7 +6175,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 6, @@ -6198,7 +6198,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 12630.0, + "noteOrder": 6318.0, "time": 0.9131679254464544, "position": { "x": 6, @@ -6221,7 +6221,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9166400468359847, "position": { "x": 3, @@ -6244,7 +6244,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 3, @@ -6267,7 +6267,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 12720, + "noteOrder": 6360, "time": 0.9201121682255149, "position": { "x": 7, @@ -6290,7 +6290,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 7, @@ -6313,7 +6313,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 6913.5, + "noteOrder": 3457.5, "time": 0.49998548009235527, "position": { "x": 5, @@ -6341,7 +6341,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7681.5, + "noteOrder": 3841.5, "time": 0.5555394223248391, "position": { "x": 5, @@ -6369,7 +6369,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8641.5, + "noteOrder": 4321.5, "time": 0.624981850115444, "position": { "x": 5, @@ -6397,7 +6397,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8833.5, + "noteOrder": 4417.5, "time": 0.6388703356735651, "position": { "x": 5, @@ -6425,7 +6425,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9121.5, + "noteOrder": 4561.5, "time": 0.6597030640107465, "position": { "x": 5, @@ -6453,7 +6453,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 10849.5, + "noteOrder": 5425.5, "time": 0.7846994340338354, "position": { "x": 5, @@ -6481,7 +6481,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 11148.0, + "noteOrder": 5580.0, "time": 0.8055321623710168, "position": { "x": 5, @@ -6522,7 +6522,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 276, + "BPM": 138, "NPS": "2.33", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b_blockless.json index b38033cb..cc0f2976 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "LIKE A VAMPIRE difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.0069442427790604895, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.013888485558120979, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 144, "time": 0.02083272833718147, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 192, "time": 0.027776971116241958, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 240, "time": 0.034721213895302444, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 288, "time": 0.04166545667436294, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 336, "time": 0.04860969945342342, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 360, "time": 0.05208182084295367, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 384, "time": 0.055553942232483916, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 408, "time": 0.05902606362201416, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 432, "time": 0.06249818501154441, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 456, "time": 0.06597030640107465, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 480, "time": 0.06944242779060489, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 528, "time": 0.07638667056966539, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.07985879195919564, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 576, "time": 0.08333091334872587, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 624, "time": 0.09027515612778637, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 648, "time": 0.0937472775173166, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 672, "time": 0.09721939890684685, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 720, "time": 0.10416364168590735, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.10763576307543758, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 768, "time": 0.11110788446496783, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.22916001170899616, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.2326321330985264, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.23610425448805664, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.24304849726711714, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.2465206186566474, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.24999274004617764, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.2569369828252381, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.26040910421476837, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.2638812256042986, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.2708254683833591, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.27429758977288937, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.27776971116241955, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.340267896173964, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.3437400175634942, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.3472121389530245, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 2448, "time": 0.35415638173208497, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4944, + "noteOrder": 2472, "time": 0.3576285031216152, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.3611006245111455, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.36804486729020597, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3749891100692664, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.3749891100692664, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3819333528483269, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.3819333528483269, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.3888775956273874, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.43054305230175033, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.44443153785987133, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.4930412373132948, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.496513358702825, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.5485951795457787, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.552067300935309, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 10080, + "noteOrder": 5040, "time": 0.7291454918013514, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 10128, + "noteOrder": 5064, "time": 0.7326176131908816, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 10176, + "noteOrder": 5088, "time": 0.7360897345804119, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 10272, + "noteOrder": 5136, "time": 0.7430339773594724, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 10320, + "noteOrder": 5160, "time": 0.7465060987490026, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 10368, + "noteOrder": 5184, "time": 0.7499782201385328, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 10464, + "noteOrder": 5232, "time": 0.7569224629175934, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 10512, + "noteOrder": 5256, "time": 0.7603945843071236, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 10560, + "noteOrder": 5280, "time": 0.7638667056966538, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 10608, + "noteOrder": 5304, "time": 0.7673388270861842, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 10656, + "noteOrder": 5328, "time": 0.7708109484757143, "position": { "x": 4, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 10704, + "noteOrder": 5352, "time": 0.7742830698652445, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 10752, + "noteOrder": 5376, "time": 0.7777551912547748, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 11040, + "noteOrder": 5520, "time": 0.7985879195919563, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 11088, + "noteOrder": 5544, "time": 0.8020600409814865, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 12096, + "noteOrder": 6048, "time": 0.8749745901616217, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 12192, + "noteOrder": 6096, "time": 0.8819188329406822, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 6, @@ -1667,7 +1667,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.11805212724402832, "position": { "x": 3, @@ -1690,7 +1690,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.12499637002308882, "position": { "x": 4, @@ -1713,7 +1713,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 912, "time": 0.1319406128021493, "position": { "x": 7, @@ -1736,7 +1736,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.13888485558120978, "position": { "x": 6, @@ -1759,7 +1759,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.14582909836027028, "position": { "x": 3, @@ -1782,7 +1782,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.15277334113933078, "position": { "x": 4, @@ -1805,7 +1805,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.15971758391839128, "position": { "x": 7, @@ -1828,7 +1828,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.16666182669745175, "position": { "x": 6, @@ -1851,7 +1851,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.17360606947651225, "position": { "x": 3, @@ -1874,7 +1874,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 3, @@ -1897,7 +1897,7 @@ { "lineGroupId": 31, "indexInLine": 3, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.17707819086604248, "position": { "x": 4, @@ -1920,7 +1920,7 @@ { "lineGroupId": 31, "indexInLine": 4, - "noteOrder": 2454.0, + "noteOrder": 1230.0, "time": 0.17707819086604248, "position": { "x": 4, @@ -1943,7 +1943,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.18055031225557275, "position": { "x": 3, @@ -1966,7 +1966,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 3, @@ -1989,7 +1989,7 @@ { "lineGroupId": 32, "indexInLine": 3, - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.18402243364510298, "position": { "x": 4, @@ -2012,7 +2012,7 @@ { "lineGroupId": 32, "indexInLine": 4, - "noteOrder": 2550.0, + "noteOrder": 1278.0, "time": 0.18402243364510298, "position": { "x": 4, @@ -2035,7 +2035,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.1874945550346332, "position": { "x": 3, @@ -2058,7 +2058,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 3, @@ -2081,7 +2081,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.19096667642416346, "position": { "x": 4, @@ -2104,7 +2104,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 2646.0, + "noteOrder": 1326.0, "time": 0.19096667642416346, "position": { "x": 4, @@ -2127,7 +2127,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.1944387978136937, "position": { "x": 3, @@ -2150,7 +2150,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 3, @@ -2173,7 +2173,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.19791091920322396, "position": { "x": 4, @@ -2196,7 +2196,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 2742.0, + "noteOrder": 1374.0, "time": 0.19791091920322396, "position": { "x": 4, @@ -2219,7 +2219,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.2013830405927542, "position": { "x": 3, @@ -2242,7 +2242,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 3, @@ -2265,7 +2265,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.20485516198228443, "position": { "x": 4, @@ -2288,7 +2288,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 2838.0, + "noteOrder": 1422.0, "time": 0.20485516198228443, "position": { "x": 4, @@ -2311,7 +2311,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.2083272833718147, "position": { "x": 3, @@ -2334,7 +2334,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 3, @@ -2357,7 +2357,7 @@ { "lineGroupId": 36, "indexInLine": 3, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.21179940476134493, "position": { "x": 4, @@ -2380,7 +2380,7 @@ { "lineGroupId": 36, "indexInLine": 4, - "noteOrder": 2934.0, + "noteOrder": 1470.0, "time": 0.21179940476134493, "position": { "x": 4, @@ -2403,7 +2403,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.21527152615087516, "position": { "x": 3, @@ -2426,7 +2426,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 3, @@ -2449,7 +2449,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.21874364754040543, "position": { "x": 4, @@ -2472,7 +2472,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 3030.0, + "noteOrder": 1518.0, "time": 0.21874364754040543, "position": { "x": 4, @@ -2495,7 +2495,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.22221576892993566, "position": { "x": 3, @@ -2518,7 +2518,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 3, @@ -2541,7 +2541,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.2256878903194659, "position": { "x": 4, @@ -2564,7 +2564,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 3126.0, + "noteOrder": 1566.0, "time": 0.2256878903194659, "position": { "x": 4, @@ -2587,7 +2587,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.2847139539414801, "position": { "x": 7, @@ -2610,7 +2610,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 7, @@ -2633,7 +2633,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.2881860753310103, "position": { "x": 6, @@ -2656,7 +2656,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 3990.0, + "noteOrder": 1998.0, "time": 0.2881860753310103, "position": { "x": 6, @@ -2679,7 +2679,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.29165819672054055, "position": { "x": 7, @@ -2702,7 +2702,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 7, @@ -2725,7 +2725,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.29513031811007084, "position": { "x": 6, @@ -2748,7 +2748,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 4086.0, + "noteOrder": 2046.0, "time": 0.29513031811007084, "position": { "x": 6, @@ -2771,7 +2771,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 2064, "time": 0.298602439499601, "position": { "x": 7, @@ -2794,7 +2794,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 7, @@ -2817,7 +2817,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 4176, + "noteOrder": 2088, "time": 0.30207456088913126, "position": { "x": 6, @@ -2840,7 +2840,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 4182.0, + "noteOrder": 2094.0, "time": 0.30207456088913126, "position": { "x": 6, @@ -2863,7 +2863,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.30554668227866155, "position": { "x": 7, @@ -2886,7 +2886,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 7, @@ -2909,7 +2909,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 4272, + "noteOrder": 2136, "time": 0.3090188036681918, "position": { "x": 6, @@ -2932,7 +2932,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 4278.0, + "noteOrder": 2142.0, "time": 0.3090188036681918, "position": { "x": 6, @@ -2955,7 +2955,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.312490925057722, "position": { "x": 7, @@ -2978,7 +2978,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 7, @@ -3001,7 +3001,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.31596304644725226, "position": { "x": 6, @@ -3024,7 +3024,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 4374.0, + "noteOrder": 2190.0, "time": 0.31596304644725226, "position": { "x": 6, @@ -3047,7 +3047,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.31943516783678255, "position": { "x": 7, @@ -3070,7 +3070,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 7, @@ -3093,7 +3093,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.32290728922631273, "position": { "x": 6, @@ -3116,7 +3116,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 4470.0, + "noteOrder": 2238.0, "time": 0.32290728922631273, "position": { "x": 6, @@ -3139,7 +3139,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 2256, "time": 0.326379410615843, "position": { "x": 7, @@ -3162,7 +3162,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 7, @@ -3185,7 +3185,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 4560, + "noteOrder": 2280, "time": 0.32985153200537326, "position": { "x": 6, @@ -3208,7 +3208,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 4566.0, + "noteOrder": 2286.0, "time": 0.32985153200537326, "position": { "x": 6, @@ -3231,7 +3231,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.3333236533949035, "position": { "x": 7, @@ -3254,7 +3254,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.33679577478443373, "position": { "x": 7, @@ -3277,7 +3277,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 4656, + "noteOrder": 2328, "time": 0.33679577478443373, "position": { "x": 6, @@ -3300,7 +3300,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 4662.0, + "noteOrder": 2334.0, "time": 0.33679577478443373, "position": { "x": 6, @@ -3323,7 +3323,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.3958218384064479, "position": { "x": 7, @@ -3346,7 +3346,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.4027660811855084, "position": { "x": 6, @@ -3369,7 +3369,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.40971032396456886, "position": { "x": 3, @@ -3392,7 +3392,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.4166545667436294, "position": { "x": 4, @@ -3415,7 +3415,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.42359880952268986, "position": { "x": 7, @@ -3438,7 +3438,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.43054305230175033, "position": { "x": 6, @@ -3461,7 +3461,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.43748729508081086, "position": { "x": 3, @@ -3484,7 +3484,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.44443153785987133, "position": { "x": 4, @@ -3507,7 +3507,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.4513757806389318, "position": { "x": 7, @@ -3530,7 +3530,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 7, @@ -3553,7 +3553,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.45484790202846204, "position": { "x": 6, @@ -3576,7 +3576,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 6294.0, + "noteOrder": 3150.0, "time": 0.45484790202846204, "position": { "x": 6, @@ -3599,7 +3599,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.45832002341799233, "position": { "x": 3, @@ -3622,7 +3622,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 3, @@ -3645,7 +3645,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.4617921448075225, "position": { "x": 4, @@ -3668,7 +3668,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 6390.0, + "noteOrder": 3198.0, "time": 0.4617921448075225, "position": { "x": 4, @@ -3691,7 +3691,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.4652642661970528, "position": { "x": 7, @@ -3714,7 +3714,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 7, @@ -3737,7 +3737,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.46873638758658304, "position": { "x": 6, @@ -3760,7 +3760,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 6486.0, + "noteOrder": 3246.0, "time": 0.46873638758658304, "position": { "x": 6, @@ -3783,7 +3783,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.4722085089761133, "position": { "x": 3, @@ -3806,7 +3806,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 3, @@ -3829,7 +3829,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.4756806303656435, "position": { "x": 4, @@ -3852,7 +3852,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 6582.0, + "noteOrder": 3294.0, "time": 0.4756806303656435, "position": { "x": 4, @@ -3875,7 +3875,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.4791527517551738, "position": { "x": 7, @@ -3898,7 +3898,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 7, @@ -3921,7 +3921,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.48262487314470404, "position": { "x": 6, @@ -3944,7 +3944,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 6678.0, + "noteOrder": 3342.0, "time": 0.48262487314470404, "position": { "x": 6, @@ -3967,7 +3967,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.4860969945342343, "position": { "x": 3, @@ -3990,7 +3990,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 3, @@ -4013,7 +4013,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.4895691159237645, "position": { "x": 4, @@ -4036,7 +4036,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 6774.0, + "noteOrder": 3390.0, "time": 0.4895691159237645, "position": { "x": 4, @@ -4059,7 +4059,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.5069297228714158, "position": { "x": 3, @@ -4082,7 +4082,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.5173460870400065, "position": { "x": 4, @@ -4105,7 +4105,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.5208182084295367, "position": { "x": 7, @@ -4128,7 +4128,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 7, @@ -4151,7 +4151,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.524290329819067, "position": { "x": 6, @@ -4174,7 +4174,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 7254.0, + "noteOrder": 3630.0, "time": 0.524290329819067, "position": { "x": 6, @@ -4197,7 +4197,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.5277624512085972, "position": { "x": 7, @@ -4220,7 +4220,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 7, @@ -4243,7 +4243,7 @@ { "lineGroupId": 92, "indexInLine": 3, - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.5312345725981275, "position": { "x": 6, @@ -4266,7 +4266,7 @@ { "lineGroupId": 92, "indexInLine": 4, - "noteOrder": 7350.0, + "noteOrder": 3678.0, "time": 0.5312345725981275, "position": { "x": 6, @@ -4289,7 +4289,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.5347066939876577, "position": { "x": 7, @@ -4312,7 +4312,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.5416509367667182, "position": { "x": 6, @@ -4335,7 +4335,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.5624836651038997, "position": { "x": 7, @@ -4358,7 +4358,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 7, @@ -4381,7 +4381,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.5659557864934299, "position": { "x": 6, @@ -4404,7 +4404,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 7830.0, + "noteOrder": 3918.0, "time": 0.5659557864934299, "position": { "x": 6, @@ -4427,7 +4427,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.5694279078829602, "position": { "x": 7, @@ -4450,7 +4450,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 7, @@ -4473,7 +4473,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.5729000292724904, "position": { "x": 6, @@ -4496,7 +4496,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 7926.0, + "noteOrder": 3966.0, "time": 0.5729000292724904, "position": { "x": 6, @@ -4519,7 +4519,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.5763721506620206, "position": { "x": 6, @@ -4542,7 +4542,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.5833163934410811, "position": { "x": 6, @@ -4565,7 +4565,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.5902606362201417, "position": { "x": 3, @@ -4588,7 +4588,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 3, @@ -4611,7 +4611,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.5937327576096719, "position": { "x": 4, @@ -4634,7 +4634,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 8214.0, + "noteOrder": 4110.0, "time": 0.5937327576096719, "position": { "x": 4, @@ -4657,7 +4657,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.597204878999202, "position": { "x": 3, @@ -4680,7 +4680,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 3, @@ -4703,7 +4703,7 @@ { "lineGroupId": 102, "indexInLine": 3, - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.6006770003887323, "position": { "x": 4, @@ -4726,7 +4726,7 @@ { "lineGroupId": 102, "indexInLine": 4, - "noteOrder": 8310.0, + "noteOrder": 4158.0, "time": 0.6006770003887323, "position": { "x": 4, @@ -4749,7 +4749,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.6041491217782625, "position": { "x": 4, @@ -4772,7 +4772,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.6110933645573231, "position": { "x": 4, @@ -4795,7 +4795,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.6180376073363836, "position": { "x": 6, @@ -4818,7 +4818,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.624981850115444, "position": { "x": 6, @@ -4841,7 +4841,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.6319260928945045, "position": { "x": 4, @@ -4864,7 +4864,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 8832, + "noteOrder": 4416, "time": 0.6388703356735651, "position": { "x": 4, @@ -4887,7 +4887,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 8928, + "noteOrder": 4464, "time": 0.6458145784526255, "position": { "x": 6, @@ -4910,7 +4910,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 6, @@ -4933,7 +4933,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 9024, + "noteOrder": 4512, "time": 0.652758821231686, "position": { "x": 4, @@ -4956,7 +4956,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 9120, + "noteOrder": 4560, "time": 0.6597030640107465, "position": { "x": 4, @@ -4979,7 +4979,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 9312, + "noteOrder": 4656, "time": 0.6735915495688675, "position": { "x": 3, @@ -5002,7 +5002,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 9408, + "noteOrder": 4704, "time": 0.680535792347928, "position": { "x": 4, @@ -5025,7 +5025,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 9504, + "noteOrder": 4752, "time": 0.6874800351269884, "position": { "x": 7, @@ -5048,7 +5048,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 9600, + "noteOrder": 4800, "time": 0.694424277906049, "position": { "x": 6, @@ -5071,7 +5071,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 9696, + "noteOrder": 4848, "time": 0.7013685206851095, "position": { "x": 3, @@ -5094,7 +5094,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 9792, + "noteOrder": 4896, "time": 0.7083127634641699, "position": { "x": 4, @@ -5117,7 +5117,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 9888, + "noteOrder": 4944, "time": 0.7152570062432304, "position": { "x": 7, @@ -5140,7 +5140,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 9984, + "noteOrder": 4992, "time": 0.722201249022291, "position": { "x": 6, @@ -5163,7 +5163,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 11232, + "noteOrder": 5616, "time": 0.8124764051500774, "position": { "x": 3, @@ -5186,7 +5186,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 3, @@ -5209,7 +5209,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 11280, + "noteOrder": 5640, "time": 0.8159485265396075, "position": { "x": 4, @@ -5232,7 +5232,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 11286.0, + "noteOrder": 5646.0, "time": 0.8159485265396075, "position": { "x": 4, @@ -5255,7 +5255,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 11328, + "noteOrder": 5664, "time": 0.8194206479291377, "position": { "x": 3, @@ -5278,7 +5278,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 3, @@ -5301,7 +5301,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 11376, + "noteOrder": 5688, "time": 0.822892769318668, "position": { "x": 4, @@ -5324,7 +5324,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 11382.0, + "noteOrder": 5694.0, "time": 0.822892769318668, "position": { "x": 4, @@ -5347,7 +5347,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 11424, + "noteOrder": 5712, "time": 0.8263648907081983, "position": { "x": 3, @@ -5370,7 +5370,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 3, @@ -5393,7 +5393,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 11472, + "noteOrder": 5736, "time": 0.8298370120977285, "position": { "x": 4, @@ -5416,7 +5416,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 11478.0, + "noteOrder": 5742.0, "time": 0.8298370120977285, "position": { "x": 4, @@ -5439,7 +5439,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 11520, + "noteOrder": 5760, "time": 0.8333091334872588, "position": { "x": 3, @@ -5462,7 +5462,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 3, @@ -5485,7 +5485,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 11568, + "noteOrder": 5784, "time": 0.8367812548767889, "position": { "x": 4, @@ -5508,7 +5508,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 11574.0, + "noteOrder": 5790.0, "time": 0.8367812548767889, "position": { "x": 4, @@ -5531,7 +5531,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 11616, + "noteOrder": 5808, "time": 0.8402533762663192, "position": { "x": 3, @@ -5554,7 +5554,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 3, @@ -5577,7 +5577,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 11664, + "noteOrder": 5832, "time": 0.8437254976558495, "position": { "x": 4, @@ -5600,7 +5600,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 11670.0, + "noteOrder": 5838.0, "time": 0.8437254976558495, "position": { "x": 4, @@ -5623,7 +5623,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 11712, + "noteOrder": 5856, "time": 0.8471976190453797, "position": { "x": 3, @@ -5646,7 +5646,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 3, @@ -5669,7 +5669,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 11760, + "noteOrder": 5880, "time": 0.85066974043491, "position": { "x": 4, @@ -5692,7 +5692,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 11766.0, + "noteOrder": 5886.0, "time": 0.85066974043491, "position": { "x": 4, @@ -5715,7 +5715,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 11808, + "noteOrder": 5904, "time": 0.8541418618244403, "position": { "x": 3, @@ -5738,7 +5738,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 3, @@ -5761,7 +5761,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 11856, + "noteOrder": 5928, "time": 0.8576139832139704, "position": { "x": 4, @@ -5784,7 +5784,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 11862.0, + "noteOrder": 5934.0, "time": 0.8576139832139704, "position": { "x": 4, @@ -5807,7 +5807,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 11904, + "noteOrder": 5952, "time": 0.8610861046035007, "position": { "x": 3, @@ -5830,7 +5830,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 11952, + "noteOrder": 5976, "time": 0.8645582259930309, "position": { "x": 3, @@ -5853,7 +5853,7 @@ { "lineGroupId": 143, "indexInLine": 3, - "noteOrder": 11952, + "noteOrder": 5976, "time": 0.8645582259930309, "position": { "x": 4, @@ -5876,7 +5876,7 @@ { "lineGroupId": 143, "indexInLine": 4, - "noteOrder": 11958.0, + "noteOrder": 5982.0, "time": 0.8645582259930309, "position": { "x": 4, @@ -5899,7 +5899,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 12000, + "noteOrder": 6000, "time": 0.8680303473825612, "position": { "x": 3, @@ -5922,7 +5922,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 12288, + "noteOrder": 6144, "time": 0.8888630757197427, "position": { "x": 6, @@ -5945,7 +5945,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 12384, + "noteOrder": 6192, "time": 0.8958073184988031, "position": { "x": 7, @@ -5968,7 +5968,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 7, @@ -5991,7 +5991,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 12432, + "noteOrder": 6216, "time": 0.8992794398883335, "position": { "x": 6, @@ -6014,7 +6014,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 12438.0, + "noteOrder": 6222.0, "time": 0.8992794398883335, "position": { "x": 6, @@ -6037,7 +6037,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 12480, + "noteOrder": 6240, "time": 0.9027515612778636, "position": { "x": 7, @@ -6060,7 +6060,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 7, @@ -6083,7 +6083,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 12528, + "noteOrder": 6264, "time": 0.9062236826673938, "position": { "x": 6, @@ -6106,7 +6106,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 12534.0, + "noteOrder": 6270.0, "time": 0.9062236826673938, "position": { "x": 6, @@ -6129,7 +6129,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 12576, + "noteOrder": 6288, "time": 0.9096958040569241, "position": { "x": 7, @@ -6152,7 +6152,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 7, @@ -6175,7 +6175,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 12624, + "noteOrder": 6312, "time": 0.9131679254464544, "position": { "x": 6, @@ -6198,7 +6198,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 12630.0, + "noteOrder": 6318.0, "time": 0.9131679254464544, "position": { "x": 6, @@ -6221,7 +6221,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 12672, + "noteOrder": 6336, "time": 0.9166400468359847, "position": { "x": 3, @@ -6244,7 +6244,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 3, @@ -6267,7 +6267,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 12720, + "noteOrder": 6360, "time": 0.9201121682255149, "position": { "x": 7, @@ -6290,7 +6290,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 13344, + "noteOrder": 6672, "time": 0.9652497462894081, "position": { "x": 7, @@ -6325,7 +6325,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 276, + "BPM": 138, "NPS": "2.33", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/info.json b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/info.json index 479bc684..aa006e8e 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/LIKE A VAMPIRE/info.json @@ -3,7 +3,7 @@ "SongName": "LIKE A VAMPIRE", "SongLength": "125.220454", "SongAuthorName": "koyomi,\u661f\u91ce\u594f\u5b50 by BEMANI Sound Team \"TAKA\"", - "Bpm": "276", + "Bpm": "138", "SongPath": "293.ogg", "CreateTicks": 637643232000000000, "CreateTime": "637643232000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a.json index 3e204e89..1c18572d 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "Tropical White difficulty_1a", "sphereNodes": [ { - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 5, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 861, + "noteOrder": 888, "time": 0.1530443402590276, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 931, + "noteOrder": 960, "time": 0.1654533408205704, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 954, + "noteOrder": 984, "time": 0.16958967434108466, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1001, + "noteOrder": 1032, "time": 0.17786234138211315, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1047, + "noteOrder": 1080, "time": 0.18613500842314168, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1094, + "noteOrder": 1128, "time": 0.1944076754641702, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1176, "time": 0.20268034250519873, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1164, + "noteOrder": 1200, "time": 0.206816676025713, "position": { "x": 5, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1187, + "noteOrder": 1224, "time": 0.21095300954622725, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1210, + "noteOrder": 1248, "time": 0.21508934306674152, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1233, + "noteOrder": 1272, "time": 0.21922567658725575, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1296, "time": 0.22336201010777001, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1344, "time": 0.23163467714879854, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1368, "time": 0.2357710106693128, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1373, + "noteOrder": 1416, "time": 0.24404367771034133, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1420, + "noteOrder": 1464, "time": 0.2523163447513698, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1512, "time": 0.26058901179239835, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1560, "time": 0.2688616788334269, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1584, "time": 0.2729980123539411, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1559, + "noteOrder": 1608, "time": 0.2771343458744554, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1745, + "noteOrder": 1800, "time": 0.3102250140385695, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1839, + "noteOrder": 1896, "time": 0.3267703481206265, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1885, + "noteOrder": 1944, "time": 0.335043015161655, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1908, + "noteOrder": 1968, "time": 0.3391793486821693, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1932, + "noteOrder": 1992, "time": 0.34331568220268355, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1955, + "noteOrder": 2016, "time": 0.34745201572319784, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 2040, "time": 0.3515883492437121, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2064, "time": 0.3557246827642263, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2088, "time": 0.3598610162847406, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2184, "time": 0.37640635036679765, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2280, "time": 0.3929516844488547, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2328, "time": 0.40122435148988317, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2352, "time": 0.40536068501039746, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2376, "time": 0.4094970185309117, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2616, "time": 0.4508603537360543, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2583, + "noteOrder": 2664, "time": 0.45913302077708285, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2808, "time": 0.4839510219001684, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2832, "time": 0.48808735542068266, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2769, + "noteOrder": 2856, "time": 0.4922236889411969, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3096, "time": 0.5335870241463395, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3025, + "noteOrder": 3120, "time": 0.5377233576668538, "position": { "x": 3, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3049, + "noteOrder": 3144, "time": 0.541859691187368, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3235, + "noteOrder": 3336, "time": 0.5749503593514821, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3328, + "noteOrder": 3432, "time": 0.5914956934335391, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3421, + "noteOrder": 3528, "time": 0.6080410275155962, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3624, "time": 0.6245863615976532, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3933, + "noteOrder": 4056, "time": 0.6990403649669099, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3980, + "noteOrder": 4104, "time": 0.7073130320079384, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4119, + "noteOrder": 4248, "time": 0.732131033131024, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4166, + "noteOrder": 4296, "time": 0.7404037001720525, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4305, + "noteOrder": 4440, "time": 0.765221701295138, "position": { "x": 8, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4352, + "noteOrder": 4488, "time": 0.7734943683361666, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4632, "time": 0.7983123694592521, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4680, "time": 0.8065850365002807, "position": { "x": 3, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4655, + "noteOrder": 4800, "time": 0.827266704102852, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4824, "time": 0.8314030376233662, "position": { "x": 3, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4848, "time": 0.8355393711438804, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4724, + "noteOrder": 4872, "time": 0.8396757046643947, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4841, + "noteOrder": 4992, "time": 0.8603573722669661, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4864, + "noteOrder": 5016, "time": 0.8644937057874803, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4887, + "noteOrder": 5040, "time": 0.8686300393079945, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4911, + "noteOrder": 5064, "time": 0.8727663728285088, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5050, + "noteOrder": 5208, "time": 0.8975843739515944, "position": { "x": 2, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5097, + "noteOrder": 5256, "time": 0.9058570409926229, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5400, "time": 0.9306750421157085, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5283, + "noteOrder": 5448, "time": 0.938947709156737, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 4, @@ -2067,7 +2067,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 186, + "noteOrder": 192, "time": 0.03309066816411407, "position": { "x": 6, @@ -2090,7 +2090,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 6, @@ -2113,7 +2113,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 5, @@ -2136,7 +2136,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 5, @@ -2159,7 +2159,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 6, @@ -2182,7 +2182,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 6, @@ -2205,7 +2205,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 279, + "noteOrder": 288, "time": 0.04963600224617112, "position": { "x": 4, @@ -2228,7 +2228,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 4, @@ -2251,7 +2251,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 5, @@ -2274,7 +2274,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 5, @@ -2297,7 +2297,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 4, @@ -2320,7 +2320,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 4, @@ -2343,7 +2343,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 372, + "noteOrder": 384, "time": 0.06618133632822815, "position": { "x": 7, @@ -2366,7 +2366,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 7, @@ -2389,7 +2389,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 6, @@ -2412,7 +2412,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 6, @@ -2435,7 +2435,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 7, @@ -2458,7 +2458,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 7, @@ -2481,7 +2481,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 5, @@ -2504,7 +2504,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 5, @@ -2527,7 +2527,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 4, @@ -2550,7 +2550,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 4, @@ -2573,7 +2573,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 5, @@ -2596,7 +2596,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 5, @@ -2619,7 +2619,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 559, + "noteOrder": 576, "time": 0.09927200449234223, "position": { "x": 6, @@ -2642,7 +2642,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 6, @@ -2665,7 +2665,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 5, @@ -2688,7 +2688,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 5, @@ -2711,7 +2711,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 6, @@ -2734,7 +2734,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 6, @@ -2757,7 +2757,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 652, + "noteOrder": 672, "time": 0.11581733857439927, "position": { "x": 4, @@ -2780,7 +2780,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 4, @@ -2803,7 +2803,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 698, + "noteOrder": 720, "time": 0.1240900056154278, "position": { "x": 6, @@ -2826,7 +2826,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 6, @@ -2849,7 +2849,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 745, + "noteOrder": 768, "time": 0.1323626726564563, "position": { "x": 4, @@ -2872,7 +2872,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 4, @@ -2895,7 +2895,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 5, @@ -2918,7 +2918,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 5, @@ -2941,7 +2941,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 4, @@ -2964,7 +2964,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 4, @@ -2987,7 +2987,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 6, @@ -3010,7 +3010,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 861, + "noteOrder": 888, "time": 0.1530443402590276, "position": { "x": 6, @@ -3033,7 +3033,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 884, + "noteOrder": 912, "time": 0.15718067377954187, "position": { "x": 4, @@ -3056,7 +3056,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 4, @@ -3079,7 +3079,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1583, + "noteOrder": 1632, "time": 0.28127067939496964, "position": { "x": 3, @@ -3102,7 +3102,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1629, + "noteOrder": 1680, "time": 0.28954334643599816, "position": { "x": 3, @@ -3125,7 +3125,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1676, + "noteOrder": 1728, "time": 0.2978160134770267, "position": { "x": 6, @@ -3148,7 +3148,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1699, + "noteOrder": 1752, "time": 0.301952346997541, "position": { "x": 6, @@ -3171,7 +3171,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1699, + "noteOrder": 1752, "time": 0.301952346997541, "position": { "x": 5, @@ -3194,7 +3194,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 5, @@ -3217,7 +3217,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 6, @@ -3240,7 +3240,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1745, + "noteOrder": 1800, "time": 0.3102250140385695, "position": { "x": 6, @@ -3263,7 +3263,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 4, @@ -3286,7 +3286,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1792, + "noteOrder": 1848, "time": 0.31849768107959797, "position": { "x": 4, @@ -3309,7 +3309,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1792, + "noteOrder": 1848, "time": 0.31849768107959797, "position": { "x": 5, @@ -3332,7 +3332,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 5, @@ -3355,7 +3355,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 4, @@ -3378,7 +3378,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 1896, "time": 0.3267703481206265, "position": { "x": 4, @@ -3401,7 +3401,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2048, + "noteOrder": 2112, "time": 0.36399734980525483, "position": { "x": 4, @@ -3424,7 +3424,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2071, + "noteOrder": 2136, "time": 0.3681336833257691, "position": { "x": 4, @@ -3447,7 +3447,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2071, + "noteOrder": 2136, "time": 0.3681336833257691, "position": { "x": 5, @@ -3470,7 +3470,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 5, @@ -3493,7 +3493,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 4, @@ -3516,7 +3516,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2118, + "noteOrder": 2184, "time": 0.37640635036679765, "position": { "x": 4, @@ -3539,7 +3539,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 6, @@ -3562,7 +3562,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2164, + "noteOrder": 2232, "time": 0.3846790174078262, "position": { "x": 6, @@ -3585,7 +3585,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2164, + "noteOrder": 2232, "time": 0.3846790174078262, "position": { "x": 5, @@ -3608,7 +3608,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 5, @@ -3631,7 +3631,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 6, @@ -3654,7 +3654,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2280, "time": 0.3929516844488547, "position": { "x": 6, @@ -3677,7 +3677,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2420, + "noteOrder": 2496, "time": 0.43017868613348303, "position": { "x": 5, @@ -3700,7 +3700,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2444, + "noteOrder": 2520, "time": 0.43431501965399727, "position": { "x": 5, @@ -3723,7 +3723,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2444, + "noteOrder": 2520, "time": 0.43431501965399727, "position": { "x": 4, @@ -3746,7 +3746,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 4, @@ -3769,7 +3769,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 5, @@ -3792,7 +3792,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2490, + "noteOrder": 2568, "time": 0.4425876866950258, "position": { "x": 5, @@ -3815,7 +3815,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2490, + "noteOrder": 2568, "time": 0.4425876866950258, "position": { "x": 4, @@ -3838,7 +3838,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 4, @@ -3861,7 +3861,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 5, @@ -3884,7 +3884,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2630, + "noteOrder": 2712, "time": 0.46740568781811137, "position": { "x": 5, @@ -3907,7 +3907,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2630, + "noteOrder": 2712, "time": 0.46740568781811137, "position": { "x": 6, @@ -3930,7 +3930,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 6, @@ -3953,7 +3953,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 5, @@ -3976,7 +3976,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2676, + "noteOrder": 2760, "time": 0.47567835485913984, "position": { "x": 5, @@ -3999,7 +3999,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2676, + "noteOrder": 2760, "time": 0.47567835485913984, "position": { "x": 6, @@ -4022,7 +4022,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 6, @@ -4045,7 +4045,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2793, + "noteOrder": 2880, "time": 0.4963600224617112, "position": { "x": 5, @@ -4068,7 +4068,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2816, + "noteOrder": 2904, "time": 0.5004963559822254, "position": { "x": 5, @@ -4091,7 +4091,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2816, + "noteOrder": 2904, "time": 0.5004963559822254, "position": { "x": 4, @@ -4114,7 +4114,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -4137,7 +4137,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 5, @@ -4160,7 +4160,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2863, + "noteOrder": 2952, "time": 0.5087690230232539, "position": { "x": 5, @@ -4183,7 +4183,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2863, + "noteOrder": 2952, "time": 0.5087690230232539, "position": { "x": 4, @@ -4206,7 +4206,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -4229,7 +4229,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 6, @@ -4252,7 +4252,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2909, + "noteOrder": 3000, "time": 0.5170416900642825, "position": { "x": 6, @@ -4275,7 +4275,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -4298,7 +4298,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2956, + "noteOrder": 3048, "time": 0.5253143571053109, "position": { "x": 4, @@ -4321,7 +4321,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3165, + "noteOrder": 3264, "time": 0.5625413587899393, "position": { "x": 6, @@ -4344,7 +4344,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3188, + "noteOrder": 3288, "time": 0.5666776923104535, "position": { "x": 6, @@ -4367,7 +4367,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3188, + "noteOrder": 3288, "time": 0.5666776923104535, "position": { "x": 5, @@ -4390,7 +4390,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 5, @@ -4413,7 +4413,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 6, @@ -4436,7 +4436,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3235, + "noteOrder": 3336, "time": 0.5749503593514821, "position": { "x": 6, @@ -4459,7 +4459,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 4, @@ -4482,7 +4482,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3281, + "noteOrder": 3384, "time": 0.5832230263925107, "position": { "x": 4, @@ -4505,7 +4505,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3281, + "noteOrder": 3384, "time": 0.5832230263925107, "position": { "x": 5, @@ -4528,7 +4528,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 5, @@ -4551,7 +4551,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 4, @@ -4574,7 +4574,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3328, + "noteOrder": 3432, "time": 0.5914956934335391, "position": { "x": 4, @@ -4597,7 +4597,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 7, @@ -4620,7 +4620,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 7, @@ -4643,7 +4643,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 6, @@ -4666,7 +4666,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 6, @@ -4689,7 +4689,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 7, @@ -4712,7 +4712,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3421, + "noteOrder": 3528, "time": 0.6080410275155962, "position": { "x": 7, @@ -4735,7 +4735,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3444, + "noteOrder": 3552, "time": 0.6121773610361104, "position": { "x": 5, @@ -4758,7 +4758,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 5, @@ -4781,7 +4781,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 4, @@ -4804,7 +4804,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 4, @@ -4827,7 +4827,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 5, @@ -4850,7 +4850,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3514, + "noteOrder": 3624, "time": 0.6245863615976532, "position": { "x": 5, @@ -4873,7 +4873,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 5, @@ -4896,7 +4896,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3654, + "noteOrder": 3768, "time": 0.6494043627207388, "position": { "x": 5, @@ -4919,7 +4919,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3654, + "noteOrder": 3768, "time": 0.6494043627207388, "position": { "x": 4, @@ -4942,7 +4942,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 4, @@ -4965,7 +4965,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 5, @@ -4988,7 +4988,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3700, + "noteOrder": 3816, "time": 0.6576770297617673, "position": { "x": 5, @@ -5011,7 +5011,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3700, + "noteOrder": 3816, "time": 0.6576770297617673, "position": { "x": 4, @@ -5034,7 +5034,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 4, @@ -5057,7 +5057,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 7, @@ -5080,7 +5080,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 7, @@ -5103,7 +5103,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 6, @@ -5126,7 +5126,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 6, @@ -5149,7 +5149,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 7, @@ -5172,7 +5172,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3793, + "noteOrder": 3912, "time": 0.6742223638438243, "position": { "x": 7, @@ -5195,7 +5195,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3793, + "noteOrder": 3912, "time": 0.6742223638438243, "position": { "x": 6, @@ -5218,7 +5218,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 6, @@ -5241,7 +5241,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 4, @@ -5264,7 +5264,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 4, @@ -5287,7 +5287,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 3, @@ -5310,7 +5310,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 3, @@ -5333,7 +5333,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 4, @@ -5356,7 +5356,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3887, + "noteOrder": 4008, "time": 0.6907676979258813, "position": { "x": 4, @@ -5379,7 +5379,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3887, + "noteOrder": 4008, "time": 0.6907676979258813, "position": { "x": 3, @@ -5402,7 +5402,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 3, @@ -5425,7 +5425,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 4, @@ -5448,7 +5448,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4026, + "noteOrder": 4152, "time": 0.715585699048967, "position": { "x": 4, @@ -5471,7 +5471,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 4026, + "noteOrder": 4152, "time": 0.715585699048967, "position": { "x": 3, @@ -5494,7 +5494,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 3, @@ -5517,7 +5517,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 4, @@ -5540,7 +5540,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4073, + "noteOrder": 4200, "time": 0.7238583660899954, "position": { "x": 4, @@ -5563,7 +5563,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4073, + "noteOrder": 4200, "time": 0.7238583660899954, "position": { "x": 3, @@ -5586,7 +5586,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 3, @@ -5609,7 +5609,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 6, @@ -5632,7 +5632,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4212, + "noteOrder": 4344, "time": 0.748676367213081, "position": { "x": 6, @@ -5655,7 +5655,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4212, + "noteOrder": 4344, "time": 0.748676367213081, "position": { "x": 5, @@ -5678,7 +5678,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 5, @@ -5701,7 +5701,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 6, @@ -5724,7 +5724,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4259, + "noteOrder": 4392, "time": 0.7569490342541095, "position": { "x": 6, @@ -5747,7 +5747,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4259, + "noteOrder": 4392, "time": 0.7569490342541095, "position": { "x": 5, @@ -5770,7 +5770,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 5, @@ -5793,7 +5793,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 7, @@ -5816,7 +5816,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 7, @@ -5839,7 +5839,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 6, @@ -5862,7 +5862,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 6, @@ -5885,7 +5885,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 7, @@ -5908,7 +5908,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4445, + "noteOrder": 4584, "time": 0.7900397024182236, "position": { "x": 7, @@ -5931,7 +5931,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 4445, + "noteOrder": 4584, "time": 0.7900397024182236, "position": { "x": 6, @@ -5954,7 +5954,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 6, @@ -5977,7 +5977,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 5, @@ -6000,7 +6000,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 5, @@ -6023,7 +6023,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 4, @@ -6046,7 +6046,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 4, @@ -6069,7 +6069,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4748, + "noteOrder": 4896, "time": 0.843812038184909, "position": { "x": 6, @@ -6092,7 +6092,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4771, + "noteOrder": 4920, "time": 0.8479483717054233, "position": { "x": 6, @@ -6115,7 +6115,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4771, + "noteOrder": 4920, "time": 0.8479483717054233, "position": { "x": 7, @@ -6138,7 +6138,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 7, @@ -6161,7 +6161,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 6, @@ -6184,7 +6184,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 6, @@ -6207,7 +6207,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 7, @@ -6230,7 +6230,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4841, + "noteOrder": 4992, "time": 0.8603573722669661, "position": { "x": 7, @@ -6253,7 +6253,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 4934, + "noteOrder": 5088, "time": 0.876902706349023, "position": { "x": 4, @@ -6276,7 +6276,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 4957, + "noteOrder": 5112, "time": 0.8810390398695374, "position": { "x": 4, @@ -6299,7 +6299,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4957, + "noteOrder": 5112, "time": 0.8810390398695374, "position": { "x": 5, @@ -6322,7 +6322,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 5, @@ -6345,7 +6345,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 4, @@ -6368,7 +6368,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 4, @@ -6391,7 +6391,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 5, @@ -6414,7 +6414,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 5, @@ -6437,7 +6437,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 3, @@ -6460,7 +6460,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 5143, + "noteOrder": 5304, "time": 0.9141297080336513, "position": { "x": 3, @@ -6483,7 +6483,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 5143, + "noteOrder": 5304, "time": 0.9141297080336513, "position": { "x": 4, @@ -6506,7 +6506,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 4, @@ -6529,7 +6529,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 3, @@ -6552,7 +6552,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 5190, + "noteOrder": 5352, "time": 0.9224023750746799, "position": { "x": 3, @@ -6575,7 +6575,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5190, + "noteOrder": 5352, "time": 0.9224023750746799, "position": { "x": 4, @@ -6598,7 +6598,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 4, @@ -6621,7 +6621,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 5, @@ -6644,7 +6644,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5329, + "noteOrder": 5496, "time": 0.9472203761977654, "position": { "x": 5, @@ -6667,7 +6667,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 5329, + "noteOrder": 5496, "time": 0.9472203761977654, "position": { "x": 6, @@ -6690,7 +6690,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 6, @@ -6713,7 +6713,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 1281.5, + "noteOrder": 1321.5, "time": 0.22749834362828428, "position": { "x": 5, @@ -6741,7 +6741,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1630.5, + "noteOrder": 1681.5, "time": 0.28954334643599816, "position": { "x": 5, @@ -6769,7 +6769,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2339.0, + "noteOrder": 2412.0, "time": 0.413633352051426, "position": { "x": 5, @@ -6797,7 +6797,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2386.0, + "noteOrder": 2460.0, "time": 0.4219060190924545, "position": { "x": 5, @@ -6825,7 +6825,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2910.5, + "noteOrder": 3001.5, "time": 0.5170416900642825, "position": { "x": 5, @@ -6853,7 +6853,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2957.5, + "noteOrder": 3049.5, "time": 0.5253143571053109, "position": { "x": 5, @@ -6881,7 +6881,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3084.0, + "noteOrder": 3180.0, "time": 0.5459960247078822, "position": { "x": 5, @@ -6909,7 +6909,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3131.0, + "noteOrder": 3228.0, "time": 0.5542686917489108, "position": { "x": 5, @@ -6937,7 +6937,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3538.5, + "noteOrder": 3649.5, "time": 0.6287226951181675, "position": { "x": 5, @@ -6965,7 +6965,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3585.5, + "noteOrder": 3697.5, "time": 0.6369953621591959, "position": { "x": 5, @@ -6993,7 +6993,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4632.5, + "noteOrder": 4777.5, "time": 0.8231303705823377, "position": { "x": 5, @@ -7021,7 +7021,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5377.5, + "noteOrder": 5545.5, "time": 0.955493043238794, "position": { "x": 5, @@ -7062,7 +7062,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 132, "NPS": "2.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a_blockless.json index 77fdbefb..67827671 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "Tropical White difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 5, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 861, + "noteOrder": 888, "time": 0.1530443402590276, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 931, + "noteOrder": 960, "time": 0.1654533408205704, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 954, + "noteOrder": 984, "time": 0.16958967434108466, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1001, + "noteOrder": 1032, "time": 0.17786234138211315, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1047, + "noteOrder": 1080, "time": 0.18613500842314168, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1094, + "noteOrder": 1128, "time": 0.1944076754641702, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1176, "time": 0.20268034250519873, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1164, + "noteOrder": 1200, "time": 0.206816676025713, "position": { "x": 5, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1187, + "noteOrder": 1224, "time": 0.21095300954622725, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1210, + "noteOrder": 1248, "time": 0.21508934306674152, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1233, + "noteOrder": 1272, "time": 0.21922567658725575, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1296, "time": 0.22336201010777001, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1344, "time": 0.23163467714879854, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1368, "time": 0.2357710106693128, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1373, + "noteOrder": 1416, "time": 0.24404367771034133, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1420, + "noteOrder": 1464, "time": 0.2523163447513698, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1512, "time": 0.26058901179239835, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1560, "time": 0.2688616788334269, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1584, "time": 0.2729980123539411, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1559, + "noteOrder": 1608, "time": 0.2771343458744554, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1745, + "noteOrder": 1800, "time": 0.3102250140385695, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1839, + "noteOrder": 1896, "time": 0.3267703481206265, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1885, + "noteOrder": 1944, "time": 0.335043015161655, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1908, + "noteOrder": 1968, "time": 0.3391793486821693, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1932, + "noteOrder": 1992, "time": 0.34331568220268355, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1955, + "noteOrder": 2016, "time": 0.34745201572319784, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1978, + "noteOrder": 2040, "time": 0.3515883492437121, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2001, + "noteOrder": 2064, "time": 0.3557246827642263, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2025, + "noteOrder": 2088, "time": 0.3598610162847406, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2184, "time": 0.37640635036679765, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2280, "time": 0.3929516844488547, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2328, "time": 0.40122435148988317, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2281, + "noteOrder": 2352, "time": 0.40536068501039746, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2376, "time": 0.4094970185309117, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2537, + "noteOrder": 2616, "time": 0.4508603537360543, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2583, + "noteOrder": 2664, "time": 0.45913302077708285, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2723, + "noteOrder": 2808, "time": 0.4839510219001684, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2832, "time": 0.48808735542068266, "position": { "x": 3, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2769, + "noteOrder": 2856, "time": 0.4922236889411969, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3002, + "noteOrder": 3096, "time": 0.5335870241463395, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3025, + "noteOrder": 3120, "time": 0.5377233576668538, "position": { "x": 3, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3049, + "noteOrder": 3144, "time": 0.541859691187368, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3235, + "noteOrder": 3336, "time": 0.5749503593514821, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3328, + "noteOrder": 3432, "time": 0.5914956934335391, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3421, + "noteOrder": 3528, "time": 0.6080410275155962, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3514, + "noteOrder": 3624, "time": 0.6245863615976532, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3933, + "noteOrder": 4056, "time": 0.6990403649669099, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3980, + "noteOrder": 4104, "time": 0.7073130320079384, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4119, + "noteOrder": 4248, "time": 0.732131033131024, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4166, + "noteOrder": 4296, "time": 0.7404037001720525, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4305, + "noteOrder": 4440, "time": 0.765221701295138, "position": { "x": 8, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4352, + "noteOrder": 4488, "time": 0.7734943683361666, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4492, + "noteOrder": 4632, "time": 0.7983123694592521, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4538, + "noteOrder": 4680, "time": 0.8065850365002807, "position": { "x": 3, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4655, + "noteOrder": 4800, "time": 0.827266704102852, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4824, "time": 0.8314030376233662, "position": { "x": 3, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4848, "time": 0.8355393711438804, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4724, + "noteOrder": 4872, "time": 0.8396757046643947, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4841, + "noteOrder": 4992, "time": 0.8603573722669661, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4864, + "noteOrder": 5016, "time": 0.8644937057874803, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4887, + "noteOrder": 5040, "time": 0.8686300393079945, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4911, + "noteOrder": 5064, "time": 0.8727663728285088, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5050, + "noteOrder": 5208, "time": 0.8975843739515944, "position": { "x": 2, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5097, + "noteOrder": 5256, "time": 0.9058570409926229, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5400, "time": 0.9306750421157085, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5283, + "noteOrder": 5448, "time": 0.938947709156737, "position": { "x": 7, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 4, @@ -2067,7 +2067,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 186, + "noteOrder": 192, "time": 0.03309066816411407, "position": { "x": 6, @@ -2090,7 +2090,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 6, @@ -2113,7 +2113,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 5, @@ -2136,7 +2136,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 5, @@ -2159,7 +2159,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 6, @@ -2182,7 +2182,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 6, @@ -2205,7 +2205,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 279, + "noteOrder": 288, "time": 0.04963600224617112, "position": { "x": 4, @@ -2228,7 +2228,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 4, @@ -2251,7 +2251,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 5, @@ -2274,7 +2274,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 5, @@ -2297,7 +2297,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 4, @@ -2320,7 +2320,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 4, @@ -2343,7 +2343,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 372, + "noteOrder": 384, "time": 0.06618133632822815, "position": { "x": 7, @@ -2366,7 +2366,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 7, @@ -2389,7 +2389,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 6, @@ -2412,7 +2412,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 6, @@ -2435,7 +2435,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 7, @@ -2458,7 +2458,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 7, @@ -2481,7 +2481,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 5, @@ -2504,7 +2504,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 5, @@ -2527,7 +2527,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 4, @@ -2550,7 +2550,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 4, @@ -2573,7 +2573,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 5, @@ -2596,7 +2596,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 5, @@ -2619,7 +2619,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 559, + "noteOrder": 576, "time": 0.09927200449234223, "position": { "x": 6, @@ -2642,7 +2642,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 6, @@ -2665,7 +2665,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 5, @@ -2688,7 +2688,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 5, @@ -2711,7 +2711,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 6, @@ -2734,7 +2734,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 6, @@ -2757,7 +2757,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 652, + "noteOrder": 672, "time": 0.11581733857439927, "position": { "x": 4, @@ -2780,7 +2780,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 4, @@ -2803,7 +2803,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 698, + "noteOrder": 720, "time": 0.1240900056154278, "position": { "x": 6, @@ -2826,7 +2826,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 6, @@ -2849,7 +2849,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 745, + "noteOrder": 768, "time": 0.1323626726564563, "position": { "x": 4, @@ -2872,7 +2872,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 4, @@ -2895,7 +2895,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 5, @@ -2918,7 +2918,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 5, @@ -2941,7 +2941,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 4, @@ -2964,7 +2964,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 4, @@ -2987,7 +2987,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 6, @@ -3010,7 +3010,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 861, + "noteOrder": 888, "time": 0.1530443402590276, "position": { "x": 6, @@ -3033,7 +3033,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 884, + "noteOrder": 912, "time": 0.15718067377954187, "position": { "x": 4, @@ -3056,7 +3056,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 4, @@ -3079,7 +3079,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1583, + "noteOrder": 1632, "time": 0.28127067939496964, "position": { "x": 3, @@ -3102,7 +3102,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1629, + "noteOrder": 1680, "time": 0.28954334643599816, "position": { "x": 3, @@ -3125,7 +3125,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1676, + "noteOrder": 1728, "time": 0.2978160134770267, "position": { "x": 6, @@ -3148,7 +3148,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1699, + "noteOrder": 1752, "time": 0.301952346997541, "position": { "x": 6, @@ -3171,7 +3171,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1699, + "noteOrder": 1752, "time": 0.301952346997541, "position": { "x": 5, @@ -3194,7 +3194,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 5, @@ -3217,7 +3217,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 6, @@ -3240,7 +3240,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1745, + "noteOrder": 1800, "time": 0.3102250140385695, "position": { "x": 6, @@ -3263,7 +3263,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 4, @@ -3286,7 +3286,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1792, + "noteOrder": 1848, "time": 0.31849768107959797, "position": { "x": 4, @@ -3309,7 +3309,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1792, + "noteOrder": 1848, "time": 0.31849768107959797, "position": { "x": 5, @@ -3332,7 +3332,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 5, @@ -3355,7 +3355,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 4, @@ -3378,7 +3378,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 1896, "time": 0.3267703481206265, "position": { "x": 4, @@ -3401,7 +3401,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2048, + "noteOrder": 2112, "time": 0.36399734980525483, "position": { "x": 4, @@ -3424,7 +3424,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2071, + "noteOrder": 2136, "time": 0.3681336833257691, "position": { "x": 4, @@ -3447,7 +3447,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2071, + "noteOrder": 2136, "time": 0.3681336833257691, "position": { "x": 5, @@ -3470,7 +3470,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 5, @@ -3493,7 +3493,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 4, @@ -3516,7 +3516,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2118, + "noteOrder": 2184, "time": 0.37640635036679765, "position": { "x": 4, @@ -3539,7 +3539,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 6, @@ -3562,7 +3562,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2164, + "noteOrder": 2232, "time": 0.3846790174078262, "position": { "x": 6, @@ -3585,7 +3585,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2164, + "noteOrder": 2232, "time": 0.3846790174078262, "position": { "x": 5, @@ -3608,7 +3608,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 5, @@ -3631,7 +3631,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 6, @@ -3654,7 +3654,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2280, "time": 0.3929516844488547, "position": { "x": 6, @@ -3677,7 +3677,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2420, + "noteOrder": 2496, "time": 0.43017868613348303, "position": { "x": 5, @@ -3700,7 +3700,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2444, + "noteOrder": 2520, "time": 0.43431501965399727, "position": { "x": 5, @@ -3723,7 +3723,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2444, + "noteOrder": 2520, "time": 0.43431501965399727, "position": { "x": 4, @@ -3746,7 +3746,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 4, @@ -3769,7 +3769,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 5, @@ -3792,7 +3792,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2490, + "noteOrder": 2568, "time": 0.4425876866950258, "position": { "x": 5, @@ -3815,7 +3815,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2490, + "noteOrder": 2568, "time": 0.4425876866950258, "position": { "x": 4, @@ -3838,7 +3838,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 4, @@ -3861,7 +3861,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 5, @@ -3884,7 +3884,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2630, + "noteOrder": 2712, "time": 0.46740568781811137, "position": { "x": 5, @@ -3907,7 +3907,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2630, + "noteOrder": 2712, "time": 0.46740568781811137, "position": { "x": 6, @@ -3930,7 +3930,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 6, @@ -3953,7 +3953,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 5, @@ -3976,7 +3976,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2676, + "noteOrder": 2760, "time": 0.47567835485913984, "position": { "x": 5, @@ -3999,7 +3999,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2676, + "noteOrder": 2760, "time": 0.47567835485913984, "position": { "x": 6, @@ -4022,7 +4022,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 6, @@ -4045,7 +4045,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2793, + "noteOrder": 2880, "time": 0.4963600224617112, "position": { "x": 5, @@ -4068,7 +4068,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2816, + "noteOrder": 2904, "time": 0.5004963559822254, "position": { "x": 5, @@ -4091,7 +4091,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2816, + "noteOrder": 2904, "time": 0.5004963559822254, "position": { "x": 4, @@ -4114,7 +4114,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -4137,7 +4137,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 5, @@ -4160,7 +4160,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2863, + "noteOrder": 2952, "time": 0.5087690230232539, "position": { "x": 5, @@ -4183,7 +4183,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2863, + "noteOrder": 2952, "time": 0.5087690230232539, "position": { "x": 4, @@ -4206,7 +4206,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -4229,7 +4229,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 6, @@ -4252,7 +4252,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2909, + "noteOrder": 3000, "time": 0.5170416900642825, "position": { "x": 6, @@ -4275,7 +4275,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -4298,7 +4298,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2956, + "noteOrder": 3048, "time": 0.5253143571053109, "position": { "x": 4, @@ -4321,7 +4321,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3165, + "noteOrder": 3264, "time": 0.5625413587899393, "position": { "x": 6, @@ -4344,7 +4344,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3188, + "noteOrder": 3288, "time": 0.5666776923104535, "position": { "x": 6, @@ -4367,7 +4367,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3188, + "noteOrder": 3288, "time": 0.5666776923104535, "position": { "x": 5, @@ -4390,7 +4390,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 5, @@ -4413,7 +4413,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 6, @@ -4436,7 +4436,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3235, + "noteOrder": 3336, "time": 0.5749503593514821, "position": { "x": 6, @@ -4459,7 +4459,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 4, @@ -4482,7 +4482,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3281, + "noteOrder": 3384, "time": 0.5832230263925107, "position": { "x": 4, @@ -4505,7 +4505,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3281, + "noteOrder": 3384, "time": 0.5832230263925107, "position": { "x": 5, @@ -4528,7 +4528,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 5, @@ -4551,7 +4551,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 4, @@ -4574,7 +4574,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3328, + "noteOrder": 3432, "time": 0.5914956934335391, "position": { "x": 4, @@ -4597,7 +4597,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 7, @@ -4620,7 +4620,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 7, @@ -4643,7 +4643,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 6, @@ -4666,7 +4666,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 6, @@ -4689,7 +4689,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 7, @@ -4712,7 +4712,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3421, + "noteOrder": 3528, "time": 0.6080410275155962, "position": { "x": 7, @@ -4735,7 +4735,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3444, + "noteOrder": 3552, "time": 0.6121773610361104, "position": { "x": 5, @@ -4758,7 +4758,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 5, @@ -4781,7 +4781,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 4, @@ -4804,7 +4804,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 4, @@ -4827,7 +4827,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 5, @@ -4850,7 +4850,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3514, + "noteOrder": 3624, "time": 0.6245863615976532, "position": { "x": 5, @@ -4873,7 +4873,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 5, @@ -4896,7 +4896,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3654, + "noteOrder": 3768, "time": 0.6494043627207388, "position": { "x": 5, @@ -4919,7 +4919,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3654, + "noteOrder": 3768, "time": 0.6494043627207388, "position": { "x": 4, @@ -4942,7 +4942,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 4, @@ -4965,7 +4965,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 5, @@ -4988,7 +4988,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3700, + "noteOrder": 3816, "time": 0.6576770297617673, "position": { "x": 5, @@ -5011,7 +5011,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3700, + "noteOrder": 3816, "time": 0.6576770297617673, "position": { "x": 4, @@ -5034,7 +5034,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 4, @@ -5057,7 +5057,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 7, @@ -5080,7 +5080,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 7, @@ -5103,7 +5103,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 6, @@ -5126,7 +5126,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 6, @@ -5149,7 +5149,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 7, @@ -5172,7 +5172,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3793, + "noteOrder": 3912, "time": 0.6742223638438243, "position": { "x": 7, @@ -5195,7 +5195,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3793, + "noteOrder": 3912, "time": 0.6742223638438243, "position": { "x": 6, @@ -5218,7 +5218,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 6, @@ -5241,7 +5241,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 4, @@ -5264,7 +5264,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 4, @@ -5287,7 +5287,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 3, @@ -5310,7 +5310,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 3, @@ -5333,7 +5333,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 4, @@ -5356,7 +5356,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3887, + "noteOrder": 4008, "time": 0.6907676979258813, "position": { "x": 4, @@ -5379,7 +5379,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3887, + "noteOrder": 4008, "time": 0.6907676979258813, "position": { "x": 3, @@ -5402,7 +5402,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 3, @@ -5425,7 +5425,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 4, @@ -5448,7 +5448,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4026, + "noteOrder": 4152, "time": 0.715585699048967, "position": { "x": 4, @@ -5471,7 +5471,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 4026, + "noteOrder": 4152, "time": 0.715585699048967, "position": { "x": 3, @@ -5494,7 +5494,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 3, @@ -5517,7 +5517,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 4, @@ -5540,7 +5540,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4073, + "noteOrder": 4200, "time": 0.7238583660899954, "position": { "x": 4, @@ -5563,7 +5563,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4073, + "noteOrder": 4200, "time": 0.7238583660899954, "position": { "x": 3, @@ -5586,7 +5586,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 3, @@ -5609,7 +5609,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 6, @@ -5632,7 +5632,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4212, + "noteOrder": 4344, "time": 0.748676367213081, "position": { "x": 6, @@ -5655,7 +5655,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4212, + "noteOrder": 4344, "time": 0.748676367213081, "position": { "x": 5, @@ -5678,7 +5678,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 5, @@ -5701,7 +5701,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 6, @@ -5724,7 +5724,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4259, + "noteOrder": 4392, "time": 0.7569490342541095, "position": { "x": 6, @@ -5747,7 +5747,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4259, + "noteOrder": 4392, "time": 0.7569490342541095, "position": { "x": 5, @@ -5770,7 +5770,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 5, @@ -5793,7 +5793,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 7, @@ -5816,7 +5816,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 7, @@ -5839,7 +5839,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 6, @@ -5862,7 +5862,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 6, @@ -5885,7 +5885,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 7, @@ -5908,7 +5908,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4445, + "noteOrder": 4584, "time": 0.7900397024182236, "position": { "x": 7, @@ -5931,7 +5931,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 4445, + "noteOrder": 4584, "time": 0.7900397024182236, "position": { "x": 6, @@ -5954,7 +5954,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 6, @@ -5977,7 +5977,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 5, @@ -6000,7 +6000,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 5, @@ -6023,7 +6023,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 4, @@ -6046,7 +6046,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 4, @@ -6069,7 +6069,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4748, + "noteOrder": 4896, "time": 0.843812038184909, "position": { "x": 6, @@ -6092,7 +6092,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4771, + "noteOrder": 4920, "time": 0.8479483717054233, "position": { "x": 6, @@ -6115,7 +6115,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4771, + "noteOrder": 4920, "time": 0.8479483717054233, "position": { "x": 7, @@ -6138,7 +6138,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 7, @@ -6161,7 +6161,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 6, @@ -6184,7 +6184,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 6, @@ -6207,7 +6207,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 7, @@ -6230,7 +6230,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4841, + "noteOrder": 4992, "time": 0.8603573722669661, "position": { "x": 7, @@ -6253,7 +6253,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 4934, + "noteOrder": 5088, "time": 0.876902706349023, "position": { "x": 4, @@ -6276,7 +6276,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 4957, + "noteOrder": 5112, "time": 0.8810390398695374, "position": { "x": 4, @@ -6299,7 +6299,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4957, + "noteOrder": 5112, "time": 0.8810390398695374, "position": { "x": 5, @@ -6322,7 +6322,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 5, @@ -6345,7 +6345,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 4, @@ -6368,7 +6368,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 4, @@ -6391,7 +6391,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 5, @@ -6414,7 +6414,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 5, @@ -6437,7 +6437,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 3, @@ -6460,7 +6460,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 5143, + "noteOrder": 5304, "time": 0.9141297080336513, "position": { "x": 3, @@ -6483,7 +6483,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 5143, + "noteOrder": 5304, "time": 0.9141297080336513, "position": { "x": 4, @@ -6506,7 +6506,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 4, @@ -6529,7 +6529,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 3, @@ -6552,7 +6552,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 5190, + "noteOrder": 5352, "time": 0.9224023750746799, "position": { "x": 3, @@ -6575,7 +6575,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5190, + "noteOrder": 5352, "time": 0.9224023750746799, "position": { "x": 4, @@ -6598,7 +6598,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 4, @@ -6621,7 +6621,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 5, @@ -6644,7 +6644,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5329, + "noteOrder": 5496, "time": 0.9472203761977654, "position": { "x": 5, @@ -6667,7 +6667,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 5329, + "noteOrder": 5496, "time": 0.9472203761977654, "position": { "x": 6, @@ -6690,7 +6690,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 6, @@ -6725,7 +6725,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 132, "NPS": "2.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b.json index c982dc66..2eb94f9b 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "Tropical White difficulty_1b", "sphereNodes": [ { - "noteOrder": 186, + "noteOrder": 192, "time": 0.03309066816411407, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 279, + "noteOrder": 288, "time": 0.04963600224617112, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 8, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 372, + "noteOrder": 384, "time": 0.06618133632822815, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 3, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 559, + "noteOrder": 576, "time": 0.09927200449234223, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 672, "time": 0.11581733857439927, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 720, "time": 0.1240900056154278, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 768, "time": 0.1323626726564563, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1176, "time": 0.20268034250519873, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1164, + "noteOrder": 1200, "time": 0.206816676025713, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1187, + "noteOrder": 1224, "time": 0.21095300954622725, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1210, + "noteOrder": 1248, "time": 0.21508934306674152, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1233, + "noteOrder": 1272, "time": 0.21922567658725575, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1296, "time": 0.22336201010777001, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1280, + "noteOrder": 1320, "time": 0.22749834362828428, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1560, "time": 0.2688616788334269, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1584, "time": 0.2729980123539411, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1559, + "noteOrder": 1608, "time": 0.2771343458744554, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1583, + "noteOrder": 1632, "time": 0.28127067939496964, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1606, + "noteOrder": 1656, "time": 0.2854070129154839, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1629, + "noteOrder": 1680, "time": 0.28954334643599816, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1652, + "noteOrder": 1704, "time": 0.29367967995651245, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 8, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2832, "time": 0.48808735542068266, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 2, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3025, + "noteOrder": 3120, "time": 0.5377233576668538, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 3168, "time": 0.5459960247078822, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3119, + "noteOrder": 3216, "time": 0.5542686917489108, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3444, + "noteOrder": 3552, "time": 0.6121773610361104, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 5, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 5, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4848, "time": 0.8355393711438804, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4724, + "noteOrder": 4872, "time": 0.8396757046643947, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4887, + "noteOrder": 5040, "time": 0.8686300393079945, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4911, + "noteOrder": 5064, "time": 0.8727663728285088, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 6, @@ -1687,7 +1687,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 931, + "noteOrder": 960, "time": 0.1654533408205704, "position": { "x": 6, @@ -1710,7 +1710,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 6, @@ -1733,7 +1733,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 4, @@ -1756,7 +1756,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 4, @@ -1779,7 +1779,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 6, @@ -1802,7 +1802,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 6, @@ -1825,7 +1825,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 4, @@ -1848,7 +1848,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 4, @@ -1871,7 +1871,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1303, + "noteOrder": 1344, "time": 0.23163467714879854, "position": { "x": 6, @@ -1894,7 +1894,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 6, @@ -1917,7 +1917,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 4, @@ -1940,7 +1940,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 4, @@ -1963,7 +1963,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 6, @@ -1986,7 +1986,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 6, @@ -2009,7 +2009,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 4, @@ -2032,7 +2032,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 4, @@ -2055,7 +2055,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1676, + "noteOrder": 1728, "time": 0.2978160134770267, "position": { "x": 4, @@ -2078,7 +2078,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 4, @@ -2101,7 +2101,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 6, @@ -2124,7 +2124,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 6, @@ -2147,7 +2147,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 4, @@ -2170,7 +2170,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 4, @@ -2193,7 +2193,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 6, @@ -2216,7 +2216,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 6, @@ -2239,7 +2239,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 4, @@ -2262,7 +2262,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1908, + "noteOrder": 1968, "time": 0.3391793486821693, "position": { "x": 4, @@ -2285,7 +2285,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1955, + "noteOrder": 2016, "time": 0.34745201572319784, "position": { "x": 6, @@ -2308,7 +2308,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2001, + "noteOrder": 2064, "time": 0.3557246827642263, "position": { "x": 6, @@ -2331,7 +2331,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2048, + "noteOrder": 2112, "time": 0.36399734980525483, "position": { "x": 6, @@ -2354,7 +2354,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 6, @@ -2377,7 +2377,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 4, @@ -2400,7 +2400,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 4, @@ -2423,7 +2423,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 6, @@ -2446,7 +2446,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 6, @@ -2469,7 +2469,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 4, @@ -2492,7 +2492,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 4, @@ -2515,7 +2515,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 6, @@ -2538,7 +2538,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2281, + "noteOrder": 2352, "time": 0.40536068501039746, "position": { "x": 6, @@ -2561,7 +2561,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2327, + "noteOrder": 2400, "time": 0.413633352051426, "position": { "x": 4, @@ -2584,7 +2584,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2374, + "noteOrder": 2448, "time": 0.4219060190924545, "position": { "x": 4, @@ -2607,7 +2607,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2420, + "noteOrder": 2496, "time": 0.43017868613348303, "position": { "x": 6, @@ -2630,7 +2630,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 6, @@ -2653,7 +2653,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 6, @@ -2676,7 +2676,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 6, @@ -2699,7 +2699,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 6, @@ -2722,7 +2722,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 6, @@ -2745,7 +2745,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 6, @@ -2768,7 +2768,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 6, @@ -2791,7 +2791,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2793, + "noteOrder": 2880, "time": 0.4963600224617112, "position": { "x": 4, @@ -2814,7 +2814,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -2837,7 +2837,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -2860,7 +2860,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -2883,7 +2883,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -2906,7 +2906,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -2929,7 +2929,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -2952,7 +2952,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 4, @@ -2975,7 +2975,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3165, + "noteOrder": 3264, "time": 0.5625413587899393, "position": { "x": 6, @@ -2998,7 +2998,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 6, @@ -3021,7 +3021,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 4, @@ -3044,7 +3044,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 4, @@ -3067,7 +3067,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 6, @@ -3090,7 +3090,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 6, @@ -3113,7 +3113,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 4, @@ -3136,7 +3136,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 4, @@ -3159,7 +3159,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3537, + "noteOrder": 3648, "time": 0.6287226951181675, "position": { "x": 4, @@ -3182,7 +3182,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3584, + "noteOrder": 3696, "time": 0.6369953621591959, "position": { "x": 4, @@ -3205,7 +3205,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 3584, + "noteOrder": 3696, "time": 0.6369953621591959, "position": { "x": 6, @@ -3228,7 +3228,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 6, @@ -3251,7 +3251,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 4, @@ -3274,7 +3274,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 4, @@ -3297,7 +3297,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 6, @@ -3320,7 +3320,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 6, @@ -3343,7 +3343,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 6, @@ -3366,7 +3366,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 6, @@ -3389,7 +3389,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 4, @@ -3412,7 +3412,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 4, @@ -3435,7 +3435,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 7, @@ -3458,7 +3458,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 7, @@ -3481,7 +3481,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 4, @@ -3504,7 +3504,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 4, @@ -3527,7 +3527,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 6, @@ -3550,7 +3550,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 6, @@ -3573,7 +3573,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 3, @@ -3596,7 +3596,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 3, @@ -3619,7 +3619,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 4, @@ -3642,7 +3642,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 4, @@ -3665,7 +3665,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 6, @@ -3688,7 +3688,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 6, @@ -3711,7 +3711,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 6, @@ -3734,7 +3734,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 6, @@ -3757,7 +3757,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 4, @@ -3780,7 +3780,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 4, @@ -3803,7 +3803,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 6, @@ -3826,7 +3826,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 6, @@ -3849,7 +3849,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 4, @@ -3872,7 +3872,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 4, @@ -3895,7 +3895,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 6, @@ -3918,7 +3918,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 6, @@ -3941,7 +3941,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 4, @@ -3964,7 +3964,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 4, @@ -3987,7 +3987,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 6, @@ -4010,7 +4010,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 6, @@ -4033,7 +4033,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 4, @@ -4056,7 +4056,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 4, @@ -4079,7 +4079,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 6, @@ -4102,7 +4102,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 6, @@ -4125,7 +4125,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 862.5, + "noteOrder": 889.5, "time": 0.1530443402590276, "position": { "x": 5, @@ -4153,7 +4153,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 896.0, + "noteOrder": 924.0, "time": 0.15718067377954187, "position": { "x": 5, @@ -4181,7 +4181,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1909.5, + "noteOrder": 1969.5, "time": 0.3391793486821693, "position": { "x": 5, @@ -4209,7 +4209,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2002.5, + "noteOrder": 2065.5, "time": 0.3557246827642263, "position": { "x": 5, @@ -4237,7 +4237,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2282.5, + "noteOrder": 2353.5, "time": 0.40536068501039746, "position": { "x": 5, @@ -4265,7 +4265,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2375.5, + "noteOrder": 2449.5, "time": 0.4219060190924545, "position": { "x": 5, @@ -4293,7 +4293,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3422.5, + "noteOrder": 3529.5, "time": 0.6080410275155962, "position": { "x": 5, @@ -4321,7 +4321,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3515.5, + "noteOrder": 3625.5, "time": 0.6245863615976532, "position": { "x": 5, @@ -4349,7 +4349,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3794.5, + "noteOrder": 3913.5, "time": 0.6742223638438243, "position": { "x": 5, @@ -4377,7 +4377,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3888.5, + "noteOrder": 4009.5, "time": 0.6907676979258813, "position": { "x": 5, @@ -4405,7 +4405,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4050.5, + "noteOrder": 4177.5, "time": 0.7197220325694812, "position": { "x": 5, @@ -4433,7 +4433,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4237.5, + "noteOrder": 4369.5, "time": 0.7528127007335953, "position": { "x": 5, @@ -4461,7 +4461,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4667.0, + "noteOrder": 4812.0, "time": 0.827266704102852, "position": { "x": 5, @@ -4489,7 +4489,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4760.0, + "noteOrder": 4908.0, "time": 0.843812038184909, "position": { "x": 5, @@ -4517,7 +4517,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4853.0, + "noteOrder": 5004.0, "time": 0.8603573722669661, "position": { "x": 5, @@ -4545,7 +4545,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4946.0, + "noteOrder": 5100.0, "time": 0.876902706349023, "position": { "x": 5, @@ -4573,7 +4573,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5388.0, + "noteOrder": 5556.0, "time": 0.955493043238794, "position": { "x": 5, @@ -4614,7 +4614,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 132, "NPS": "1.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b_blockless.json index 1368bdaa..150af028 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "Tropical White difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 186, + "noteOrder": 192, "time": 0.03309066816411407, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 209, + "noteOrder": 216, "time": 0.037227001684628336, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 233, + "noteOrder": 240, "time": 0.0413633352051426, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 256, + "noteOrder": 264, "time": 0.045499668725656854, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 279, + "noteOrder": 288, "time": 0.04963600224617112, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 303, + "noteOrder": 312, "time": 0.05377233576668538, "position": { "x": 8, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 326, + "noteOrder": 336, "time": 0.057908669287199635, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 349, + "noteOrder": 360, "time": 0.0620450028077139, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 372, + "noteOrder": 384, "time": 0.06618133632822815, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 396, + "noteOrder": 408, "time": 0.07031766984874241, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 419, + "noteOrder": 432, "time": 0.07445400336925667, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 456, "time": 0.07859033688977093, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 465, + "noteOrder": 480, "time": 0.0827266704102852, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 489, + "noteOrder": 504, "time": 0.08686300393079946, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 512, + "noteOrder": 528, "time": 0.09099933745131371, "position": { "x": 3, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 535, + "noteOrder": 552, "time": 0.09513567097182797, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 559, + "noteOrder": 576, "time": 0.09927200449234223, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 582, + "noteOrder": 600, "time": 0.1034083380128565, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 605, + "noteOrder": 624, "time": 0.10754467153337076, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 628, + "noteOrder": 648, "time": 0.11168100505388501, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 652, + "noteOrder": 672, "time": 0.11581733857439927, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 675, + "noteOrder": 696, "time": 0.11995367209491353, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 698, + "noteOrder": 720, "time": 0.1240900056154278, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 744, "time": 0.12822633913594206, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 768, "time": 0.1323626726564563, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 792, "time": 0.13649900617697056, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 791, + "noteOrder": 816, "time": 0.14063533969748482, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 815, + "noteOrder": 840, "time": 0.14477167321799908, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 838, + "noteOrder": 864, "time": 0.14890800673851334, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 908, + "noteOrder": 936, "time": 0.16131700730005613, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1140, + "noteOrder": 1176, "time": 0.20268034250519873, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1164, + "noteOrder": 1200, "time": 0.206816676025713, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1187, + "noteOrder": 1224, "time": 0.21095300954622725, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1210, + "noteOrder": 1248, "time": 0.21508934306674152, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1233, + "noteOrder": 1272, "time": 0.21922567658725575, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1257, + "noteOrder": 1296, "time": 0.22336201010777001, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1280, + "noteOrder": 1320, "time": 0.22749834362828428, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1513, + "noteOrder": 1560, "time": 0.2688616788334269, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1584, "time": 0.2729980123539411, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1559, + "noteOrder": 1608, "time": 0.2771343458744554, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1583, + "noteOrder": 1632, "time": 0.28127067939496964, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1606, + "noteOrder": 1656, "time": 0.2854070129154839, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1629, + "noteOrder": 1680, "time": 0.28954334643599816, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1652, + "noteOrder": 1704, "time": 0.29367967995651245, "position": { "x": 3, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 8, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2653, + "noteOrder": 2736, "time": 0.4715420213386256, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 2784, "time": 0.47981468837965413, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 2832, "time": 0.48808735542068266, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 2, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3025, + "noteOrder": 3120, "time": 0.5377233576668538, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 3168, "time": 0.5459960247078822, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3119, + "noteOrder": 3216, "time": 0.5542686917489108, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3375, + "noteOrder": 3480, "time": 0.5997683604745676, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3398, + "noteOrder": 3504, "time": 0.603904693995082, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3444, + "noteOrder": 3552, "time": 0.6121773610361104, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3576, "time": 0.6163136945566247, "position": { "x": 5, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3491, + "noteOrder": 3600, "time": 0.620450028077139, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 3864, "time": 0.6659496968027958, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3770, + "noteOrder": 3888, "time": 0.67008603032331, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3817, + "noteOrder": 3936, "time": 0.6783586973643386, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 3960, "time": 0.6824950308848529, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3863, + "noteOrder": 3984, "time": 0.6866313644053671, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4536, "time": 0.781767035377195, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4560, "time": 0.7859033688977094, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4585, + "noteOrder": 4728, "time": 0.8148577035413092, "position": { "x": 5, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 4752, "time": 0.8189940370618234, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4848, "time": 0.8355393711438804, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4724, + "noteOrder": 4872, "time": 0.8396757046643947, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4794, + "noteOrder": 4944, "time": 0.8520847052259375, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4817, + "noteOrder": 4968, "time": 0.8562210387464517, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4887, + "noteOrder": 5040, "time": 0.8686300393079945, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4911, + "noteOrder": 5064, "time": 0.8727663728285088, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4980, + "noteOrder": 5136, "time": 0.8851753733900516, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5004, + "noteOrder": 5160, "time": 0.8893117069105658, "position": { "x": 6, @@ -1687,7 +1687,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 931, + "noteOrder": 960, "time": 0.1654533408205704, "position": { "x": 6, @@ -1710,7 +1710,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 6, @@ -1733,7 +1733,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 977, + "noteOrder": 1008, "time": 0.17372600786159892, "position": { "x": 4, @@ -1756,7 +1756,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 4, @@ -1779,7 +1779,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1024, + "noteOrder": 1056, "time": 0.18199867490262742, "position": { "x": 6, @@ -1802,7 +1802,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 6, @@ -1825,7 +1825,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1071, + "noteOrder": 1104, "time": 0.19027134194365594, "position": { "x": 4, @@ -1848,7 +1848,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1117, + "noteOrder": 1152, "time": 0.19854400898468447, "position": { "x": 4, @@ -1871,7 +1871,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1303, + "noteOrder": 1344, "time": 0.23163467714879854, "position": { "x": 6, @@ -1894,7 +1894,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 6, @@ -1917,7 +1917,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1350, + "noteOrder": 1392, "time": 0.23990734418982707, "position": { "x": 4, @@ -1940,7 +1940,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 4, @@ -1963,7 +1963,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1396, + "noteOrder": 1440, "time": 0.2481800112308556, "position": { "x": 6, @@ -1986,7 +1986,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 6, @@ -2009,7 +2009,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1443, + "noteOrder": 1488, "time": 0.2564526782718841, "position": { "x": 4, @@ -2032,7 +2032,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1489, + "noteOrder": 1536, "time": 0.2647253453129126, "position": { "x": 4, @@ -2055,7 +2055,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1676, + "noteOrder": 1728, "time": 0.2978160134770267, "position": { "x": 4, @@ -2078,7 +2078,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 4, @@ -2101,7 +2101,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1722, + "noteOrder": 1776, "time": 0.3060886805180552, "position": { "x": 6, @@ -2124,7 +2124,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 6, @@ -2147,7 +2147,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1824, "time": 0.31436134755908374, "position": { "x": 4, @@ -2170,7 +2170,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 4, @@ -2193,7 +2193,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1815, + "noteOrder": 1872, "time": 0.32263401460011226, "position": { "x": 6, @@ -2216,7 +2216,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 6, @@ -2239,7 +2239,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1862, + "noteOrder": 1920, "time": 0.3309066816411408, "position": { "x": 4, @@ -2262,7 +2262,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1908, + "noteOrder": 1968, "time": 0.3391793486821693, "position": { "x": 4, @@ -2285,7 +2285,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1955, + "noteOrder": 2016, "time": 0.34745201572319784, "position": { "x": 6, @@ -2308,7 +2308,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2001, + "noteOrder": 2064, "time": 0.3557246827642263, "position": { "x": 6, @@ -2331,7 +2331,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2048, + "noteOrder": 2112, "time": 0.36399734980525483, "position": { "x": 6, @@ -2354,7 +2354,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 6, @@ -2377,7 +2377,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2095, + "noteOrder": 2160, "time": 0.37227001684628336, "position": { "x": 4, @@ -2400,7 +2400,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 4, @@ -2423,7 +2423,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2141, + "noteOrder": 2208, "time": 0.3805426838873119, "position": { "x": 6, @@ -2446,7 +2446,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 6, @@ -2469,7 +2469,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2188, + "noteOrder": 2256, "time": 0.3888153509283404, "position": { "x": 4, @@ -2492,7 +2492,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 4, @@ -2515,7 +2515,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2234, + "noteOrder": 2304, "time": 0.39708801796936893, "position": { "x": 6, @@ -2538,7 +2538,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2281, + "noteOrder": 2352, "time": 0.40536068501039746, "position": { "x": 6, @@ -2561,7 +2561,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2327, + "noteOrder": 2400, "time": 0.413633352051426, "position": { "x": 4, @@ -2584,7 +2584,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2374, + "noteOrder": 2448, "time": 0.4219060190924545, "position": { "x": 4, @@ -2607,7 +2607,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2420, + "noteOrder": 2496, "time": 0.43017868613348303, "position": { "x": 6, @@ -2630,7 +2630,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 6, @@ -2653,7 +2653,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2467, + "noteOrder": 2544, "time": 0.4384513531745115, "position": { "x": 6, @@ -2676,7 +2676,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 6, @@ -2699,7 +2699,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2513, + "noteOrder": 2592, "time": 0.44672402021554003, "position": { "x": 6, @@ -2722,7 +2722,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 6, @@ -2745,7 +2745,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2560, + "noteOrder": 2640, "time": 0.45499668725656855, "position": { "x": 6, @@ -2768,7 +2768,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2607, + "noteOrder": 2688, "time": 0.4632693542975971, "position": { "x": 6, @@ -2791,7 +2791,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2793, + "noteOrder": 2880, "time": 0.4963600224617112, "position": { "x": 4, @@ -2814,7 +2814,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -2837,7 +2837,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2839, + "noteOrder": 2928, "time": 0.5046326895027397, "position": { "x": 4, @@ -2860,7 +2860,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -2883,7 +2883,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2886, + "noteOrder": 2976, "time": 0.5129053565437682, "position": { "x": 4, @@ -2906,7 +2906,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -2929,7 +2929,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3024, "time": 0.5211780235847967, "position": { "x": 4, @@ -2952,7 +2952,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2979, + "noteOrder": 3072, "time": 0.5294506906258252, "position": { "x": 4, @@ -2975,7 +2975,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3165, + "noteOrder": 3264, "time": 0.5625413587899393, "position": { "x": 6, @@ -2998,7 +2998,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 6, @@ -3021,7 +3021,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3212, + "noteOrder": 3312, "time": 0.5708140258309679, "position": { "x": 4, @@ -3044,7 +3044,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 4, @@ -3067,7 +3067,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3360, "time": 0.5790866928719963, "position": { "x": 6, @@ -3090,7 +3090,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 6, @@ -3113,7 +3113,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3305, + "noteOrder": 3408, "time": 0.5873593599130249, "position": { "x": 4, @@ -3136,7 +3136,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3351, + "noteOrder": 3456, "time": 0.5956320269540534, "position": { "x": 4, @@ -3159,7 +3159,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3537, + "noteOrder": 3648, "time": 0.6287226951181675, "position": { "x": 4, @@ -3182,7 +3182,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3584, + "noteOrder": 3696, "time": 0.6369953621591959, "position": { "x": 4, @@ -3205,7 +3205,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 3584, + "noteOrder": 3696, "time": 0.6369953621591959, "position": { "x": 6, @@ -3228,7 +3228,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 6, @@ -3251,7 +3251,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 3631, + "noteOrder": 3744, "time": 0.6452680292002245, "position": { "x": 4, @@ -3274,7 +3274,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 4, @@ -3297,7 +3297,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3677, + "noteOrder": 3792, "time": 0.653540696241253, "position": { "x": 6, @@ -3320,7 +3320,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3724, + "noteOrder": 3840, "time": 0.6618133632822816, "position": { "x": 6, @@ -3343,7 +3343,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 3910, + "noteOrder": 4032, "time": 0.6949040314463957, "position": { "x": 6, @@ -3366,7 +3366,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 6, @@ -3389,7 +3389,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3956, + "noteOrder": 4080, "time": 0.7031766984874241, "position": { "x": 4, @@ -3412,7 +3412,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 4, @@ -3435,7 +3435,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 4003, + "noteOrder": 4128, "time": 0.7114493655284526, "position": { "x": 7, @@ -3458,7 +3458,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 4049, + "noteOrder": 4176, "time": 0.7197220325694812, "position": { "x": 7, @@ -3481,7 +3481,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4096, + "noteOrder": 4224, "time": 0.7279946996105097, "position": { "x": 4, @@ -3504,7 +3504,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 4, @@ -3527,7 +3527,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 4143, + "noteOrder": 4272, "time": 0.7362673666515382, "position": { "x": 6, @@ -3550,7 +3550,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 6, @@ -3573,7 +3573,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4189, + "noteOrder": 4320, "time": 0.7445400336925667, "position": { "x": 3, @@ -3596,7 +3596,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 4368, "time": 0.7528127007335953, "position": { "x": 3, @@ -3619,7 +3619,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4282, + "noteOrder": 4416, "time": 0.7610853677746238, "position": { "x": 4, @@ -3642,7 +3642,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 4, @@ -3665,7 +3665,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4329, + "noteOrder": 4464, "time": 0.7693580348156523, "position": { "x": 6, @@ -3688,7 +3688,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4375, + "noteOrder": 4512, "time": 0.7776307018566808, "position": { "x": 6, @@ -3711,7 +3711,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 4468, + "noteOrder": 4608, "time": 0.7941760359387379, "position": { "x": 6, @@ -3734,7 +3734,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 6, @@ -3757,7 +3757,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 4515, + "noteOrder": 4656, "time": 0.8024487029797663, "position": { "x": 4, @@ -3780,7 +3780,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4561, + "noteOrder": 4704, "time": 0.8107213700207949, "position": { "x": 4, @@ -3803,7 +3803,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 5027, + "noteOrder": 5184, "time": 0.8934480404310801, "position": { "x": 6, @@ -3826,7 +3826,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 6, @@ -3849,7 +3849,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 5073, + "noteOrder": 5232, "time": 0.9017207074721086, "position": { "x": 4, @@ -3872,7 +3872,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 4, @@ -3895,7 +3895,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5280, "time": 0.9099933745131371, "position": { "x": 6, @@ -3918,7 +3918,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 6, @@ -3941,7 +3941,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 5167, + "noteOrder": 5328, "time": 0.9182660415541657, "position": { "x": 4, @@ -3964,7 +3964,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 4, @@ -3987,7 +3987,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 5213, + "noteOrder": 5376, "time": 0.9265387085951942, "position": { "x": 6, @@ -4010,7 +4010,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 6, @@ -4033,7 +4033,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 5424, "time": 0.9348113756362227, "position": { "x": 4, @@ -4056,7 +4056,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 4, @@ -4079,7 +4079,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 5306, + "noteOrder": 5472, "time": 0.9430840426772512, "position": { "x": 6, @@ -4102,7 +4102,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 5353, + "noteOrder": 5520, "time": 0.9513567097182797, "position": { "x": 6, @@ -4137,7 +4137,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 132, "NPS": "1.88", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/info.json b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/info.json index 5b43587d..2a46b001 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Tropical White/info.json @@ -3,7 +3,7 @@ "SongName": "Tropical White", "SongLength": "109.890454", "SongAuthorName": "\u661f\u5bae\u3068\u3068+TEMPLIME", - "Bpm": "128", + "Bpm": "132", "SongPath": "356.ogg", "CreateTicks": 638053632000000000, "CreateTime": "638053632000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a.json index aea84794..95e1f42a 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "U.S.A. difficulty_1a", "sphereNodes": [ { - "noteOrder": 289, + "noteOrder": 287, "time": 0.04838561135424185, "position": { "x": 3, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 313, + "noteOrder": 311, "time": 0.052417745633762, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 335, "time": 0.05644987991328216, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 358, "time": 0.060482014192802316, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 382, "time": 0.06451414847232247, "position": { "x": 5, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 406, "time": 0.06854628275184262, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 430, "time": 0.07257841703136278, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 457, + "noteOrder": 454, "time": 0.07661055131088292, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 481, + "noteOrder": 478, "time": 0.08064268559040308, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 505, + "noteOrder": 502, "time": 0.08467481986992323, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 554, + "noteOrder": 550, "time": 0.09273908842896354, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 602, + "noteOrder": 597, "time": 0.10080335698800384, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 650, + "noteOrder": 645, "time": 0.10886762554704416, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 674, + "noteOrder": 669, "time": 0.11289975982656432, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 686, + "noteOrder": 681, "time": 0.1149158269663244, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 770, + "noteOrder": 765, "time": 0.12902829694464493, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 891, + "noteOrder": 884, "time": 0.1491889683422457, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 891, + "noteOrder": 884, "time": 0.1491889683422457, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 915, + "noteOrder": 908, "time": 0.15322110262176583, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 939, + "noteOrder": 932, "time": 0.157253236901286, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1348, + "noteOrder": 1338, "time": 0.22579951965312864, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1362, "time": 0.2298316539326488, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1386, "time": 0.23386378821216894, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1420, + "noteOrder": 1410, "time": 0.2378959224916891, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1516, + "noteOrder": 1506, "time": 0.2540244596097697, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1529, "time": 0.25805659388928986, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1553, "time": 0.26208872816881, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1577, "time": 0.26612086244833016, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1613, + "noteOrder": 1601, "time": 0.2701529967278503, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1637, + "noteOrder": 1625, "time": 0.27418513100737046, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1661, + "noteOrder": 1649, "time": 0.2782172652868906, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1673, "time": 0.28224939956641076, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1709, + "noteOrder": 1697, "time": 0.2862815338459309, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1733, + "noteOrder": 1721, "time": 0.2903136681254511, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1744, "time": 0.29434580240497127, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1781, + "noteOrder": 1768, "time": 0.2983779366844914, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1805, + "noteOrder": 1792, "time": 0.3024100709640115, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1901, + "noteOrder": 1888, "time": 0.31853860808209217, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1926, + "noteOrder": 1912, "time": 0.3225707423616123, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1950, + "noteOrder": 1936, "time": 0.32660287664113247, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1974, + "noteOrder": 1960, "time": 0.3306350109206526, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1998, + "noteOrder": 1983, "time": 0.33466714520017277, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2007, "time": 0.3386992794796929, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2046, + "noteOrder": 2031, "time": 0.3427314137592131, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2055, "time": 0.34676354803873327, "position": { "x": 2, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2079, "time": 0.3507956823182534, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2103, "time": 0.35482781659777357, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2142, + "noteOrder": 2127, "time": 0.3588599508772937, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2151, "time": 0.36289208515681387, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2190, + "noteOrder": 2175, "time": 0.366924219436334, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2287, + "noteOrder": 2270, "time": 0.3830527565544147, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 7, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2390, "time": 0.40321342795201537, "position": { "x": 2, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2431, + "noteOrder": 2414, "time": 0.4072455622315355, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2479, + "noteOrder": 2461, "time": 0.4153098307905758, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2485, "time": 0.419341965070096, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2672, + "noteOrder": 2653, "time": 0.44756690502673707, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2820, "time": 0.4757918449833782, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2844, "time": 0.4798239792628983, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2868, "time": 0.48385611354241853, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2892, "time": 0.4878882478219387, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2915, "time": 0.49192038210145883, "position": { "x": 2, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3011, "time": 0.5080489192195394, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3083, "time": 0.5201453220580998, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3107, "time": 0.52417745633762, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3141, + "noteOrder": 3119, "time": 0.5261935234773801, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3153, + "noteOrder": 3130, "time": 0.5282095906171401, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3201, + "noteOrder": 3178, "time": 0.5362738591761804, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3249, + "noteOrder": 3226, "time": 0.5443381277352208, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3297, + "noteOrder": 3274, "time": 0.5524023962942611, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3321, + "noteOrder": 3298, "time": 0.5564345305737812, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3346, + "noteOrder": 3322, "time": 0.5604666648533014, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3658, + "noteOrder": 3632, "time": 0.6128844104870633, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3683, + "noteOrder": 3656, "time": 0.6169165447665836, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3680, "time": 0.6209486790461037, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3755, + "noteOrder": 3728, "time": 0.629012947605144, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3752, "time": 0.6330450818846642, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3803, + "noteOrder": 3776, "time": 0.6370772161641843, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3827, + "noteOrder": 3800, "time": 0.6411093504437045, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3851, + "noteOrder": 3823, "time": 0.6451414847232246, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3847, "time": 0.6491736190027448, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3871, "time": 0.6532057532822649, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3923, + "noteOrder": 3895, "time": 0.6572378875617851, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3943, "time": 0.6653021561208254, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4019, + "noteOrder": 3991, "time": 0.6733664246798657, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4039, "time": 0.6814306932389061, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4116, + "noteOrder": 4086, "time": 0.6894949617979462, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4110, "time": 0.6935270960774665, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4134, "time": 0.6975592303569866, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4158, "time": 0.7015913646365068, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4182, "time": 0.7056234989160269, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4206, "time": 0.7096556331955471, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 4230, "time": 0.7136877674750672, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4254, "time": 0.7177199017545874, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4308, + "noteOrder": 4278, "time": 0.7217520360341075, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4356, + "noteOrder": 4325, "time": 0.7298163045931478, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4405, + "noteOrder": 4373, "time": 0.7378805731521881, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4453, + "noteOrder": 4421, "time": 0.7459448417112284, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4501, + "noteOrder": 4469, "time": 0.7540091102702687, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4525, + "noteOrder": 4493, "time": 0.758041244549789, "position": { "x": 5, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4549, + "noteOrder": 4517, "time": 0.7620733788293091, "position": { "x": 5, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4540, "time": 0.7661055131088294, "position": { "x": 5, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4597, + "noteOrder": 4564, "time": 0.7701376473883494, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4588, "time": 0.7741697816678696, "position": { "x": 5, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4645, + "noteOrder": 4612, "time": 0.7782019159473897, "position": { "x": 5, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4636, "time": 0.78223405022691, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4660, "time": 0.78626618450643, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4742, + "noteOrder": 4708, "time": 0.7943304530654703, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4790, + "noteOrder": 4755, "time": 0.8023947216245106, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4838, + "noteOrder": 4803, "time": 0.8104589901835509, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4886, + "noteOrder": 4851, "time": 0.8185232587425912, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4875, "time": 0.8225553930221113, "position": { "x": 5, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4899, "time": 0.8265875273016317, "position": { "x": 5, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4923, "time": 0.8306196615811516, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4947, "time": 0.834651795860672, "position": { "x": 5, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 4971, "time": 0.838683930140192, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 4994, "time": 0.8427160644197123, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5018, "time": 0.8467481986992323, "position": { "x": 5, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5199, + "noteOrder": 5162, "time": 0.8709410043763532, "position": { "x": 5, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5223, + "noteOrder": 5186, "time": 0.8749731386558735, "position": { "x": 5, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5210, "time": 0.8790052729353935, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5233, "time": 0.8830374072149137, "position": { "x": 5, @@ -2670,7 +2670,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 253, + "noteOrder": 251, "time": 0.042337409934961615, "position": { "x": 2, @@ -2716,7 +2716,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 554, + "noteOrder": 550, "time": 0.09273908842896354, "position": { "x": 5, @@ -2739,7 +2739,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 578, + "noteOrder": 574, "time": 0.0967712227084837, "position": { "x": 7, @@ -2762,7 +2762,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 602, + "noteOrder": 597, "time": 0.10080335698800384, "position": { "x": 7, @@ -2785,7 +2785,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 626, + "noteOrder": 621, "time": 0.104835491267524, "position": { "x": 6, @@ -2808,7 +2808,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 650, + "noteOrder": 645, "time": 0.10886762554704416, "position": { "x": 6, @@ -2831,7 +2831,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 698, + "noteOrder": 693, "time": 0.11693189410608447, "position": { "x": 3, @@ -2854,7 +2854,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 746, + "noteOrder": 741, "time": 0.12499616266512478, "position": { "x": 3, @@ -2877,7 +2877,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 722, + "noteOrder": 717, "time": 0.12096402838560463, "position": { "x": 7, @@ -2900,7 +2900,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 746, + "noteOrder": 741, "time": 0.12499616266512478, "position": { "x": 7, @@ -2923,7 +2923,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 794, + "noteOrder": 789, "time": 0.13306043122416508, "position": { "x": 3, @@ -2946,7 +2946,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 842, + "noteOrder": 836, "time": 0.14112469978320538, "position": { "x": 3, @@ -2969,7 +2969,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 818, + "noteOrder": 812, "time": 0.13709256550368523, "position": { "x": 7, @@ -2992,7 +2992,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 842, + "noteOrder": 836, "time": 0.14112469978320538, "position": { "x": 7, @@ -3015,7 +3015,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 939, + "noteOrder": 932, "time": 0.157253236901286, "position": { "x": 2, @@ -3038,7 +3038,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1059, + "noteOrder": 1051, "time": 0.17741390829888679, "position": { "x": 2, @@ -3061,7 +3061,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 963, + "noteOrder": 956, "time": 0.16128537118080616, "position": { "x": 7, @@ -3084,7 +3084,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 7, @@ -3107,7 +3107,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 3, @@ -3130,7 +3130,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 3, @@ -3153,7 +3153,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1131, + "noteOrder": 1123, "time": 0.18951031113744726, "position": { "x": 7, @@ -3176,7 +3176,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1179, + "noteOrder": 1171, "time": 0.19757457969648756, "position": { "x": 7, @@ -3199,7 +3199,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 7, @@ -3222,7 +3222,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 7, @@ -3245,7 +3245,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1444, + "noteOrder": 1434, "time": 0.24192805677120927, "position": { "x": 3, @@ -3268,7 +3268,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 3, @@ -3291,7 +3291,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1468, + "noteOrder": 1458, "time": 0.24596019105072942, "position": { "x": 7, @@ -3314,7 +3314,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 7, @@ -3337,7 +3337,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1829, + "noteOrder": 1816, "time": 0.30644220524353166, "position": { "x": 3, @@ -3360,7 +3360,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 3, @@ -3383,7 +3383,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1853, + "noteOrder": 1840, "time": 0.31047433952305187, "position": { "x": 7, @@ -3406,7 +3406,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 7, @@ -3429,7 +3429,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2214, + "noteOrder": 2199, "time": 0.37095635371585417, "position": { "x": 3, @@ -3452,7 +3452,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 3, @@ -3475,7 +3475,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2238, + "noteOrder": 2222, "time": 0.3749884879953743, "position": { "x": 7, @@ -3498,7 +3498,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 7, @@ -3521,7 +3521,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 3, @@ -3544,7 +3544,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2479, + "noteOrder": 2461, "time": 0.4153098307905758, "position": { "x": 3, @@ -3567,7 +3567,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2527, + "noteOrder": 2509, "time": 0.4233740993496162, "position": { "x": 7, @@ -3590,7 +3590,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2575, + "noteOrder": 2557, "time": 0.4314383679086565, "position": { "x": 7, @@ -3613,7 +3613,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2551, + "noteOrder": 2533, "time": 0.4274062336291363, "position": { "x": 5, @@ -3636,7 +3636,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2575, + "noteOrder": 2557, "time": 0.4314383679086565, "position": { "x": 5, @@ -3659,7 +3659,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2599, + "noteOrder": 2581, "time": 0.4354705021881766, "position": { "x": 3, @@ -3682,7 +3682,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 3, @@ -3705,7 +3705,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 2605, "time": 0.4395026364676968, "position": { "x": 7, @@ -3728,7 +3728,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 7, @@ -3751,7 +3751,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2720, + "noteOrder": 2700, "time": 0.4556311735857774, "position": { "x": 3, @@ -3774,7 +3774,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2744, + "noteOrder": 2724, "time": 0.4596633078652976, "position": { "x": 3, @@ -3797,7 +3797,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2720, + "noteOrder": 2700, "time": 0.4556311735857774, "position": { "x": 7, @@ -3820,7 +3820,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2768, + "noteOrder": 2748, "time": 0.4636954421448177, "position": { "x": 7, @@ -3843,7 +3843,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2768, + "noteOrder": 2748, "time": 0.4636954421448177, "position": { "x": 3, @@ -3866,7 +3866,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 3, @@ -3889,7 +3889,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 7, @@ -3912,7 +3912,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 7, @@ -3935,7 +3935,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 3, @@ -3958,7 +3958,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2864, + "noteOrder": 2844, "time": 0.4798239792628983, "position": { "x": 3, @@ -3981,7 +3981,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2960, + "noteOrder": 2939, "time": 0.495952516380979, "position": { "x": 4, @@ -4004,7 +4004,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 4, @@ -4027,7 +4027,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 3009, + "noteOrder": 2987, "time": 0.5040167849400193, "position": { "x": 6, @@ -4050,7 +4050,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 6, @@ -4073,7 +4073,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 8, @@ -4096,7 +4096,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 3009, + "noteOrder": 2987, "time": 0.5040167849400193, "position": { "x": 8, @@ -4119,7 +4119,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3057, + "noteOrder": 3035, "time": 0.5120810534990596, "position": { "x": 8, @@ -4142,7 +4142,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 8, @@ -4165,7 +4165,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3177, + "noteOrder": 3154, "time": 0.5322417248966603, "position": { "x": 8, @@ -4188,7 +4188,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3201, + "noteOrder": 3178, "time": 0.5362738591761804, "position": { "x": 8, @@ -4211,7 +4211,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3225, + "noteOrder": 3202, "time": 0.5403059934557006, "position": { "x": 2, @@ -4234,7 +4234,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3297, + "noteOrder": 3274, "time": 0.5524023962942611, "position": { "x": 2, @@ -4257,7 +4257,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3370, + "noteOrder": 3346, "time": 0.5644987991328215, "position": { "x": 7, @@ -4280,7 +4280,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 7, @@ -4303,7 +4303,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3442, + "noteOrder": 3417, "time": 0.576595201971382, "position": { "x": 6, @@ -4326,7 +4326,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3538, + "noteOrder": 3513, "time": 0.5927237390894626, "position": { "x": 6, @@ -4349,7 +4349,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3394, + "noteOrder": 3369, "time": 0.5685309334123417, "position": { "x": 3, @@ -4372,7 +4372,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 3, @@ -4395,7 +4395,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 3442, + "noteOrder": 3417, "time": 0.576595201971382, "position": { "x": 4, @@ -4418,7 +4418,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 3634, + "noteOrder": 3608, "time": 0.6088522762075432, "position": { "x": 4, @@ -4441,7 +4441,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3537, "time": 0.5967558733689828, "position": { "x": 7, @@ -4464,7 +4464,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3634, + "noteOrder": 3608, "time": 0.6088522762075432, "position": { "x": 6, @@ -4487,7 +4487,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3947, + "noteOrder": 3919, "time": 0.6612700218413052, "position": { "x": 7, @@ -4510,7 +4510,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3971, + "noteOrder": 3943, "time": 0.6653021561208254, "position": { "x": 7, @@ -4533,7 +4533,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 3995, + "noteOrder": 3967, "time": 0.6693342904003455, "position": { "x": 4, @@ -4556,7 +4556,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4019, + "noteOrder": 3991, "time": 0.6733664246798657, "position": { "x": 4, @@ -4579,7 +4579,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 4044, + "noteOrder": 4015, "time": 0.6773985589593858, "position": { "x": 6, @@ -4602,7 +4602,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 4068, + "noteOrder": 4039, "time": 0.6814306932389061, "position": { "x": 6, @@ -4625,7 +4625,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4092, + "noteOrder": 4062, "time": 0.6854628275184262, "position": { "x": 4, @@ -4648,7 +4648,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4116, + "noteOrder": 4086, "time": 0.6894949617979462, "position": { "x": 4, @@ -4671,7 +4671,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4332, + "noteOrder": 4301, "time": 0.7257841703136277, "position": { "x": 7, @@ -4694,7 +4694,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 4325, "time": 0.7298163045931478, "position": { "x": 7, @@ -4717,7 +4717,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 4381, + "noteOrder": 4349, "time": 0.733848438872668, "position": { "x": 4, @@ -4740,7 +4740,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 4405, + "noteOrder": 4373, "time": 0.7378805731521881, "position": { "x": 4, @@ -4763,7 +4763,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4429, + "noteOrder": 4397, "time": 0.7419127074317083, "position": { "x": 6, @@ -4786,7 +4786,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4453, + "noteOrder": 4421, "time": 0.7459448417112284, "position": { "x": 6, @@ -4809,7 +4809,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4477, + "noteOrder": 4445, "time": 0.7499769759907486, "position": { "x": 4, @@ -4832,7 +4832,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4501, + "noteOrder": 4469, "time": 0.7540091102702687, "position": { "x": 4, @@ -4855,7 +4855,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4717, + "noteOrder": 4684, "time": 0.7902983187859502, "position": { "x": 7, @@ -4878,7 +4878,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4742, + "noteOrder": 4708, "time": 0.7943304530654703, "position": { "x": 7, @@ -4901,7 +4901,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4766, + "noteOrder": 4732, "time": 0.7983625873449904, "position": { "x": 4, @@ -4924,7 +4924,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4790, + "noteOrder": 4755, "time": 0.8023947216245106, "position": { "x": 4, @@ -4947,7 +4947,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4814, + "noteOrder": 4779, "time": 0.8064268559040307, "position": { "x": 6, @@ -4970,7 +4970,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4838, + "noteOrder": 4803, "time": 0.8104589901835509, "position": { "x": 6, @@ -4993,7 +4993,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4862, + "noteOrder": 4827, "time": 0.814491124463071, "position": { "x": 4, @@ -5016,7 +5016,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4886, + "noteOrder": 4851, "time": 0.8185232587425912, "position": { "x": 4, @@ -5039,7 +5039,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5079, + "noteOrder": 5042, "time": 0.8507803329787526, "position": { "x": 5, @@ -5062,7 +5062,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5175, + "noteOrder": 5138, "time": 0.8669088700968332, "position": { "x": 5, @@ -5085,7 +5085,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 5103, + "noteOrder": 5066, "time": 0.8548124672582726, "position": { "x": 8, @@ -5108,7 +5108,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 5151, + "noteOrder": 5114, "time": 0.862876735817313, "position": { "x": 8, @@ -5131,7 +5131,7 @@ { "lineGroupId": 203, "indexInLine": 3, - "noteOrder": 5175, + "noteOrder": 5138, "time": 0.8669088700968332, "position": { "x": 6, @@ -5154,7 +5154,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5295, + "noteOrder": 5257, "time": 0.8870695414944338, "position": { "x": 6, @@ -5177,7 +5177,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5319, + "noteOrder": 5281, "time": 0.891101675773954, "position": { "x": 6, @@ -5200,7 +5200,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 5295, + "noteOrder": 5257, "time": 0.8870695414944338, "position": { "x": 4, @@ -5223,7 +5223,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 5319, + "noteOrder": 5281, "time": 0.891101675773954, "position": { "x": 4, @@ -5246,7 +5246,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 5343, + "noteOrder": 5305, "time": 0.8951338100534741, "position": { "x": 4, @@ -5269,7 +5269,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 5367, + "noteOrder": 5329, "time": 0.8991659443329945, "position": { "x": 4, @@ -5292,7 +5292,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 5343, + "noteOrder": 5305, "time": 0.8951338100534741, "position": { "x": 6, @@ -5315,7 +5315,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 5367, + "noteOrder": 5329, "time": 0.8991659443329945, "position": { "x": 6, @@ -5338,7 +5338,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 5391, + "noteOrder": 5353, "time": 0.9031980786125146, "position": { "x": 6, @@ -5361,7 +5361,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 5425, "time": 0.915294481451075, "position": { "x": 6, @@ -5384,7 +5384,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 5391, + "noteOrder": 5353, "time": 0.9031980786125146, "position": { "x": 4, @@ -5407,7 +5407,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 5425, "time": 0.915294481451075, "position": { "x": 4, @@ -5430,7 +5430,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5488, + "noteOrder": 5448, "time": 0.9193266157305952, "position": { "x": 6, @@ -5453,7 +5453,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5512, + "noteOrder": 5472, "time": 0.9233587500101152, "position": { "x": 6, @@ -5476,7 +5476,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 5488, + "noteOrder": 5448, "time": 0.9193266157305952, "position": { "x": 4, @@ -5499,7 +5499,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 5512, + "noteOrder": 5472, "time": 0.9233587500101152, "position": { "x": 4, @@ -5522,7 +5522,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5536, + "noteOrder": 5496, "time": 0.9273908842896355, "position": { "x": 4, @@ -5545,7 +5545,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5560, + "noteOrder": 5520, "time": 0.9314230185691555, "position": { "x": 4, @@ -5568,7 +5568,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5536, + "noteOrder": 5496, "time": 0.9273908842896355, "position": { "x": 6, @@ -5591,7 +5591,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5560, + "noteOrder": 5520, "time": 0.9314230185691555, "position": { "x": 6, @@ -5614,7 +5614,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5584, + "noteOrder": 5544, "time": 0.9354551528486758, "position": { "x": 4, @@ -5637,7 +5637,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 4, @@ -5660,7 +5660,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5584, + "noteOrder": 5544, "time": 0.9354551528486758, "position": { "x": 6, @@ -5683,7 +5683,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5656, + "noteOrder": 5616, "time": 0.9475515556872361, "position": { "x": 6, @@ -5706,7 +5706,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 5680, + "noteOrder": 5640, "time": 0.9515836899667564, "position": { "x": 6, @@ -5729,7 +5729,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 6, @@ -5752,7 +5752,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 579.5, + "noteOrder": 575.5, "time": 0.0967712227084837, "position": { "x": 5, @@ -5780,7 +5780,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 627.5, + "noteOrder": 622.5, "time": 0.104835491267524, "position": { "x": 5, @@ -5808,7 +5808,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 747.5, + "noteOrder": 742.5, "time": 0.12499616266512478, "position": { "x": 5, @@ -5836,7 +5836,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 843.5, + "noteOrder": 837.5, "time": 0.14112469978320538, "position": { "x": 5, @@ -5864,7 +5864,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1012.5, + "noteOrder": 1005.5, "time": 0.16934963973984646, "position": { "x": 5, @@ -5892,7 +5892,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1060.5, + "noteOrder": 1052.5, "time": 0.17741390829888679, "position": { "x": 5, @@ -5920,7 +5920,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1156.5, + "noteOrder": 1148.5, "time": 0.1935424454169674, "position": { "x": 5, @@ -5948,7 +5948,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1253.5, + "noteOrder": 1244.5, "time": 0.209670982535048, "position": { "x": 5, @@ -5976,7 +5976,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1301.5, + "noteOrder": 1291.5, "time": 0.2177352510940883, "position": { "x": 5, @@ -6004,7 +6004,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1493.5, + "noteOrder": 1483.5, "time": 0.24999232533024957, "position": { "x": 5, @@ -6032,7 +6032,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1878.5, + "noteOrder": 1865.5, "time": 0.314506473802572, "position": { "x": 5, @@ -6060,7 +6060,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2263.5, + "noteOrder": 2247.5, "time": 0.3790206222748945, "position": { "x": 5, @@ -6088,7 +6088,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2649.5, + "noteOrder": 2630.5, "time": 0.4435347707472169, "position": { "x": 5, @@ -6116,7 +6116,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2708.0, + "noteOrder": 2688.0, "time": 0.4515990393062573, "position": { "x": 5, @@ -6144,7 +6144,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3274.5, + "noteOrder": 3251.5, "time": 0.5483702620147409, "position": { "x": 5, @@ -6172,7 +6172,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3419.5, + "noteOrder": 3394.5, "time": 0.5725630676918618, "position": { "x": 5, @@ -6200,7 +6200,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3467.5, + "noteOrder": 3442.5, "time": 0.5806273362509022, "position": { "x": 5, @@ -6228,7 +6228,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3491.5, + "noteOrder": 3466.5, "time": 0.5846594705304223, "position": { "x": 5, @@ -6256,7 +6256,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3515.5, + "noteOrder": 3490.5, "time": 0.5886916048099425, "position": { "x": 5, @@ -6284,7 +6284,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3539.5, + "noteOrder": 3514.5, "time": 0.5927237390894626, "position": { "x": 5, @@ -6312,7 +6312,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5007.5, + "noteOrder": 4972.5, "time": 0.838683930140192, "position": { "x": 5, @@ -6340,7 +6340,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5031.5, + "noteOrder": 4995.5, "time": 0.8427160644197123, "position": { "x": 5, @@ -6368,7 +6368,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5055.5, + "noteOrder": 5019.5, "time": 0.8467481986992323, "position": { "x": 5, @@ -6396,7 +6396,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5080.5, + "noteOrder": 5043.5, "time": 0.8507803329787526, "position": { "x": 5, @@ -6424,7 +6424,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5296.5, + "noteOrder": 5258.5, "time": 0.8870695414944338, "position": { "x": 5, @@ -6452,7 +6452,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5344.5, + "noteOrder": 5306.5, "time": 0.8951338100534741, "position": { "x": 5, @@ -6480,7 +6480,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5392.5, + "noteOrder": 5354.5, "time": 0.9031980786125146, "position": { "x": 5, @@ -6508,7 +6508,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5416.5, + "noteOrder": 5378.5, "time": 0.9072302128920348, "position": { "x": 5, @@ -6536,7 +6536,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5441.5, + "noteOrder": 5402.5, "time": 0.9112623471715549, "position": { "x": 5, @@ -6564,7 +6564,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5489.5, + "noteOrder": 5449.5, "time": 0.9193266157305952, "position": { "x": 5, @@ -6592,7 +6592,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5537.5, + "noteOrder": 5497.5, "time": 0.9273908842896355, "position": { "x": 5, @@ -6620,7 +6620,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5585.5, + "noteOrder": 5545.5, "time": 0.9354551528486758, "position": { "x": 5, @@ -6648,7 +6648,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5609.5, + "noteOrder": 5569.5, "time": 0.9394872871281958, "position": { "x": 5, @@ -6676,7 +6676,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5633.5, + "noteOrder": 5593.5, "time": 0.943519421407716, "position": { "x": 5, @@ -6704,7 +6704,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5681.5, + "noteOrder": 5641.5, "time": 0.9515836899667564, "position": { "x": 5, @@ -6745,7 +6745,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 140, + "BPM": 139, "NPS": "2.83", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a_blockless.json index 6eb8334a..abcec566 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "U.S.A. difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 289, + "noteOrder": 287, "time": 0.04838561135424185, "position": { "x": 3, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 313, + "noteOrder": 311, "time": 0.052417745633762, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 335, "time": 0.05644987991328216, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 358, "time": 0.060482014192802316, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 382, "time": 0.06451414847232247, "position": { "x": 5, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 406, "time": 0.06854628275184262, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 430, "time": 0.07257841703136278, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 457, + "noteOrder": 454, "time": 0.07661055131088292, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 481, + "noteOrder": 478, "time": 0.08064268559040308, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 505, + "noteOrder": 502, "time": 0.08467481986992323, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 554, + "noteOrder": 550, "time": 0.09273908842896354, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 602, + "noteOrder": 597, "time": 0.10080335698800384, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 650, + "noteOrder": 645, "time": 0.10886762554704416, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 674, + "noteOrder": 669, "time": 0.11289975982656432, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 686, + "noteOrder": 681, "time": 0.1149158269663244, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 770, + "noteOrder": 765, "time": 0.12902829694464493, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 891, + "noteOrder": 884, "time": 0.1491889683422457, "position": { "x": 5, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 891, + "noteOrder": 884, "time": 0.1491889683422457, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 915, + "noteOrder": 908, "time": 0.15322110262176583, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 939, + "noteOrder": 932, "time": 0.157253236901286, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1348, + "noteOrder": 1338, "time": 0.22579951965312864, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1362, "time": 0.2298316539326488, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1386, "time": 0.23386378821216894, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1420, + "noteOrder": 1410, "time": 0.2378959224916891, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1516, + "noteOrder": 1506, "time": 0.2540244596097697, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1529, "time": 0.25805659388928986, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1564, + "noteOrder": 1553, "time": 0.26208872816881, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1577, "time": 0.26612086244833016, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1613, + "noteOrder": 1601, "time": 0.2701529967278503, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1637, + "noteOrder": 1625, "time": 0.27418513100737046, "position": { "x": 7, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1661, + "noteOrder": 1649, "time": 0.2782172652868906, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1673, "time": 0.28224939956641076, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1709, + "noteOrder": 1697, "time": 0.2862815338459309, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1733, + "noteOrder": 1721, "time": 0.2903136681254511, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1744, "time": 0.29434580240497127, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1781, + "noteOrder": 1768, "time": 0.2983779366844914, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1805, + "noteOrder": 1792, "time": 0.3024100709640115, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1901, + "noteOrder": 1888, "time": 0.31853860808209217, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1926, + "noteOrder": 1912, "time": 0.3225707423616123, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1950, + "noteOrder": 1936, "time": 0.32660287664113247, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1974, + "noteOrder": 1960, "time": 0.3306350109206526, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1998, + "noteOrder": 1983, "time": 0.33466714520017277, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2007, "time": 0.3386992794796929, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2046, + "noteOrder": 2031, "time": 0.3427314137592131, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2055, "time": 0.34676354803873327, "position": { "x": 2, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2094, + "noteOrder": 2079, "time": 0.3507956823182534, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2103, "time": 0.35482781659777357, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2142, + "noteOrder": 2127, "time": 0.3588599508772937, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2151, "time": 0.36289208515681387, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2190, + "noteOrder": 2175, "time": 0.366924219436334, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2287, + "noteOrder": 2270, "time": 0.3830527565544147, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 7, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 7, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2407, + "noteOrder": 2390, "time": 0.40321342795201537, "position": { "x": 2, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2431, + "noteOrder": 2414, "time": 0.4072455622315355, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2479, + "noteOrder": 2461, "time": 0.4153098307905758, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2485, "time": 0.419341965070096, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2672, + "noteOrder": 2653, "time": 0.44756690502673707, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2820, "time": 0.4757918449833782, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2864, + "noteOrder": 2844, "time": 0.4798239792628983, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2868, "time": 0.48385611354241853, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2892, "time": 0.4878882478219387, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2915, "time": 0.49192038210145883, "position": { "x": 2, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3033, + "noteOrder": 3011, "time": 0.5080489192195394, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3105, + "noteOrder": 3083, "time": 0.5201453220580998, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3107, "time": 0.52417745633762, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3141, + "noteOrder": 3119, "time": 0.5261935234773801, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3153, + "noteOrder": 3130, "time": 0.5282095906171401, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3201, + "noteOrder": 3178, "time": 0.5362738591761804, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3249, + "noteOrder": 3226, "time": 0.5443381277352208, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3297, + "noteOrder": 3274, "time": 0.5524023962942611, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3321, + "noteOrder": 3298, "time": 0.5564345305737812, "position": { "x": 7, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3346, + "noteOrder": 3322, "time": 0.5604666648533014, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3658, + "noteOrder": 3632, "time": 0.6128844104870633, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3683, + "noteOrder": 3656, "time": 0.6169165447665836, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3680, "time": 0.6209486790461037, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3755, + "noteOrder": 3728, "time": 0.629012947605144, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3752, "time": 0.6330450818846642, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3803, + "noteOrder": 3776, "time": 0.6370772161641843, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3827, + "noteOrder": 3800, "time": 0.6411093504437045, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3851, + "noteOrder": 3823, "time": 0.6451414847232246, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3847, "time": 0.6491736190027448, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3871, "time": 0.6532057532822649, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3923, + "noteOrder": 3895, "time": 0.6572378875617851, "position": { "x": 5, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3971, + "noteOrder": 3943, "time": 0.6653021561208254, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4019, + "noteOrder": 3991, "time": 0.6733664246798657, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4068, + "noteOrder": 4039, "time": 0.6814306932389061, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4116, + "noteOrder": 4086, "time": 0.6894949617979462, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4110, "time": 0.6935270960774665, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4134, "time": 0.6975592303569866, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4158, "time": 0.7015913646365068, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4182, "time": 0.7056234989160269, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4206, "time": 0.7096556331955471, "position": { "x": 5, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 4230, "time": 0.7136877674750672, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4254, "time": 0.7177199017545874, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4308, + "noteOrder": 4278, "time": 0.7217520360341075, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4356, + "noteOrder": 4325, "time": 0.7298163045931478, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4405, + "noteOrder": 4373, "time": 0.7378805731521881, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4453, + "noteOrder": 4421, "time": 0.7459448417112284, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4501, + "noteOrder": 4469, "time": 0.7540091102702687, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4525, + "noteOrder": 4493, "time": 0.758041244549789, "position": { "x": 5, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4549, + "noteOrder": 4517, "time": 0.7620733788293091, "position": { "x": 5, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4540, "time": 0.7661055131088294, "position": { "x": 5, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4597, + "noteOrder": 4564, "time": 0.7701376473883494, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4588, "time": 0.7741697816678696, "position": { "x": 5, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4645, + "noteOrder": 4612, "time": 0.7782019159473897, "position": { "x": 5, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4636, "time": 0.78223405022691, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4660, "time": 0.78626618450643, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4742, + "noteOrder": 4708, "time": 0.7943304530654703, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4790, + "noteOrder": 4755, "time": 0.8023947216245106, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4838, + "noteOrder": 4803, "time": 0.8104589901835509, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4886, + "noteOrder": 4851, "time": 0.8185232587425912, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4875, "time": 0.8225553930221113, "position": { "x": 5, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4899, "time": 0.8265875273016317, "position": { "x": 5, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4923, "time": 0.8306196615811516, "position": { "x": 5, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4947, "time": 0.834651795860672, "position": { "x": 5, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 4971, "time": 0.838683930140192, "position": { "x": 5, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 4994, "time": 0.8427160644197123, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5018, "time": 0.8467481986992323, "position": { "x": 5, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5199, + "noteOrder": 5162, "time": 0.8709410043763532, "position": { "x": 5, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5223, + "noteOrder": 5186, "time": 0.8749731386558735, "position": { "x": 5, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5210, "time": 0.8790052729353935, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5233, "time": 0.8830374072149137, "position": { "x": 5, @@ -2670,7 +2670,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 253, + "noteOrder": 251, "time": 0.042337409934961615, "position": { "x": 2, @@ -2716,7 +2716,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 554, + "noteOrder": 550, "time": 0.09273908842896354, "position": { "x": 5, @@ -2739,7 +2739,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 578, + "noteOrder": 574, "time": 0.0967712227084837, "position": { "x": 7, @@ -2762,7 +2762,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 602, + "noteOrder": 597, "time": 0.10080335698800384, "position": { "x": 7, @@ -2785,7 +2785,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 626, + "noteOrder": 621, "time": 0.104835491267524, "position": { "x": 6, @@ -2808,7 +2808,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 650, + "noteOrder": 645, "time": 0.10886762554704416, "position": { "x": 6, @@ -2831,7 +2831,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 698, + "noteOrder": 693, "time": 0.11693189410608447, "position": { "x": 3, @@ -2854,7 +2854,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 746, + "noteOrder": 741, "time": 0.12499616266512478, "position": { "x": 3, @@ -2877,7 +2877,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 722, + "noteOrder": 717, "time": 0.12096402838560463, "position": { "x": 7, @@ -2900,7 +2900,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 746, + "noteOrder": 741, "time": 0.12499616266512478, "position": { "x": 7, @@ -2923,7 +2923,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 794, + "noteOrder": 789, "time": 0.13306043122416508, "position": { "x": 3, @@ -2946,7 +2946,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 842, + "noteOrder": 836, "time": 0.14112469978320538, "position": { "x": 3, @@ -2969,7 +2969,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 818, + "noteOrder": 812, "time": 0.13709256550368523, "position": { "x": 7, @@ -2992,7 +2992,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 842, + "noteOrder": 836, "time": 0.14112469978320538, "position": { "x": 7, @@ -3015,7 +3015,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 939, + "noteOrder": 932, "time": 0.157253236901286, "position": { "x": 2, @@ -3038,7 +3038,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1059, + "noteOrder": 1051, "time": 0.17741390829888679, "position": { "x": 2, @@ -3061,7 +3061,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 963, + "noteOrder": 956, "time": 0.16128537118080616, "position": { "x": 7, @@ -3084,7 +3084,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 7, @@ -3107,7 +3107,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 3, @@ -3130,7 +3130,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 3, @@ -3153,7 +3153,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1131, + "noteOrder": 1123, "time": 0.18951031113744726, "position": { "x": 7, @@ -3176,7 +3176,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1179, + "noteOrder": 1171, "time": 0.19757457969648756, "position": { "x": 7, @@ -3199,7 +3199,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 7, @@ -3222,7 +3222,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 7, @@ -3245,7 +3245,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1444, + "noteOrder": 1434, "time": 0.24192805677120927, "position": { "x": 3, @@ -3268,7 +3268,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 3, @@ -3291,7 +3291,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1468, + "noteOrder": 1458, "time": 0.24596019105072942, "position": { "x": 7, @@ -3314,7 +3314,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 7, @@ -3337,7 +3337,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1829, + "noteOrder": 1816, "time": 0.30644220524353166, "position": { "x": 3, @@ -3360,7 +3360,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 3, @@ -3383,7 +3383,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1853, + "noteOrder": 1840, "time": 0.31047433952305187, "position": { "x": 7, @@ -3406,7 +3406,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 7, @@ -3429,7 +3429,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2214, + "noteOrder": 2199, "time": 0.37095635371585417, "position": { "x": 3, @@ -3452,7 +3452,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 3, @@ -3475,7 +3475,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2238, + "noteOrder": 2222, "time": 0.3749884879953743, "position": { "x": 7, @@ -3498,7 +3498,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 7, @@ -3521,7 +3521,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 3, @@ -3544,7 +3544,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2479, + "noteOrder": 2461, "time": 0.4153098307905758, "position": { "x": 3, @@ -3567,7 +3567,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2527, + "noteOrder": 2509, "time": 0.4233740993496162, "position": { "x": 7, @@ -3590,7 +3590,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2575, + "noteOrder": 2557, "time": 0.4314383679086565, "position": { "x": 7, @@ -3613,7 +3613,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2551, + "noteOrder": 2533, "time": 0.4274062336291363, "position": { "x": 5, @@ -3636,7 +3636,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2575, + "noteOrder": 2557, "time": 0.4314383679086565, "position": { "x": 5, @@ -3659,7 +3659,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2599, + "noteOrder": 2581, "time": 0.4354705021881766, "position": { "x": 3, @@ -3682,7 +3682,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 3, @@ -3705,7 +3705,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 2605, "time": 0.4395026364676968, "position": { "x": 7, @@ -3728,7 +3728,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 7, @@ -3751,7 +3751,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2720, + "noteOrder": 2700, "time": 0.4556311735857774, "position": { "x": 3, @@ -3774,7 +3774,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2744, + "noteOrder": 2724, "time": 0.4596633078652976, "position": { "x": 3, @@ -3797,7 +3797,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2720, + "noteOrder": 2700, "time": 0.4556311735857774, "position": { "x": 7, @@ -3820,7 +3820,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2768, + "noteOrder": 2748, "time": 0.4636954421448177, "position": { "x": 7, @@ -3843,7 +3843,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2768, + "noteOrder": 2748, "time": 0.4636954421448177, "position": { "x": 3, @@ -3866,7 +3866,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 3, @@ -3889,7 +3889,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 7, @@ -3912,7 +3912,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 7, @@ -3935,7 +3935,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 3, @@ -3958,7 +3958,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2864, + "noteOrder": 2844, "time": 0.4798239792628983, "position": { "x": 3, @@ -3981,7 +3981,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2960, + "noteOrder": 2939, "time": 0.495952516380979, "position": { "x": 4, @@ -4004,7 +4004,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 4, @@ -4027,7 +4027,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 3009, + "noteOrder": 2987, "time": 0.5040167849400193, "position": { "x": 6, @@ -4050,7 +4050,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 6, @@ -4073,7 +4073,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 8, @@ -4096,7 +4096,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 3009, + "noteOrder": 2987, "time": 0.5040167849400193, "position": { "x": 8, @@ -4119,7 +4119,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3057, + "noteOrder": 3035, "time": 0.5120810534990596, "position": { "x": 8, @@ -4142,7 +4142,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 8, @@ -4165,7 +4165,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3177, + "noteOrder": 3154, "time": 0.5322417248966603, "position": { "x": 8, @@ -4188,7 +4188,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3201, + "noteOrder": 3178, "time": 0.5362738591761804, "position": { "x": 8, @@ -4211,7 +4211,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3225, + "noteOrder": 3202, "time": 0.5403059934557006, "position": { "x": 2, @@ -4234,7 +4234,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3297, + "noteOrder": 3274, "time": 0.5524023962942611, "position": { "x": 2, @@ -4257,7 +4257,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3370, + "noteOrder": 3346, "time": 0.5644987991328215, "position": { "x": 7, @@ -4280,7 +4280,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 7, @@ -4303,7 +4303,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3442, + "noteOrder": 3417, "time": 0.576595201971382, "position": { "x": 6, @@ -4326,7 +4326,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3538, + "noteOrder": 3513, "time": 0.5927237390894626, "position": { "x": 6, @@ -4349,7 +4349,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 3394, + "noteOrder": 3369, "time": 0.5685309334123417, "position": { "x": 3, @@ -4372,7 +4372,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 3, @@ -4395,7 +4395,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 3442, + "noteOrder": 3417, "time": 0.576595201971382, "position": { "x": 4, @@ -4418,7 +4418,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 3634, + "noteOrder": 3608, "time": 0.6088522762075432, "position": { "x": 4, @@ -4441,7 +4441,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3537, "time": 0.5967558733689828, "position": { "x": 7, @@ -4464,7 +4464,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3634, + "noteOrder": 3608, "time": 0.6088522762075432, "position": { "x": 6, @@ -4487,7 +4487,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3947, + "noteOrder": 3919, "time": 0.6612700218413052, "position": { "x": 7, @@ -4510,7 +4510,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3971, + "noteOrder": 3943, "time": 0.6653021561208254, "position": { "x": 7, @@ -4533,7 +4533,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 3995, + "noteOrder": 3967, "time": 0.6693342904003455, "position": { "x": 4, @@ -4556,7 +4556,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4019, + "noteOrder": 3991, "time": 0.6733664246798657, "position": { "x": 4, @@ -4579,7 +4579,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 4044, + "noteOrder": 4015, "time": 0.6773985589593858, "position": { "x": 6, @@ -4602,7 +4602,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 4068, + "noteOrder": 4039, "time": 0.6814306932389061, "position": { "x": 6, @@ -4625,7 +4625,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 4092, + "noteOrder": 4062, "time": 0.6854628275184262, "position": { "x": 4, @@ -4648,7 +4648,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 4116, + "noteOrder": 4086, "time": 0.6894949617979462, "position": { "x": 4, @@ -4671,7 +4671,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4332, + "noteOrder": 4301, "time": 0.7257841703136277, "position": { "x": 7, @@ -4694,7 +4694,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 4325, "time": 0.7298163045931478, "position": { "x": 7, @@ -4717,7 +4717,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 4381, + "noteOrder": 4349, "time": 0.733848438872668, "position": { "x": 4, @@ -4740,7 +4740,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 4405, + "noteOrder": 4373, "time": 0.7378805731521881, "position": { "x": 4, @@ -4763,7 +4763,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4429, + "noteOrder": 4397, "time": 0.7419127074317083, "position": { "x": 6, @@ -4786,7 +4786,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4453, + "noteOrder": 4421, "time": 0.7459448417112284, "position": { "x": 6, @@ -4809,7 +4809,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4477, + "noteOrder": 4445, "time": 0.7499769759907486, "position": { "x": 4, @@ -4832,7 +4832,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4501, + "noteOrder": 4469, "time": 0.7540091102702687, "position": { "x": 4, @@ -4855,7 +4855,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4717, + "noteOrder": 4684, "time": 0.7902983187859502, "position": { "x": 7, @@ -4878,7 +4878,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4742, + "noteOrder": 4708, "time": 0.7943304530654703, "position": { "x": 7, @@ -4901,7 +4901,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4766, + "noteOrder": 4732, "time": 0.7983625873449904, "position": { "x": 4, @@ -4924,7 +4924,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4790, + "noteOrder": 4755, "time": 0.8023947216245106, "position": { "x": 4, @@ -4947,7 +4947,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4814, + "noteOrder": 4779, "time": 0.8064268559040307, "position": { "x": 6, @@ -4970,7 +4970,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4838, + "noteOrder": 4803, "time": 0.8104589901835509, "position": { "x": 6, @@ -4993,7 +4993,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 4862, + "noteOrder": 4827, "time": 0.814491124463071, "position": { "x": 4, @@ -5016,7 +5016,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 4886, + "noteOrder": 4851, "time": 0.8185232587425912, "position": { "x": 4, @@ -5039,7 +5039,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5079, + "noteOrder": 5042, "time": 0.8507803329787526, "position": { "x": 5, @@ -5062,7 +5062,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5175, + "noteOrder": 5138, "time": 0.8669088700968332, "position": { "x": 5, @@ -5085,7 +5085,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 5103, + "noteOrder": 5066, "time": 0.8548124672582726, "position": { "x": 8, @@ -5108,7 +5108,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 5151, + "noteOrder": 5114, "time": 0.862876735817313, "position": { "x": 8, @@ -5131,7 +5131,7 @@ { "lineGroupId": 203, "indexInLine": 3, - "noteOrder": 5175, + "noteOrder": 5138, "time": 0.8669088700968332, "position": { "x": 6, @@ -5154,7 +5154,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5295, + "noteOrder": 5257, "time": 0.8870695414944338, "position": { "x": 6, @@ -5177,7 +5177,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5319, + "noteOrder": 5281, "time": 0.891101675773954, "position": { "x": 6, @@ -5200,7 +5200,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 5295, + "noteOrder": 5257, "time": 0.8870695414944338, "position": { "x": 4, @@ -5223,7 +5223,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 5319, + "noteOrder": 5281, "time": 0.891101675773954, "position": { "x": 4, @@ -5246,7 +5246,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 5343, + "noteOrder": 5305, "time": 0.8951338100534741, "position": { "x": 4, @@ -5269,7 +5269,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 5367, + "noteOrder": 5329, "time": 0.8991659443329945, "position": { "x": 4, @@ -5292,7 +5292,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 5343, + "noteOrder": 5305, "time": 0.8951338100534741, "position": { "x": 6, @@ -5315,7 +5315,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 5367, + "noteOrder": 5329, "time": 0.8991659443329945, "position": { "x": 6, @@ -5338,7 +5338,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 5391, + "noteOrder": 5353, "time": 0.9031980786125146, "position": { "x": 6, @@ -5361,7 +5361,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 5425, "time": 0.915294481451075, "position": { "x": 6, @@ -5384,7 +5384,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 5391, + "noteOrder": 5353, "time": 0.9031980786125146, "position": { "x": 4, @@ -5407,7 +5407,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 5425, "time": 0.915294481451075, "position": { "x": 4, @@ -5430,7 +5430,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5488, + "noteOrder": 5448, "time": 0.9193266157305952, "position": { "x": 6, @@ -5453,7 +5453,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5512, + "noteOrder": 5472, "time": 0.9233587500101152, "position": { "x": 6, @@ -5476,7 +5476,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 5488, + "noteOrder": 5448, "time": 0.9193266157305952, "position": { "x": 4, @@ -5499,7 +5499,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 5512, + "noteOrder": 5472, "time": 0.9233587500101152, "position": { "x": 4, @@ -5522,7 +5522,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5536, + "noteOrder": 5496, "time": 0.9273908842896355, "position": { "x": 4, @@ -5545,7 +5545,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5560, + "noteOrder": 5520, "time": 0.9314230185691555, "position": { "x": 4, @@ -5568,7 +5568,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5536, + "noteOrder": 5496, "time": 0.9273908842896355, "position": { "x": 6, @@ -5591,7 +5591,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5560, + "noteOrder": 5520, "time": 0.9314230185691555, "position": { "x": 6, @@ -5614,7 +5614,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5584, + "noteOrder": 5544, "time": 0.9354551528486758, "position": { "x": 4, @@ -5637,7 +5637,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 4, @@ -5660,7 +5660,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5584, + "noteOrder": 5544, "time": 0.9354551528486758, "position": { "x": 6, @@ -5683,7 +5683,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5656, + "noteOrder": 5616, "time": 0.9475515556872361, "position": { "x": 6, @@ -5706,7 +5706,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 5680, + "noteOrder": 5640, "time": 0.9515836899667564, "position": { "x": 6, @@ -5729,7 +5729,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 6, @@ -5764,7 +5764,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 140, + "BPM": 139, "NPS": "2.83", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b.json index e23bf844..40c0923d 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "U.S.A. difficulty_1b", "sphereNodes": [ { - "noteOrder": 289, + "noteOrder": 287, "time": 0.04838561135424185, "position": { "x": 2, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 335, "time": 0.05644987991328216, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 382, "time": 0.06451414847232247, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 430, "time": 0.07257841703136278, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 481, + "noteOrder": 478, "time": 0.08064268559040308, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 8, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 674, + "noteOrder": 669, "time": 0.11289975982656432, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 722, + "noteOrder": 717, "time": 0.12096402838560463, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 770, + "noteOrder": 765, "time": 0.12902829694464493, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 794, + "noteOrder": 789, "time": 0.13306043122416508, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 812, "time": 0.13709256550368523, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 915, + "noteOrder": 908, "time": 0.15322110262176583, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1348, + "noteOrder": 1338, "time": 0.22579951965312864, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1362, "time": 0.2298316539326488, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1386, "time": 0.23386378821216894, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1529, "time": 0.25805659388928986, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1577, "time": 0.26612086244833016, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1637, + "noteOrder": 1625, "time": 0.27418513100737046, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1673, "time": 0.28224939956641076, "position": { "x": 2, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1733, + "noteOrder": 1721, "time": 0.2903136681254511, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1744, "time": 0.29434580240497127, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1781, + "noteOrder": 1768, "time": 0.2983779366844914, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1926, + "noteOrder": 1912, "time": 0.3225707423616123, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1974, + "noteOrder": 1960, "time": 0.3306350109206526, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2007, "time": 0.3386992794796929, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2055, "time": 0.34676354803873327, "position": { "x": 2, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2103, "time": 0.35482781659777357, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2142, + "noteOrder": 2127, "time": 0.3588599508772937, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2151, "time": 0.36289208515681387, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2485, "time": 0.419341965070096, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2527, + "noteOrder": 2509, "time": 0.4233740993496162, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2551, + "noteOrder": 2533, "time": 0.4274062336291363, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2820, "time": 0.4757918449833782, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2868, "time": 0.48385611354241853, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2892, "time": 0.4878882478219387, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2915, "time": 0.49192038210145883, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2939, "time": 0.495952516380979, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 8, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3107, "time": 0.52417745633762, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3177, + "noteOrder": 3154, "time": 0.5322417248966603, "position": { "x": 8, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3202, "time": 0.5403059934557006, "position": { "x": 2, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3370, + "noteOrder": 3346, "time": 0.5644987991328215, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3394, + "noteOrder": 3369, "time": 0.5685309334123417, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3658, + "noteOrder": 3632, "time": 0.6128844104870633, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3683, + "noteOrder": 3656, "time": 0.6169165447665836, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3680, "time": 0.6209486790461037, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3755, + "noteOrder": 3728, "time": 0.629012947605144, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3752, "time": 0.6330450818846642, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3803, + "noteOrder": 3776, "time": 0.6370772161641843, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3827, + "noteOrder": 3800, "time": 0.6411093504437045, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3851, + "noteOrder": 3823, "time": 0.6451414847232246, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3847, "time": 0.6491736190027448, "position": { "x": 5, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3871, "time": 0.6532057532822649, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3923, + "noteOrder": 3895, "time": 0.6572378875617851, "position": { "x": 5, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3947, + "noteOrder": 3919, "time": 0.6612700218413052, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3967, "time": 0.6693342904003455, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4015, "time": 0.6773985589593858, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4092, + "noteOrder": 4062, "time": 0.6854628275184262, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4110, "time": 0.6935270960774665, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4134, "time": 0.6975592303569866, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4158, "time": 0.7015913646365068, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4182, "time": 0.7056234989160269, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4206, "time": 0.7096556331955471, "position": { "x": 5, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 4230, "time": 0.7136877674750672, "position": { "x": 5, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4254, "time": 0.7177199017545874, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4308, + "noteOrder": 4278, "time": 0.7217520360341075, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4332, + "noteOrder": 4301, "time": 0.7257841703136277, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4381, + "noteOrder": 4349, "time": 0.733848438872668, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4429, + "noteOrder": 4397, "time": 0.7419127074317083, "position": { "x": 7, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4445, "time": 0.7499769759907486, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4525, + "noteOrder": 4493, "time": 0.758041244549789, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4549, + "noteOrder": 4517, "time": 0.7620733788293091, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4540, "time": 0.7661055131088294, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4597, + "noteOrder": 4564, "time": 0.7701376473883494, "position": { "x": 5, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4588, "time": 0.7741697816678696, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4645, + "noteOrder": 4612, "time": 0.7782019159473897, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4636, "time": 0.78223405022691, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4660, "time": 0.78626618450643, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4684, "time": 0.7902983187859502, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4732, "time": 0.7983625873449904, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4814, + "noteOrder": 4779, "time": 0.8064268559040307, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4862, + "noteOrder": 4827, "time": 0.814491124463071, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4875, "time": 0.8225553930221113, "position": { "x": 5, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4899, "time": 0.8265875273016317, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4923, "time": 0.8306196615811516, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4947, "time": 0.834651795860672, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 4971, "time": 0.838683930140192, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 4994, "time": 0.8427160644197123, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5018, "time": 0.8467481986992323, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5042, "time": 0.8507803329787526, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5066, "time": 0.8548124672582726, "position": { "x": 8, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5199, + "noteOrder": 5162, "time": 0.8709410043763532, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5223, + "noteOrder": 5186, "time": 0.8749731386558735, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5210, "time": 0.8790052729353935, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5233, "time": 0.8830374072149137, "position": { "x": 5, @@ -2150,7 +2150,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 253, + "noteOrder": 251, "time": 0.042337409934961615, "position": { "x": 2, @@ -2196,7 +2196,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 6, @@ -2219,7 +2219,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 963, + "noteOrder": 956, "time": 0.16128537118080616, "position": { "x": 7, @@ -2242,7 +2242,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 7, @@ -2265,7 +2265,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 4, @@ -2288,7 +2288,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 4, @@ -2311,7 +2311,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 7, @@ -2334,7 +2334,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 7, @@ -2357,7 +2357,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 1444, + "noteOrder": 1434, "time": 0.24192805677120927, "position": { "x": 3, @@ -2380,7 +2380,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 3, @@ -2403,7 +2403,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1468, + "noteOrder": 1458, "time": 0.24596019105072942, "position": { "x": 7, @@ -2426,7 +2426,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 7, @@ -2449,7 +2449,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1829, + "noteOrder": 1816, "time": 0.30644220524353166, "position": { "x": 3, @@ -2472,7 +2472,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 3, @@ -2495,7 +2495,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1853, + "noteOrder": 1840, "time": 0.31047433952305187, "position": { "x": 7, @@ -2518,7 +2518,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 7, @@ -2541,7 +2541,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2214, + "noteOrder": 2199, "time": 0.37095635371585417, "position": { "x": 3, @@ -2564,7 +2564,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 3, @@ -2587,7 +2587,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2238, + "noteOrder": 2222, "time": 0.3749884879953743, "position": { "x": 7, @@ -2610,7 +2610,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 7, @@ -2633,7 +2633,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2599, + "noteOrder": 2581, "time": 0.4354705021881766, "position": { "x": 3, @@ -2656,7 +2656,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 3, @@ -2679,7 +2679,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 2605, "time": 0.4395026364676968, "position": { "x": 7, @@ -2702,7 +2702,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 7, @@ -2725,7 +2725,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3537, "time": 0.5967558733689828, "position": { "x": 7, @@ -2748,7 +2748,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 3610, + "noteOrder": 3585, "time": 0.604820141928023, "position": { "x": 7, @@ -2771,7 +2771,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 5680, + "noteOrder": 5640, "time": 0.9515836899667564, "position": { "x": 6, @@ -2794,7 +2794,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 6, @@ -2817,7 +2817,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 579.5, + "noteOrder": 575.5, "time": 0.0967712227084837, "position": { "x": 5, @@ -2845,7 +2845,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 627.5, + "noteOrder": 622.5, "time": 0.104835491267524, "position": { "x": 5, @@ -2873,7 +2873,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1012.5, + "noteOrder": 1005.5, "time": 0.16934963973984646, "position": { "x": 5, @@ -2901,7 +2901,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1060.5, + "noteOrder": 1052.5, "time": 0.17741390829888679, "position": { "x": 5, @@ -2929,7 +2929,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1156.5, + "noteOrder": 1148.5, "time": 0.1935424454169674, "position": { "x": 5, @@ -2957,7 +2957,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1253.5, + "noteOrder": 1244.5, "time": 0.209670982535048, "position": { "x": 5, @@ -2985,7 +2985,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1301.5, + "noteOrder": 1291.5, "time": 0.2177352510940883, "position": { "x": 5, @@ -3013,7 +3013,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1493.5, + "noteOrder": 1483.5, "time": 0.24999232533024957, "position": { "x": 5, @@ -3041,7 +3041,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1878.5, + "noteOrder": 1865.5, "time": 0.314506473802572, "position": { "x": 5, @@ -3069,7 +3069,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2263.5, + "noteOrder": 2247.5, "time": 0.3790206222748945, "position": { "x": 5, @@ -3097,7 +3097,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2408.5, + "noteOrder": 2391.5, "time": 0.40321342795201537, "position": { "x": 5, @@ -3125,7 +3125,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2649.5, + "noteOrder": 2630.5, "time": 0.4435347707472169, "position": { "x": 5, @@ -3153,7 +3153,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2708.0, + "noteOrder": 2688.0, "time": 0.4515990393062573, "position": { "x": 5, @@ -3181,7 +3181,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3034.5, + "noteOrder": 3012.5, "time": 0.5080489192195394, "position": { "x": 5, @@ -3209,7 +3209,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3274.5, + "noteOrder": 3251.5, "time": 0.5483702620147409, "position": { "x": 5, @@ -3237,7 +3237,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3467.5, + "noteOrder": 3442.5, "time": 0.5806273362509022, "position": { "x": 5, @@ -3265,7 +3265,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3515.5, + "noteOrder": 3490.5, "time": 0.5886916048099425, "position": { "x": 5, @@ -3293,7 +3293,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5296.5, + "noteOrder": 5258.5, "time": 0.8870695414944338, "position": { "x": 5, @@ -3321,7 +3321,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5392.5, + "noteOrder": 5354.5, "time": 0.9031980786125146, "position": { "x": 5, @@ -3349,7 +3349,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5489.5, + "noteOrder": 5449.5, "time": 0.9193266157305952, "position": { "x": 5, @@ -3377,7 +3377,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5585.5, + "noteOrder": 5545.5, "time": 0.9354551528486758, "position": { "x": 5, @@ -3405,7 +3405,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5681.5, + "noteOrder": 5641.5, "time": 0.9515836899667564, "position": { "x": 5, @@ -3446,7 +3446,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 140, + "BPM": 139, "NPS": "1.48", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b_blockless.json index 5d11f1cc..8c55b659 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/USA/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "U.S.A. difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 289, + "noteOrder": 287, "time": 0.04838561135424185, "position": { "x": 2, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 335, "time": 0.05644987991328216, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 382, "time": 0.06451414847232247, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 430, "time": 0.07257841703136278, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 481, + "noteOrder": 478, "time": 0.08064268559040308, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 8, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 674, + "noteOrder": 669, "time": 0.11289975982656432, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 722, + "noteOrder": 717, "time": 0.12096402838560463, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 770, + "noteOrder": 765, "time": 0.12902829694464493, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 794, + "noteOrder": 789, "time": 0.13306043122416508, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 818, + "noteOrder": 812, "time": 0.13709256550368523, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 866, + "noteOrder": 860, "time": 0.14515683406272556, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 915, + "noteOrder": 908, "time": 0.15322110262176583, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1348, + "noteOrder": 1338, "time": 0.22579951965312864, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1372, + "noteOrder": 1362, "time": 0.2298316539326488, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1396, + "noteOrder": 1386, "time": 0.23386378821216894, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1540, + "noteOrder": 1529, "time": 0.25805659388928986, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1589, + "noteOrder": 1577, "time": 0.26612086244833016, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1637, + "noteOrder": 1625, "time": 0.27418513100737046, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1685, + "noteOrder": 1673, "time": 0.28224939956641076, "position": { "x": 2, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1733, + "noteOrder": 1721, "time": 0.2903136681254511, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1757, + "noteOrder": 1744, "time": 0.29434580240497127, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1781, + "noteOrder": 1768, "time": 0.2983779366844914, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1926, + "noteOrder": 1912, "time": 0.3225707423616123, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1974, + "noteOrder": 1960, "time": 0.3306350109206526, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2007, "time": 0.3386992794796929, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2070, + "noteOrder": 2055, "time": 0.34676354803873327, "position": { "x": 2, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2118, + "noteOrder": 2103, "time": 0.35482781659777357, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2142, + "noteOrder": 2127, "time": 0.3588599508772937, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2166, + "noteOrder": 2151, "time": 0.36289208515681387, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2311, + "noteOrder": 2294, "time": 0.3870848908339348, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2335, + "noteOrder": 2318, "time": 0.391117025113455, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2359, + "noteOrder": 2342, "time": 0.3951491593929751, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2366, "time": 0.3991812936724952, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2503, + "noteOrder": 2485, "time": 0.419341965070096, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2527, + "noteOrder": 2509, "time": 0.4233740993496162, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2551, + "noteOrder": 2533, "time": 0.4274062336291363, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2792, + "noteOrder": 2772, "time": 0.4677275764243379, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2816, + "noteOrder": 2796, "time": 0.471759710703858, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2840, + "noteOrder": 2820, "time": 0.4757918449833782, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2888, + "noteOrder": 2868, "time": 0.48385611354241853, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2912, + "noteOrder": 2892, "time": 0.4878882478219387, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2936, + "noteOrder": 2915, "time": 0.49192038210145883, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2960, + "noteOrder": 2939, "time": 0.495952516380979, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 2963, "time": 0.49998465066049913, "position": { "x": 8, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3081, + "noteOrder": 3059, "time": 0.5161131877785797, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3129, + "noteOrder": 3107, "time": 0.52417745633762, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3177, + "noteOrder": 3154, "time": 0.5322417248966603, "position": { "x": 8, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3225, + "noteOrder": 3202, "time": 0.5403059934557006, "position": { "x": 2, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3370, + "noteOrder": 3346, "time": 0.5644987991328215, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3394, + "noteOrder": 3369, "time": 0.5685309334123417, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3418, + "noteOrder": 3393, "time": 0.5725630676918618, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3658, + "noteOrder": 3632, "time": 0.6128844104870633, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3683, + "noteOrder": 3656, "time": 0.6169165447665836, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3707, + "noteOrder": 3680, "time": 0.6209486790461037, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3755, + "noteOrder": 3728, "time": 0.629012947605144, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3779, + "noteOrder": 3752, "time": 0.6330450818846642, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3803, + "noteOrder": 3776, "time": 0.6370772161641843, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3827, + "noteOrder": 3800, "time": 0.6411093504437045, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3851, + "noteOrder": 3823, "time": 0.6451414847232246, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3875, + "noteOrder": 3847, "time": 0.6491736190027448, "position": { "x": 5, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3899, + "noteOrder": 3871, "time": 0.6532057532822649, "position": { "x": 5, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3923, + "noteOrder": 3895, "time": 0.6572378875617851, "position": { "x": 5, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3947, + "noteOrder": 3919, "time": 0.6612700218413052, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3995, + "noteOrder": 3967, "time": 0.6693342904003455, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4044, + "noteOrder": 4015, "time": 0.6773985589593858, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4092, + "noteOrder": 4062, "time": 0.6854628275184262, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4140, + "noteOrder": 4110, "time": 0.6935270960774665, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4164, + "noteOrder": 4134, "time": 0.6975592303569866, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4188, + "noteOrder": 4158, "time": 0.7015913646365068, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4212, + "noteOrder": 4182, "time": 0.7056234989160269, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4206, "time": 0.7096556331955471, "position": { "x": 5, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 4230, "time": 0.7136877674750672, "position": { "x": 5, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 4254, "time": 0.7177199017545874, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4308, + "noteOrder": 4278, "time": 0.7217520360341075, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4332, + "noteOrder": 4301, "time": 0.7257841703136277, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4381, + "noteOrder": 4349, "time": 0.733848438872668, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4429, + "noteOrder": 4397, "time": 0.7419127074317083, "position": { "x": 7, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4477, + "noteOrder": 4445, "time": 0.7499769759907486, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4525, + "noteOrder": 4493, "time": 0.758041244549789, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4549, + "noteOrder": 4517, "time": 0.7620733788293091, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4573, + "noteOrder": 4540, "time": 0.7661055131088294, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4597, + "noteOrder": 4564, "time": 0.7701376473883494, "position": { "x": 5, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4621, + "noteOrder": 4588, "time": 0.7741697816678696, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4645, + "noteOrder": 4612, "time": 0.7782019159473897, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4669, + "noteOrder": 4636, "time": 0.78223405022691, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4693, + "noteOrder": 4660, "time": 0.78626618450643, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4684, "time": 0.7902983187859502, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4766, + "noteOrder": 4732, "time": 0.7983625873449904, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4814, + "noteOrder": 4779, "time": 0.8064268559040307, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4862, + "noteOrder": 4827, "time": 0.814491124463071, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4910, + "noteOrder": 4875, "time": 0.8225553930221113, "position": { "x": 5, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4934, + "noteOrder": 4899, "time": 0.8265875273016317, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4958, + "noteOrder": 4923, "time": 0.8306196615811516, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4982, + "noteOrder": 4947, "time": 0.834651795860672, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5006, + "noteOrder": 4971, "time": 0.838683930140192, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 4994, "time": 0.8427160644197123, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5018, "time": 0.8467481986992323, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5079, + "noteOrder": 5042, "time": 0.8507803329787526, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5103, + "noteOrder": 5066, "time": 0.8548124672582726, "position": { "x": 8, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5199, + "noteOrder": 5162, "time": 0.8709410043763532, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5223, + "noteOrder": 5186, "time": 0.8749731386558735, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5247, + "noteOrder": 5210, "time": 0.8790052729353935, "position": { "x": 5, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5271, + "noteOrder": 5233, "time": 0.8830374072149137, "position": { "x": 5, @@ -2150,7 +2150,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 253, + "noteOrder": 251, "time": 0.042337409934961615, "position": { "x": 2, @@ -2196,7 +2196,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 530, + "noteOrder": 526, "time": 0.08870695414944339, "position": { "x": 6, @@ -2219,7 +2219,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 963, + "noteOrder": 956, "time": 0.16128537118080616, "position": { "x": 7, @@ -2242,7 +2242,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 7, @@ -2265,7 +2265,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 1107, + "noteOrder": 1099, "time": 0.18547817685792709, "position": { "x": 4, @@ -2288,7 +2288,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 4, @@ -2311,7 +2311,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1203, + "noteOrder": 1195, "time": 0.20160671397600768, "position": { "x": 7, @@ -2334,7 +2334,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1252, + "noteOrder": 1243, "time": 0.209670982535048, "position": { "x": 7, @@ -2357,7 +2357,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 1444, + "noteOrder": 1434, "time": 0.24192805677120927, "position": { "x": 3, @@ -2380,7 +2380,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 3, @@ -2403,7 +2403,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1468, + "noteOrder": 1458, "time": 0.24596019105072942, "position": { "x": 7, @@ -2426,7 +2426,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1492, + "noteOrder": 1482, "time": 0.24999232533024957, "position": { "x": 7, @@ -2449,7 +2449,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1829, + "noteOrder": 1816, "time": 0.30644220524353166, "position": { "x": 3, @@ -2472,7 +2472,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 3, @@ -2495,7 +2495,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1853, + "noteOrder": 1840, "time": 0.31047433952305187, "position": { "x": 7, @@ -2518,7 +2518,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1877, + "noteOrder": 1864, "time": 0.314506473802572, "position": { "x": 7, @@ -2541,7 +2541,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2214, + "noteOrder": 2199, "time": 0.37095635371585417, "position": { "x": 3, @@ -2564,7 +2564,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 3, @@ -2587,7 +2587,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2238, + "noteOrder": 2222, "time": 0.3749884879953743, "position": { "x": 7, @@ -2610,7 +2610,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2262, + "noteOrder": 2246, "time": 0.3790206222748945, "position": { "x": 7, @@ -2633,7 +2633,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2599, + "noteOrder": 2581, "time": 0.4354705021881766, "position": { "x": 3, @@ -2656,7 +2656,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 3, @@ -2679,7 +2679,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 2605, "time": 0.4395026364676968, "position": { "x": 7, @@ -2702,7 +2702,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2648, + "noteOrder": 2629, "time": 0.4435347707472169, "position": { "x": 7, @@ -2725,7 +2725,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3537, "time": 0.5967558733689828, "position": { "x": 7, @@ -2748,7 +2748,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 3610, + "noteOrder": 3585, "time": 0.604820141928023, "position": { "x": 7, @@ -2771,7 +2771,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 5680, + "noteOrder": 5640, "time": 0.9515836899667564, "position": { "x": 6, @@ -2794,7 +2794,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 5777, + "noteOrder": 5735, "time": 0.9677122270848371, "position": { "x": 6, @@ -2829,7 +2829,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 140, + "BPM": 139, "NPS": "1.48", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/USA/info.json b/tracks/DANCERUSH STARDOM (2022121400)/USA/info.json index 96f75c3d..3810a943 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/USA/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/USA/info.json @@ -3,7 +3,7 @@ "SongName": "U.S.A.", "SongLength": "106.593469", "SongAuthorName": "DA PUMP", - "Bpm": "140", + "Bpm": "139", "SongPath": "103.ogg", "CreateTicks": 636788736000000000, "CreateTime": "636788736000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a.json index 5298c5f0..119f4224 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "Where's The Party At difficulty_1a", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 112, "time": 0.017155958570016176, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 141, "time": 0.021447235673662888, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 169, "time": 0.025738512777309604, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 197, "time": 0.030020640036385642, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 225, "time": 0.03431191714003235, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 253, "time": 0.03860319424367907, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 366, "time": 0.05575915281369524, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 394, "time": 0.060050429917341955, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 422, "time": 0.06433255717641799, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 450, "time": 0.0686238342800647, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 478, "time": 0.07291511138371141, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 591, "time": 0.09007106995372759, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 619, "time": 0.09436234705737431, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 647, "time": 0.09864447431645035, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 675, "time": 0.10293575142009706, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 703, "time": 0.10722702852374376, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 816, "time": 0.12438298709375994, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 844, "time": 0.12867426419740666, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 872, "time": 0.1329563914564827, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 804, + "noteOrder": 942, "time": 0.14368000929331415, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 956, "time": 0.14583022276742283, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 828, + "noteOrder": 970, "time": 0.14797128639696086, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 924, + "noteOrder": 1083, "time": 0.16512724496697703, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1097, "time": 0.16726830859651504, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 1153, "time": 0.1758508628038085, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1209, "time": 0.1844242671665312, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1116, + "noteOrder": 1308, "time": 0.19943916210700938, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1322, "time": 0.20158022573654738, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1378, "time": 0.21016277994384083, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1434, "time": 0.21873618430656358, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1491, "time": 0.227318738513857, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1603, "time": 0.2444746970838732, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1659, "time": 0.2530481014465959, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1716, "time": 0.2616306556538894, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1772, "time": 0.27020406001661207, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1800, "time": 0.2744953371202588, "position": { "x": 8, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1548, + "noteOrder": 1814, "time": 0.27663640074979684, "position": { "x": 5, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1828, "time": 0.27878661422390555, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1572, + "noteOrder": 1842, "time": 0.2809276778534435, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1856, "time": 0.28307789132755223, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1870, "time": 0.28521895495709026, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 2138, "time": 0.3259632128303073, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 2166, "time": 0.33024534008938344, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 2194, "time": 0.33452746734845945, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 2222, "time": 0.3388095946075355, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 2250, "time": 0.3430734221774701, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 2278, "time": 0.34734639959197555, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2306, "time": 0.3516010773173395, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1991, + "noteOrder": 2334, "time": 0.35586490488727424, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2361, "time": 0.36011043276806753, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2039, + "noteOrder": 2389, "time": 0.3643559606488609, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2417, "time": 0.3686014885296542, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2086, + "noteOrder": 2445, "time": 0.37283786656587686, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2110, + "noteOrder": 2473, "time": 0.37706509475752886, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2134, + "noteOrder": 2500, "time": 0.3812831731046102, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2157, + "noteOrder": 2528, "time": 0.38550125145169145, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2555, "time": 0.3897010301096315, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2251, + "noteOrder": 2638, "time": 0.40225461686059794, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2274, + "noteOrder": 2665, "time": 0.4064177961402552, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2343, + "noteOrder": 2746, "time": 0.4187792361552375, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2773, "time": 0.42285091698918803, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2799, "time": 0.4268951482894265, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 2812, "time": 0.4288989642504044, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2411, + "noteOrder": 2826, "time": 0.4309027802113823, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2422, + "noteOrder": 2839, "time": 0.4328791466386482, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2433, + "noteOrder": 2852, "time": 0.4348646629104847, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2444, + "noteOrder": 2864, "time": 0.4368227296486092, "position": { "x": 5, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2877, "time": 0.4387899462313044, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2466, + "noteOrder": 2890, "time": 0.44072971328028754, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2530, + "noteOrder": 2965, "time": 0.4521487193044903, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2530, + "noteOrder": 2965, "time": 0.4521487193044903, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 3026, "time": 0.4613809124763017, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2602, + "noteOrder": 3050, "time": 0.4650408503045718, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2684, + "noteOrder": 3146, "time": 0.47968060161765225, "position": { "x": 8, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 2, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 3218, "time": 0.49066041510246267, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 3242, "time": 0.49432035293073273, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 3314, "time": 0.5053001664155431, "position": { "x": 5, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 3338, "time": 0.5089601042438132, "position": { "x": 2, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 3410, "time": 0.5199399177286236, "position": { "x": 3, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3458, "time": 0.5272597933851638, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3073, + "noteOrder": 3602, "time": 0.5492194203547845, "position": { "x": 7, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3114, + "noteOrder": 3650, "time": 0.5565392960113248, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3237, + "noteOrder": 3794, "time": 0.5784989229809455, "position": { "x": 3, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3278, + "noteOrder": 3842, "time": 0.5858187986374858, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3986, "time": 0.6077784256071064, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3442, + "noteOrder": 4034, "time": 0.6150983012636466, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 4198, "time": 0.6402146246101503, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3615, + "noteOrder": 4236, "time": 0.6459881765342464, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 4270, "time": 0.6512035879395314, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 4302, "time": 0.6560438557174186, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3697, + "noteOrder": 4332, "time": 0.6606645272256095, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 4362, "time": 0.6651571009098112, "position": { "x": 6, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 4391, "time": 0.6695673259928766, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 4419, "time": 0.6739226520085181, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 4448, "time": 0.6782596783350182, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 4476, "time": 0.6825692551278063, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3844, + "noteOrder": 4504, "time": 0.6868696820760237, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 4589, "time": 0.6997526632315345, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 4603, "time": 0.7018937268610724, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4048, + "noteOrder": 4743, "time": 0.7233318126901647, "position": { "x": 4, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4898, "time": 0.7469292618379363, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4204, + "noteOrder": 4926, "time": 0.751220538941583, "position": { "x": 8, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 5010, "time": 0.7640852204079525, "position": { "x": 5, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 5039, "time": 0.7683764975115992, "position": { "x": 8, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 5095, "time": 0.7769499018743219, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 8, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 5179, "time": 0.7898145833406913, "position": { "x": 4, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 5235, "time": 0.7983971375479848, "position": { "x": 2, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 5292, "time": 0.8069705419107075, "position": { "x": 8, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 6, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4552, + "noteOrder": 5334, "time": 0.8134028826438923, "position": { "x": 4, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 5348, "time": 0.815553096118001, "position": { "x": 2, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4576, + "noteOrder": 5362, "time": 0.817694159747539, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 5376, "time": 0.8198443732216477, "position": { "x": 2, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4600, + "noteOrder": 5390, "time": 0.8219854368511857, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 5404, "time": 0.8241265004807237, "position": { "x": 2, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4624, + "noteOrder": 5418, "time": 0.8262675641102618, "position": { "x": 7, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4660, + "noteOrder": 5460, "time": 0.8327090546880171, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4660, + "noteOrder": 5460, "time": 0.8327090546880171, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 7, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 4, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5008, + "noteOrder": 5868, "time": 0.8948913983903265, "position": { "x": 7, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 5, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 8, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 4, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 5, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 6276, "time": 0.9570920417817771, "position": { "x": 2, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 6304, "time": 0.961374169040853, "position": { "x": 6, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5476, + "noteOrder": 6417, "time": 0.9785301276108692, "position": { "x": 3, @@ -3147,7 +3147,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 281, "time": 0.042894471347325776, "position": { "x": 7, @@ -3170,7 +3170,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 7, @@ -3193,7 +3193,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 506, "time": 0.07720638848735814, "position": { "x": 3, @@ -3216,7 +3216,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 3, @@ -3239,7 +3239,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 731, "time": 0.11151830562739048, "position": { "x": 7, @@ -3262,7 +3262,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 7, @@ -3285,7 +3285,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 900, "time": 0.1372476685601294, "position": { "x": 3, @@ -3308,7 +3308,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 780, + "noteOrder": 914, "time": 0.13938873218966744, "position": { "x": 3, @@ -3331,7 +3331,7 @@ { "lineGroupId": 29, "indexInLine": 3, - "noteOrder": 780, + "noteOrder": 914, "time": 0.13938873218966744, "position": { "x": 5, @@ -3354,7 +3354,7 @@ { "lineGroupId": 29, "indexInLine": 4, - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 5, @@ -3377,7 +3377,7 @@ { "lineGroupId": 29, "indexInLine": 5, - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 6, @@ -3400,7 +3400,7 @@ { "lineGroupId": 29, "indexInLine": 6, - "noteOrder": 798.0, + "noteOrder": 934.0, "time": 0.14153894566377612, "position": { "x": 6, @@ -3423,7 +3423,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 7, @@ -3446,7 +3446,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 876, + "noteOrder": 1027, "time": 0.1565446907596836, "position": { "x": 7, @@ -3469,7 +3469,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 876, + "noteOrder": 1027, "time": 0.1565446907596836, "position": { "x": 5, @@ -3492,7 +3492,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 5, @@ -3515,7 +3515,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 4, @@ -3538,7 +3538,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 894.0, + "noteOrder": 1047.0, "time": 0.15869490423379232, "position": { "x": 4, @@ -3561,7 +3561,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 7, @@ -3584,7 +3584,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 900, + "noteOrder": 1055, "time": 0.16083596786333032, "position": { "x": 7, @@ -3607,7 +3607,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 900, + "noteOrder": 1055, "time": 0.16083596786333032, "position": { "x": 5, @@ -3630,7 +3630,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 5, @@ -3653,7 +3653,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 4, @@ -3676,7 +3676,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 918.0, + "noteOrder": 1075.0, "time": 0.162986181337439, "position": { "x": 4, @@ -3699,7 +3699,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 948, + "noteOrder": 1111, "time": 0.16940937222605307, "position": { "x": 3, @@ -3722,7 +3722,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 3, @@ -3745,7 +3745,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 5, @@ -3768,7 +3768,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 7, @@ -3791,7 +3791,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 1195, "time": 0.1822832035369932, "position": { "x": 7, @@ -3814,7 +3814,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1020, + "noteOrder": 1195, "time": 0.1822832035369932, "position": { "x": 5, @@ -3837,7 +3837,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1026.0, + "noteOrder": 1201.0, "time": 0.1822832035369932, "position": { "x": 5, @@ -3860,7 +3860,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 3, @@ -3883,7 +3883,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 1252, "time": 0.19085660789971598, "position": { "x": 3, @@ -3906,7 +3906,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 1252, "time": 0.19085660789971598, "position": { "x": 5, @@ -3929,7 +3929,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 5, @@ -3952,7 +3952,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 6, @@ -3975,7 +3975,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 1272.0, "time": 0.19300682137382466, "position": { "x": 6, @@ -3998,7 +3998,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 3, @@ -4021,7 +4021,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 1280, "time": 0.19514788500336266, "position": { "x": 3, @@ -4044,7 +4044,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 1280, "time": 0.19514788500336266, "position": { "x": 5, @@ -4067,7 +4067,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 5, @@ -4090,7 +4090,7 @@ { "lineGroupId": 48, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 6, @@ -4113,7 +4113,7 @@ { "lineGroupId": 48, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1300.0, "time": 0.19729809847747135, "position": { "x": 6, @@ -4136,7 +4136,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1140, + "noteOrder": 1336, "time": 0.20372128936608544, "position": { "x": 7, @@ -4159,7 +4159,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 7, @@ -4182,7 +4182,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 5, @@ -4205,7 +4205,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 3, @@ -4228,7 +4228,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1212, + "noteOrder": 1420, "time": 0.21659512067702558, "position": { "x": 3, @@ -4251,7 +4251,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1212, + "noteOrder": 1420, "time": 0.21659512067702558, "position": { "x": 5, @@ -4274,7 +4274,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1218.0, + "noteOrder": 1426.0, "time": 0.21659512067702558, "position": { "x": 5, @@ -4297,7 +4297,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 7, @@ -4320,7 +4320,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1491, "time": 0.227318738513857, "position": { "x": 7, @@ -4343,7 +4343,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 5, @@ -4366,7 +4366,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 2, @@ -4389,7 +4389,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1547, "time": 0.23589214287657975, "position": { "x": 2, @@ -4412,7 +4412,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1320, + "noteOrder": 1547, "time": 0.23589214287657975, "position": { "x": 5, @@ -4435,7 +4435,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1332, + "noteOrder": 1561, "time": 0.23803320650611778, "position": { "x": 5, @@ -4458,7 +4458,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1332, + "noteOrder": 1561, "time": 0.23803320650611778, "position": { "x": 3, @@ -4481,7 +4481,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1338.0, + "noteOrder": 1567.0, "time": 0.23803320650611778, "position": { "x": 3, @@ -4504,7 +4504,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1575, "time": 0.24018341998022646, "position": { "x": 2, @@ -4527,7 +4527,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1603, "time": 0.2444746970838732, "position": { "x": 2, @@ -4550,7 +4550,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 4, @@ -4573,7 +4573,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 7, @@ -4596,7 +4596,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 1645, "time": 0.2509070378170579, "position": { "x": 7, @@ -4619,7 +4619,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 1645, "time": 0.2509070378170579, "position": { "x": 5, @@ -4642,7 +4642,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 1651.0, "time": 0.2509070378170579, "position": { "x": 5, @@ -4665,7 +4665,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 3, @@ -4688,7 +4688,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1716, "time": 0.2616306556538894, "position": { "x": 3, @@ -4711,7 +4711,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 5, @@ -4734,7 +4734,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 8, @@ -4757,7 +4757,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1772, "time": 0.27020406001661207, "position": { "x": 8, @@ -4780,7 +4780,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2477, + "noteOrder": 2903, "time": 0.4426694803292707, "position": { "x": 4, @@ -4803,7 +4803,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2488, + "noteOrder": 2915, "time": 0.4445817978445418, "position": { "x": 4, @@ -4826,7 +4826,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2488, + "noteOrder": 2915, "time": 0.4445817978445418, "position": { "x": 5, @@ -4849,7 +4849,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 5, @@ -4872,7 +4872,7 @@ { "lineGroupId": 111, "indexInLine": 5, - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 6, @@ -4895,7 +4895,7 @@ { "lineGroupId": 111, "indexInLine": 6, - "noteOrder": 2504.0, + "noteOrder": 2934.0, "time": 0.44649411535981304, "position": { "x": 6, @@ -4918,7 +4918,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2561, + "noteOrder": 3002, "time": 0.4577209746480316, "position": { "x": 6, @@ -4941,7 +4941,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2582, + "noteOrder": 3026, "time": 0.4613809124763017, "position": { "x": 6, @@ -4964,7 +4964,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 2623, + "noteOrder": 3074, "time": 0.46870078813284194, "position": { "x": 5, @@ -4987,7 +4987,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 3074, "time": 0.46870078813284194, "position": { "x": 3, @@ -5010,7 +5010,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 3122, "time": 0.4760206637893822, "position": { "x": 3, @@ -5033,7 +5033,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 2643, + "noteOrder": 3098, "time": 0.47236072596111206, "position": { "x": 7, @@ -5056,7 +5056,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 3122, "time": 0.4760206637893822, "position": { "x": 5, @@ -5079,7 +5079,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 5, @@ -5102,7 +5102,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2725, + "noteOrder": 3194, "time": 0.48700047727419254, "position": { "x": 4, @@ -5125,7 +5125,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2746, + "noteOrder": 3218, "time": 0.49066041510246267, "position": { "x": 4, @@ -5148,7 +5148,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 2787, + "noteOrder": 3266, "time": 0.49798029075900285, "position": { "x": 5, @@ -5171,7 +5171,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 2787, + "noteOrder": 3266, "time": 0.49798029075900285, "position": { "x": 7, @@ -5194,7 +5194,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 7, @@ -5217,7 +5217,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 4, @@ -5240,7 +5240,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 4, @@ -5263,7 +5263,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 2889, + "noteOrder": 3386, "time": 0.5162799799003535, "position": { "x": 4, @@ -5286,7 +5286,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 4, @@ -5309,7 +5309,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 6, @@ -5332,7 +5332,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 6, @@ -5355,7 +5355,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 2991, + "noteOrder": 3506, "time": 0.5345796690417041, "position": { "x": 6, @@ -5378,7 +5378,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3002, + "noteOrder": 3518, "time": 0.5364096379558391, "position": { "x": 6, @@ -5401,7 +5401,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 4, @@ -5424,7 +5424,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 3032, + "noteOrder": 3554, "time": 0.5418995446982443, "position": { "x": 4, @@ -5447,7 +5447,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 2991, + "noteOrder": 3506, "time": 0.5345796690417041, "position": { "x": 4, @@ -5470,7 +5470,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3002, + "noteOrder": 3518, "time": 0.5364096379558391, "position": { "x": 4, @@ -5493,7 +5493,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 6, @@ -5516,7 +5516,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3032, + "noteOrder": 3554, "time": 0.5418995446982443, "position": { "x": 6, @@ -5539,7 +5539,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3053, + "noteOrder": 3578, "time": 0.5455594825265144, "position": { "x": 6, @@ -5562,7 +5562,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 6, @@ -5585,7 +5585,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 4, @@ -5608,7 +5608,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 4, @@ -5631,7 +5631,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 6, @@ -5654,7 +5654,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3196, + "noteOrder": 3746, "time": 0.5711790473244052, "position": { "x": 6, @@ -5677,7 +5677,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3155, + "noteOrder": 3698, "time": 0.563859171667865, "position": { "x": 8, @@ -5700,7 +5700,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3176, + "noteOrder": 3722, "time": 0.567519109496135, "position": { "x": 4, @@ -5723,7 +5723,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3196, + "noteOrder": 3746, "time": 0.5711790473244052, "position": { "x": 4, @@ -5746,7 +5746,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3217, + "noteOrder": 3770, "time": 0.5748389851526754, "position": { "x": 4, @@ -5769,7 +5769,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 4, @@ -5792,7 +5792,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 6, @@ -5815,7 +5815,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 6, @@ -5838,7 +5838,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 6, @@ -5861,7 +5861,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 3329, + "noteOrder": 3902, "time": 0.594968643208161, "position": { "x": 6, @@ -5884,7 +5884,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 4, @@ -5907,7 +5907,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 4, @@ -5930,7 +5930,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 4, @@ -5953,7 +5953,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3329, + "noteOrder": 3902, "time": 0.594968643208161, "position": { "x": 4, @@ -5976,7 +5976,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 6, @@ -5999,7 +5999,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 6, @@ -6022,7 +6022,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3380, + "noteOrder": 3962, "time": 0.6041184877788364, "position": { "x": 6, @@ -6045,7 +6045,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 6, @@ -6068,7 +6068,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 4, @@ -6091,7 +6091,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 4, @@ -6114,7 +6114,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 6, @@ -6137,7 +6137,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 6, @@ -6160,7 +6160,7 @@ { "lineGroupId": 160, "indexInLine": 3, - "noteOrder": 3544, + "noteOrder": 4154, "time": 0.6333979904049972, "position": { "x": 6, @@ -6183,7 +6183,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 3483, + "noteOrder": 4082, "time": 0.622418176920187, "position": { "x": 8, @@ -6206,7 +6206,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 5, @@ -6229,7 +6229,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 3524, + "noteOrder": 4130, "time": 0.6297380525767271, "position": { "x": 5, @@ -6252,7 +6252,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 3544, + "noteOrder": 4154, "time": 0.6333979904049972, "position": { "x": 2, @@ -6275,7 +6275,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3868, + "noteOrder": 4532, "time": 0.691170109024241, "position": { "x": 3, @@ -6298,7 +6298,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3880, + "noteOrder": 4546, "time": 0.6933111726537791, "position": { "x": 3, @@ -6321,7 +6321,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 3880, + "noteOrder": 4546, "time": 0.6933111726537791, "position": { "x": 5, @@ -6344,7 +6344,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 3886.0, + "noteOrder": 4552.0, "time": 0.6933111726537791, "position": { "x": 5, @@ -6367,7 +6367,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3892, + "noteOrder": 4560, "time": 0.6954613861278877, "position": { "x": 7, @@ -6390,7 +6390,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3904, + "noteOrder": 4575, "time": 0.6976024497574258, "position": { "x": 7, @@ -6413,7 +6413,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 3904, + "noteOrder": 4575, "time": 0.6976024497574258, "position": { "x": 5, @@ -6436,7 +6436,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 3910.0, + "noteOrder": 4581.0, "time": 0.6976024497574258, "position": { "x": 5, @@ -6459,7 +6459,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3964, + "noteOrder": 4645, "time": 0.7083260675942572, "position": { "x": 6, @@ -6482,7 +6482,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3976, + "noteOrder": 4659, "time": 0.7104671312237952, "position": { "x": 6, @@ -6505,7 +6505,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 3976, + "noteOrder": 4659, "time": 0.7104671312237952, "position": { "x": 5, @@ -6528,7 +6528,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 5, @@ -6551,7 +6551,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 4, @@ -6574,7 +6574,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 3994.0, + "noteOrder": 4679.0, "time": 0.7126173446979038, "position": { "x": 4, @@ -6597,7 +6597,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 6, @@ -6620,7 +6620,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4000, + "noteOrder": 4687, "time": 0.714758408327442, "position": { "x": 6, @@ -6643,7 +6643,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4000, + "noteOrder": 4687, "time": 0.714758408327442, "position": { "x": 5, @@ -6666,7 +6666,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 5, @@ -6689,7 +6689,7 @@ { "lineGroupId": 181, "indexInLine": 5, - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 4, @@ -6712,7 +6712,7 @@ { "lineGroupId": 181, "indexInLine": 6, - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 4, @@ -6735,7 +6735,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4060, + "noteOrder": 4757, "time": 0.7254820261642734, "position": { "x": 6, @@ -6758,7 +6758,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4072, + "noteOrder": 4771, "time": 0.7276230897938114, "position": { "x": 6, @@ -6781,7 +6781,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4072, + "noteOrder": 4771, "time": 0.7276230897938114, "position": { "x": 5, @@ -6804,7 +6804,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 5, @@ -6827,7 +6827,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 4, @@ -6850,7 +6850,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4090.0, + "noteOrder": 4791.0, "time": 0.72977330326792, "position": { "x": 4, @@ -6873,7 +6873,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 6, @@ -6896,7 +6896,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 4096, + "noteOrder": 4800, "time": 0.7319143668974581, "position": { "x": 6, @@ -6919,7 +6919,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4096, + "noteOrder": 4800, "time": 0.7319143668974581, "position": { "x": 5, @@ -6942,7 +6942,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 5, @@ -6965,7 +6965,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 4, @@ -6988,7 +6988,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 4114.0, + "noteOrder": 4820.0, "time": 0.7340645803715669, "position": { "x": 4, @@ -7011,7 +7011,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 4132, + "noteOrder": 4842, "time": 0.7383467076306428, "position": { "x": 4, @@ -7034,7 +7034,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 4, @@ -7057,7 +7057,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 6, @@ -7080,7 +7080,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 8, @@ -7103,7 +7103,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 8, @@ -7126,7 +7126,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 6, @@ -7149,7 +7149,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 4, @@ -7172,7 +7172,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 4372, + "noteOrder": 5123, "time": 0.7812411789779686, "position": { "x": 4, @@ -7195,7 +7195,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4372, + "noteOrder": 5123, "time": 0.7812411789779686, "position": { "x": 6, @@ -7218,7 +7218,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4420, + "noteOrder": 5179, "time": 0.7898145833406913, "position": { "x": 6, @@ -7241,7 +7241,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 6, @@ -7264,7 +7264,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4468, + "noteOrder": 5235, "time": 0.7983971375479848, "position": { "x": 6, @@ -7287,7 +7287,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 4, @@ -7310,7 +7310,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 4516, + "noteOrder": 5292, "time": 0.8069705419107075, "position": { "x": 4, @@ -7333,7 +7333,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4732, + "noteOrder": 5545, "time": 0.8455737361543866, "position": { "x": 7, @@ -7356,7 +7356,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 7, @@ -7379,7 +7379,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 5, @@ -7402,7 +7402,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 3, @@ -7425,7 +7425,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 4816, + "noteOrder": 5643, "time": 0.8605794812502942, "position": { "x": 3, @@ -7448,7 +7448,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 4816, + "noteOrder": 5643, "time": 0.8605794812502942, "position": { "x": 5, @@ -7471,7 +7471,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 4822.0, + "noteOrder": 5649.0, "time": 0.8605794812502942, "position": { "x": 5, @@ -7494,7 +7494,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 6, @@ -7517,7 +7517,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4840, + "noteOrder": 5671, "time": 0.8648707583539408, "position": { "x": 6, @@ -7540,7 +7540,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 4840, + "noteOrder": 5671, "time": 0.8648707583539408, "position": { "x": 5, @@ -7563,7 +7563,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 5, @@ -7586,7 +7586,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 4, @@ -7609,7 +7609,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 4858.0, + "noteOrder": 5691.0, "time": 0.8670209718280495, "position": { "x": 4, @@ -7632,7 +7632,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 6, @@ -7655,7 +7655,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4864, + "noteOrder": 5700, "time": 0.8691620354575875, "position": { "x": 6, @@ -7678,7 +7678,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4864, + "noteOrder": 5700, "time": 0.8691620354575875, "position": { "x": 5, @@ -7701,7 +7701,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 5, @@ -7724,7 +7724,7 @@ { "lineGroupId": 225, "indexInLine": 5, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 4, @@ -7747,7 +7747,7 @@ { "lineGroupId": 225, "indexInLine": 6, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 4, @@ -7770,7 +7770,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 8, @@ -7793,7 +7793,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 5, @@ -7816,7 +7816,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 4924, + "noteOrder": 5770, "time": 0.879885653294419, "position": { "x": 2, @@ -7839,7 +7839,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 4936, + "noteOrder": 5784, "time": 0.882026716923957, "position": { "x": 2, @@ -7862,7 +7862,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 4936, + "noteOrder": 5784, "time": 0.882026716923957, "position": { "x": 4, @@ -7885,7 +7885,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 4, @@ -7908,7 +7908,7 @@ { "lineGroupId": 227, "indexInLine": 5, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 5, @@ -7931,7 +7931,7 @@ { "lineGroupId": 227, "indexInLine": 6, - "noteOrder": 4954.0, + "noteOrder": 5804.0, "time": 0.8841769303980657, "position": { "x": 5, @@ -7954,7 +7954,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 3, @@ -7977,7 +7977,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 4960, + "noteOrder": 5812, "time": 0.8863179940276037, "position": { "x": 3, @@ -8000,7 +8000,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 4960, + "noteOrder": 5812, "time": 0.8863179940276037, "position": { "x": 5, @@ -8023,7 +8023,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 5, @@ -8046,7 +8046,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 6, @@ -8069,7 +8069,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 4978.0, + "noteOrder": 5832.0, "time": 0.8884682075017124, "position": { "x": 6, @@ -8092,7 +8092,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 3, @@ -8115,7 +8115,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 4984, + "noteOrder": 5840, "time": 0.8906092711312504, "position": { "x": 3, @@ -8138,7 +8138,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 4984, + "noteOrder": 5840, "time": 0.8906092711312504, "position": { "x": 5, @@ -8161,7 +8161,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 5, @@ -8184,7 +8184,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 6, @@ -8207,7 +8207,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5002.0, + "noteOrder": 5860.0, "time": 0.8927503347607884, "position": { "x": 6, @@ -8230,7 +8230,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5020, + "noteOrder": 5882, "time": 0.8970416118644352, "position": { "x": 4, @@ -8253,7 +8253,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5032, + "noteOrder": 5896, "time": 0.8991826754939731, "position": { "x": 4, @@ -8276,7 +8276,7 @@ { "lineGroupId": 232, "indexInLine": 3, - "noteOrder": 5032, + "noteOrder": 5896, "time": 0.8991826754939731, "position": { "x": 5, @@ -8299,7 +8299,7 @@ { "lineGroupId": 232, "indexInLine": 4, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 5, @@ -8322,7 +8322,7 @@ { "lineGroupId": 232, "indexInLine": 5, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 7, @@ -8345,7 +8345,7 @@ { "lineGroupId": 232, "indexInLine": 6, - "noteOrder": 5050.0, + "noteOrder": 5916.0, "time": 0.9013328889680818, "position": { "x": 7, @@ -8368,7 +8368,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 4, @@ -8391,7 +8391,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 5056, + "noteOrder": 5925, "time": 0.9034739525976199, "position": { "x": 4, @@ -8414,7 +8414,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 5056, + "noteOrder": 5925, "time": 0.9034739525976199, "position": { "x": 5, @@ -8437,7 +8437,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 5, @@ -8460,7 +8460,7 @@ { "lineGroupId": 233, "indexInLine": 5, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 7, @@ -8483,7 +8483,7 @@ { "lineGroupId": 233, "indexInLine": 6, - "noteOrder": 5092, + "noteOrder": 5967, "time": 0.9099062933308045, "position": { "x": 7, @@ -8506,7 +8506,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 2, @@ -8529,7 +8529,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 5092, + "noteOrder": 5967, "time": 0.9099062933308045, "position": { "x": 4, @@ -8552,7 +8552,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 7, @@ -8575,7 +8575,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 7, @@ -8598,7 +8598,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 5, @@ -8621,7 +8621,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 3, @@ -8644,7 +8644,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5224, + "noteOrder": 6121, "time": 0.9334945926340055, "position": { "x": 3, @@ -8667,7 +8667,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 5224, + "noteOrder": 6121, "time": 0.9334945926340055, "position": { "x": 5, @@ -8690,7 +8690,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 5230.0, + "noteOrder": 6127.0, "time": 0.9334945926340055, "position": { "x": 5, @@ -8713,7 +8713,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 7, @@ -8736,7 +8736,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 5248, + "noteOrder": 6150, "time": 0.9377858697376523, "position": { "x": 7, @@ -8759,7 +8759,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 5248, + "noteOrder": 6150, "time": 0.9377858697376523, "position": { "x": 5, @@ -8782,7 +8782,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 5254.0, + "noteOrder": 6156.0, "time": 0.9377858697376523, "position": { "x": 5, @@ -8805,7 +8805,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 3, @@ -8828,7 +8828,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 5272, + "noteOrder": 6178, "time": 0.942077146841299, "position": { "x": 3, @@ -8851,7 +8851,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 5272, + "noteOrder": 6178, "time": 0.942077146841299, "position": { "x": 5, @@ -8874,7 +8874,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 5278.0, + "noteOrder": 6184.0, "time": 0.942077146841299, "position": { "x": 5, @@ -8897,7 +8897,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 5308, + "noteOrder": 6220, "time": 0.9485094875744837, "position": { "x": 3, @@ -8920,7 +8920,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 3, @@ -8943,7 +8943,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 5, @@ -8966,7 +8966,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 7, @@ -8989,7 +8989,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 5416, + "noteOrder": 6346, "time": 0.9678065097740378, "position": { "x": 7, @@ -9012,7 +9012,7 @@ { "lineGroupId": 247, "indexInLine": 3, - "noteOrder": 5416, + "noteOrder": 6346, "time": 0.9678065097740378, "position": { "x": 5, @@ -9035,7 +9035,7 @@ { "lineGroupId": 247, "indexInLine": 4, - "noteOrder": 5422.0, + "noteOrder": 6352.0, "time": 0.9678065097740378, "position": { "x": 5, @@ -9058,7 +9058,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 5428, + "noteOrder": 6360, "time": 0.9699567232481465, "position": { "x": 3, @@ -9081,7 +9081,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 5440, + "noteOrder": 6375, "time": 0.9720977868776847, "position": { "x": 3, @@ -9104,7 +9104,7 @@ { "lineGroupId": 248, "indexInLine": 3, - "noteOrder": 5440, + "noteOrder": 6375, "time": 0.9720977868776847, "position": { "x": 5, @@ -9127,7 +9127,7 @@ { "lineGroupId": 248, "indexInLine": 4, - "noteOrder": 5446.0, + "noteOrder": 6381.0, "time": 0.9720977868776847, "position": { "x": 5, @@ -9150,7 +9150,7 @@ { "lineGroupId": 249, "indexInLine": 1, - "noteOrder": 5452, + "noteOrder": 6389, "time": 0.9742480003517933, "position": { "x": 7, @@ -9173,7 +9173,7 @@ { "lineGroupId": 249, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 6403, "time": 0.9763890639813313, "position": { "x": 7, @@ -9196,7 +9196,7 @@ { "lineGroupId": 249, "indexInLine": 3, - "noteOrder": 5464, + "noteOrder": 6403, "time": 0.9763890639813313, "position": { "x": 5, @@ -9219,7 +9219,7 @@ { "lineGroupId": 249, "indexInLine": 4, - "noteOrder": 5470.0, + "noteOrder": 6409.0, "time": 0.9763890639813313, "position": { "x": 5, @@ -9242,7 +9242,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 265.5, + "noteOrder": 310.5, "time": 0.04717659860640181, "position": { "x": 5, @@ -9270,7 +9270,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 457.5, + "noteOrder": 535.5, "time": 0.08148851574643418, "position": { "x": 5, @@ -9298,7 +9298,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 649.5, + "noteOrder": 760.5, "time": 0.11580043288646652, "position": { "x": 5, @@ -9326,7 +9326,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 865.5, + "noteOrder": 1013.5, "time": 0.15440362713014558, "position": { "x": 5, @@ -9354,7 +9354,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1057.5, + "noteOrder": 1239.5, "time": 0.18871554427017795, "position": { "x": 5, @@ -9382,7 +9382,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1609.5, + "noteOrder": 1885.5, "time": 0.2873600185866283, "position": { "x": 5, @@ -9410,7 +9410,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1801.5, + "noteOrder": 2110.5, "time": 0.32167193572666064, "position": { "x": 5, @@ -9438,7 +9438,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2016.5, + "noteOrder": 2362.5, "time": 0.36011043276806753, "position": { "x": 5, @@ -9466,7 +9466,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2205.5, + "noteOrder": 2584.5, "time": 0.3939008087675714, "position": { "x": 5, @@ -9494,7 +9494,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2542.5, + "noteOrder": 2978.5, "time": 0.4540244374414788, "position": { "x": 5, @@ -9522,7 +9522,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3033.5, + "noteOrder": 3555.5, "time": 0.5418995446982443, "position": { "x": 5, @@ -9550,7 +9550,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3197.5, + "noteOrder": 3747.5, "time": 0.5711790473244052, "position": { "x": 5, @@ -9578,7 +9578,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3361.5, + "noteOrder": 3939.5, "time": 0.6004585499505661, "position": { "x": 5, @@ -9606,7 +9606,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3545.5, + "noteOrder": 4155.5, "time": 0.6333979904049972, "position": { "x": 5, @@ -9634,7 +9634,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3772.5, + "noteOrder": 4420.5, "time": 0.6739226520085181, "position": { "x": 5, @@ -9662,7 +9662,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3941.5, + "noteOrder": 4618.5, "time": 0.7040347904906105, "position": { "x": 5, @@ -9690,7 +9690,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4469.5, + "noteOrder": 5236.5, "time": 0.7983971375479848, "position": { "x": 5, @@ -9718,7 +9718,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4517.5, + "noteOrder": 5293.5, "time": 0.8069705419107075, "position": { "x": 5, @@ -9746,7 +9746,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4685.5, + "noteOrder": 5490.5, "time": 0.8370003317916639, "position": { "x": 5, @@ -9774,7 +9774,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4709.5, + "noteOrder": 5518.5, "time": 0.8412824590507398, "position": { "x": 5, @@ -9802,7 +9802,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5477.5, + "noteOrder": 6418.5, "time": 0.9785301276108692, "position": { "x": 5, @@ -9843,7 +9843,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 150, "NPS": "4.05", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a_blockless.json index 597e4052..d88af45b 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "Where's The Party At difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 112, "time": 0.017155958570016176, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 141, "time": 0.021447235673662888, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 169, "time": 0.025738512777309604, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 197, "time": 0.030020640036385642, "position": { "x": 3, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 225, "time": 0.03431191714003235, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 253, "time": 0.03860319424367907, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 366, "time": 0.05575915281369524, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 394, "time": 0.060050429917341955, "position": { "x": 7, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 422, "time": 0.06433255717641799, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 450, "time": 0.0686238342800647, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 478, "time": 0.07291511138371141, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 591, "time": 0.09007106995372759, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 619, "time": 0.09436234705737431, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 647, "time": 0.09864447431645035, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 675, "time": 0.10293575142009706, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 703, "time": 0.10722702852374376, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 816, "time": 0.12438298709375994, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 844, "time": 0.12867426419740666, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 872, "time": 0.1329563914564827, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 3, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 804, + "noteOrder": 942, "time": 0.14368000929331415, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 956, "time": 0.14583022276742283, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 828, + "noteOrder": 970, "time": 0.14797128639696086, "position": { "x": 5, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 924, + "noteOrder": 1083, "time": 0.16512724496697703, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1097, "time": 0.16726830859651504, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 5, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 1153, "time": 0.1758508628038085, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1209, "time": 0.1844242671665312, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1116, + "noteOrder": 1308, "time": 0.19943916210700938, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1322, "time": 0.20158022573654738, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 1378, "time": 0.21016277994384083, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1434, "time": 0.21873618430656358, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1491, "time": 0.227318738513857, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1603, "time": 0.2444746970838732, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1416, + "noteOrder": 1659, "time": 0.2530481014465959, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1464, + "noteOrder": 1716, "time": 0.2616306556538894, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1772, "time": 0.27020406001661207, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1800, "time": 0.2744953371202588, "position": { "x": 8, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1548, + "noteOrder": 1814, "time": 0.27663640074979684, "position": { "x": 5, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1828, "time": 0.27878661422390555, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1572, + "noteOrder": 1842, "time": 0.2809276778534435, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1856, "time": 0.28307789132755223, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1870, "time": 0.28521895495709026, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 2138, "time": 0.3259632128303073, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 2166, "time": 0.33024534008938344, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 2194, "time": 0.33452746734845945, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 2222, "time": 0.3388095946075355, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 2250, "time": 0.3430734221774701, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 2278, "time": 0.34734639959197555, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2306, "time": 0.3516010773173395, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1991, + "noteOrder": 2334, "time": 0.35586490488727424, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2361, "time": 0.36011043276806753, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2039, + "noteOrder": 2389, "time": 0.3643559606488609, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2417, "time": 0.3686014885296542, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2086, + "noteOrder": 2445, "time": 0.37283786656587686, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2110, + "noteOrder": 2473, "time": 0.37706509475752886, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2134, + "noteOrder": 2500, "time": 0.3812831731046102, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2157, + "noteOrder": 2528, "time": 0.38550125145169145, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2555, "time": 0.3897010301096315, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2251, + "noteOrder": 2638, "time": 0.40225461686059794, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2274, + "noteOrder": 2665, "time": 0.4064177961402552, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2343, + "noteOrder": 2746, "time": 0.4187792361552375, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2366, + "noteOrder": 2773, "time": 0.42285091698918803, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2799, "time": 0.4268951482894265, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 2812, "time": 0.4288989642504044, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2411, + "noteOrder": 2826, "time": 0.4309027802113823, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2422, + "noteOrder": 2839, "time": 0.4328791466386482, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2433, + "noteOrder": 2852, "time": 0.4348646629104847, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2444, + "noteOrder": 2864, "time": 0.4368227296486092, "position": { "x": 5, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2877, "time": 0.4387899462313044, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2466, + "noteOrder": 2890, "time": 0.44072971328028754, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2530, + "noteOrder": 2965, "time": 0.4521487193044903, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2530, + "noteOrder": 2965, "time": 0.4521487193044903, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2582, + "noteOrder": 3026, "time": 0.4613809124763017, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2602, + "noteOrder": 3050, "time": 0.4650408503045718, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2684, + "noteOrder": 3146, "time": 0.47968060161765225, "position": { "x": 8, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 2, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2746, + "noteOrder": 3218, "time": 0.49066041510246267, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 3242, "time": 0.49432035293073273, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2828, + "noteOrder": 3314, "time": 0.5053001664155431, "position": { "x": 5, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2848, + "noteOrder": 3338, "time": 0.5089601042438132, "position": { "x": 2, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2909, + "noteOrder": 3410, "time": 0.5199399177286236, "position": { "x": 3, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2950, + "noteOrder": 3458, "time": 0.5272597933851638, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3073, + "noteOrder": 3602, "time": 0.5492194203547845, "position": { "x": 7, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3114, + "noteOrder": 3650, "time": 0.5565392960113248, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3237, + "noteOrder": 3794, "time": 0.5784989229809455, "position": { "x": 3, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3278, + "noteOrder": 3842, "time": 0.5858187986374858, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3401, + "noteOrder": 3986, "time": 0.6077784256071064, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3442, + "noteOrder": 4034, "time": 0.6150983012636466, "position": { "x": 3, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3582, + "noteOrder": 4198, "time": 0.6402146246101503, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3615, + "noteOrder": 4236, "time": 0.6459881765342464, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 4270, "time": 0.6512035879395314, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 4302, "time": 0.6560438557174186, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3697, + "noteOrder": 4332, "time": 0.6606645272256095, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 4362, "time": 0.6651571009098112, "position": { "x": 6, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3747, + "noteOrder": 4391, "time": 0.6695673259928766, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 4419, "time": 0.6739226520085181, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3795, + "noteOrder": 4448, "time": 0.6782596783350182, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 4476, "time": 0.6825692551278063, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3844, + "noteOrder": 4504, "time": 0.6868696820760237, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 4589, "time": 0.6997526632315345, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3928, + "noteOrder": 4603, "time": 0.7018937268610724, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4048, + "noteOrder": 4743, "time": 0.7233318126901647, "position": { "x": 4, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 6, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4898, "time": 0.7469292618379363, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4204, + "noteOrder": 4926, "time": 0.751220538941583, "position": { "x": 8, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 5010, "time": 0.7640852204079525, "position": { "x": 5, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 5039, "time": 0.7683764975115992, "position": { "x": 8, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 5095, "time": 0.7769499018743219, "position": { "x": 2, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 8, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4420, + "noteOrder": 5179, "time": 0.7898145833406913, "position": { "x": 4, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4468, + "noteOrder": 5235, "time": 0.7983971375479848, "position": { "x": 2, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4516, + "noteOrder": 5292, "time": 0.8069705419107075, "position": { "x": 8, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 6, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4552, + "noteOrder": 5334, "time": 0.8134028826438923, "position": { "x": 4, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 5348, "time": 0.815553096118001, "position": { "x": 2, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4576, + "noteOrder": 5362, "time": 0.817694159747539, "position": { "x": 4, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 5376, "time": 0.8198443732216477, "position": { "x": 2, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4600, + "noteOrder": 5390, "time": 0.8219854368511857, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 5404, "time": 0.8241265004807237, "position": { "x": 2, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4624, + "noteOrder": 5418, "time": 0.8262675641102618, "position": { "x": 7, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4660, + "noteOrder": 5460, "time": 0.8327090546880171, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4660, + "noteOrder": 5460, "time": 0.8327090546880171, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 5, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 7, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 4, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5008, + "noteOrder": 5868, "time": 0.8948913983903265, "position": { "x": 7, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 5, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 8, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 4, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 5, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 6276, "time": 0.9570920417817771, "position": { "x": 2, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 6304, "time": 0.961374169040853, "position": { "x": 6, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5476, + "noteOrder": 6417, "time": 0.9785301276108692, "position": { "x": 3, @@ -3147,7 +3147,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 281, "time": 0.042894471347325776, "position": { "x": 7, @@ -3170,7 +3170,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 7, @@ -3193,7 +3193,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 506, "time": 0.07720638848735814, "position": { "x": 3, @@ -3216,7 +3216,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 3, @@ -3239,7 +3239,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 731, "time": 0.11151830562739048, "position": { "x": 7, @@ -3262,7 +3262,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 7, @@ -3285,7 +3285,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 900, "time": 0.1372476685601294, "position": { "x": 3, @@ -3308,7 +3308,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 780, + "noteOrder": 914, "time": 0.13938873218966744, "position": { "x": 3, @@ -3331,7 +3331,7 @@ { "lineGroupId": 29, "indexInLine": 3, - "noteOrder": 780, + "noteOrder": 914, "time": 0.13938873218966744, "position": { "x": 5, @@ -3354,7 +3354,7 @@ { "lineGroupId": 29, "indexInLine": 4, - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 5, @@ -3377,7 +3377,7 @@ { "lineGroupId": 29, "indexInLine": 5, - "noteOrder": 792, + "noteOrder": 928, "time": 0.14153894566377612, "position": { "x": 6, @@ -3400,7 +3400,7 @@ { "lineGroupId": 29, "indexInLine": 6, - "noteOrder": 798.0, + "noteOrder": 934.0, "time": 0.14153894566377612, "position": { "x": 6, @@ -3423,7 +3423,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 7, @@ -3446,7 +3446,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 876, + "noteOrder": 1027, "time": 0.1565446907596836, "position": { "x": 7, @@ -3469,7 +3469,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 876, + "noteOrder": 1027, "time": 0.1565446907596836, "position": { "x": 5, @@ -3492,7 +3492,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 5, @@ -3515,7 +3515,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 4, @@ -3538,7 +3538,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 894.0, + "noteOrder": 1047.0, "time": 0.15869490423379232, "position": { "x": 4, @@ -3561,7 +3561,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 888, + "noteOrder": 1041, "time": 0.15869490423379232, "position": { "x": 7, @@ -3584,7 +3584,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 900, + "noteOrder": 1055, "time": 0.16083596786333032, "position": { "x": 7, @@ -3607,7 +3607,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 900, + "noteOrder": 1055, "time": 0.16083596786333032, "position": { "x": 5, @@ -3630,7 +3630,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 5, @@ -3653,7 +3653,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 4, @@ -3676,7 +3676,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 918.0, + "noteOrder": 1075.0, "time": 0.162986181337439, "position": { "x": 4, @@ -3699,7 +3699,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 948, + "noteOrder": 1111, "time": 0.16940937222605307, "position": { "x": 3, @@ -3722,7 +3722,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 3, @@ -3745,7 +3745,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 5, @@ -3768,7 +3768,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 7, @@ -3791,7 +3791,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 1195, "time": 0.1822832035369932, "position": { "x": 7, @@ -3814,7 +3814,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1020, + "noteOrder": 1195, "time": 0.1822832035369932, "position": { "x": 5, @@ -3837,7 +3837,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1026.0, + "noteOrder": 1201.0, "time": 0.1822832035369932, "position": { "x": 5, @@ -3860,7 +3860,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 3, @@ -3883,7 +3883,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 1252, "time": 0.19085660789971598, "position": { "x": 3, @@ -3906,7 +3906,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 1252, "time": 0.19085660789971598, "position": { "x": 5, @@ -3929,7 +3929,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 5, @@ -3952,7 +3952,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 6, @@ -3975,7 +3975,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 1272.0, "time": 0.19300682137382466, "position": { "x": 6, @@ -3998,7 +3998,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1266, "time": 0.19300682137382466, "position": { "x": 3, @@ -4021,7 +4021,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 1280, "time": 0.19514788500336266, "position": { "x": 3, @@ -4044,7 +4044,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 1280, "time": 0.19514788500336266, "position": { "x": 5, @@ -4067,7 +4067,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 5, @@ -4090,7 +4090,7 @@ { "lineGroupId": 48, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 6, @@ -4113,7 +4113,7 @@ { "lineGroupId": 48, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1300.0, "time": 0.19729809847747135, "position": { "x": 6, @@ -4136,7 +4136,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1140, + "noteOrder": 1336, "time": 0.20372128936608544, "position": { "x": 7, @@ -4159,7 +4159,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 7, @@ -4182,7 +4182,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 5, @@ -4205,7 +4205,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 3, @@ -4228,7 +4228,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1212, + "noteOrder": 1420, "time": 0.21659512067702558, "position": { "x": 3, @@ -4251,7 +4251,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1212, + "noteOrder": 1420, "time": 0.21659512067702558, "position": { "x": 5, @@ -4274,7 +4274,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1218.0, + "noteOrder": 1426.0, "time": 0.21659512067702558, "position": { "x": 5, @@ -4297,7 +4297,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 7, @@ -4320,7 +4320,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1491, "time": 0.227318738513857, "position": { "x": 7, @@ -4343,7 +4343,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 5, @@ -4366,7 +4366,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 2, @@ -4389,7 +4389,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1547, "time": 0.23589214287657975, "position": { "x": 2, @@ -4412,7 +4412,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1320, + "noteOrder": 1547, "time": 0.23589214287657975, "position": { "x": 5, @@ -4435,7 +4435,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1332, + "noteOrder": 1561, "time": 0.23803320650611778, "position": { "x": 5, @@ -4458,7 +4458,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1332, + "noteOrder": 1561, "time": 0.23803320650611778, "position": { "x": 3, @@ -4481,7 +4481,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1338.0, + "noteOrder": 1567.0, "time": 0.23803320650611778, "position": { "x": 3, @@ -4504,7 +4504,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1575, "time": 0.24018341998022646, "position": { "x": 2, @@ -4527,7 +4527,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 1603, "time": 0.2444746970838732, "position": { "x": 2, @@ -4550,7 +4550,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 4, @@ -4573,7 +4573,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 7, @@ -4596,7 +4596,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 1645, "time": 0.2509070378170579, "position": { "x": 7, @@ -4619,7 +4619,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 1645, "time": 0.2509070378170579, "position": { "x": 5, @@ -4642,7 +4642,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 1651.0, "time": 0.2509070378170579, "position": { "x": 5, @@ -4665,7 +4665,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 3, @@ -4688,7 +4688,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1716, "time": 0.2616306556538894, "position": { "x": 3, @@ -4711,7 +4711,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 5, @@ -4734,7 +4734,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 8, @@ -4757,7 +4757,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1772, "time": 0.27020406001661207, "position": { "x": 8, @@ -4780,7 +4780,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2477, + "noteOrder": 2903, "time": 0.4426694803292707, "position": { "x": 4, @@ -4803,7 +4803,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2488, + "noteOrder": 2915, "time": 0.4445817978445418, "position": { "x": 4, @@ -4826,7 +4826,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2488, + "noteOrder": 2915, "time": 0.4445817978445418, "position": { "x": 5, @@ -4849,7 +4849,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 5, @@ -4872,7 +4872,7 @@ { "lineGroupId": 111, "indexInLine": 5, - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 6, @@ -4895,7 +4895,7 @@ { "lineGroupId": 111, "indexInLine": 6, - "noteOrder": 2504.0, + "noteOrder": 2934.0, "time": 0.44649411535981304, "position": { "x": 6, @@ -4918,7 +4918,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2561, + "noteOrder": 3002, "time": 0.4577209746480316, "position": { "x": 6, @@ -4941,7 +4941,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 2582, + "noteOrder": 3026, "time": 0.4613809124763017, "position": { "x": 6, @@ -4964,7 +4964,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 2623, + "noteOrder": 3074, "time": 0.46870078813284194, "position": { "x": 5, @@ -4987,7 +4987,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2623, + "noteOrder": 3074, "time": 0.46870078813284194, "position": { "x": 3, @@ -5010,7 +5010,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 3122, "time": 0.4760206637893822, "position": { "x": 3, @@ -5033,7 +5033,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 2643, + "noteOrder": 3098, "time": 0.47236072596111206, "position": { "x": 7, @@ -5056,7 +5056,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 3122, "time": 0.4760206637893822, "position": { "x": 5, @@ -5079,7 +5079,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 5, @@ -5102,7 +5102,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2725, + "noteOrder": 3194, "time": 0.48700047727419254, "position": { "x": 4, @@ -5125,7 +5125,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2746, + "noteOrder": 3218, "time": 0.49066041510246267, "position": { "x": 4, @@ -5148,7 +5148,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 2787, + "noteOrder": 3266, "time": 0.49798029075900285, "position": { "x": 5, @@ -5171,7 +5171,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 2787, + "noteOrder": 3266, "time": 0.49798029075900285, "position": { "x": 7, @@ -5194,7 +5194,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 7, @@ -5217,7 +5217,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 4, @@ -5240,7 +5240,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 4, @@ -5263,7 +5263,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 2889, + "noteOrder": 3386, "time": 0.5162799799003535, "position": { "x": 4, @@ -5286,7 +5286,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 4, @@ -5309,7 +5309,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 6, @@ -5332,7 +5332,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 6, @@ -5355,7 +5355,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 2991, + "noteOrder": 3506, "time": 0.5345796690417041, "position": { "x": 6, @@ -5378,7 +5378,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3002, + "noteOrder": 3518, "time": 0.5364096379558391, "position": { "x": 6, @@ -5401,7 +5401,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 4, @@ -5424,7 +5424,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 3032, + "noteOrder": 3554, "time": 0.5418995446982443, "position": { "x": 4, @@ -5447,7 +5447,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 2991, + "noteOrder": 3506, "time": 0.5345796690417041, "position": { "x": 4, @@ -5470,7 +5470,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3002, + "noteOrder": 3518, "time": 0.5364096379558391, "position": { "x": 4, @@ -5493,7 +5493,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 6, @@ -5516,7 +5516,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3032, + "noteOrder": 3554, "time": 0.5418995446982443, "position": { "x": 6, @@ -5539,7 +5539,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3053, + "noteOrder": 3578, "time": 0.5455594825265144, "position": { "x": 6, @@ -5562,7 +5562,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 6, @@ -5585,7 +5585,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 4, @@ -5608,7 +5608,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 4, @@ -5631,7 +5631,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 6, @@ -5654,7 +5654,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3196, + "noteOrder": 3746, "time": 0.5711790473244052, "position": { "x": 6, @@ -5677,7 +5677,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3155, + "noteOrder": 3698, "time": 0.563859171667865, "position": { "x": 8, @@ -5700,7 +5700,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3176, + "noteOrder": 3722, "time": 0.567519109496135, "position": { "x": 4, @@ -5723,7 +5723,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3196, + "noteOrder": 3746, "time": 0.5711790473244052, "position": { "x": 4, @@ -5746,7 +5746,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3217, + "noteOrder": 3770, "time": 0.5748389851526754, "position": { "x": 4, @@ -5769,7 +5769,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 4, @@ -5792,7 +5792,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 6, @@ -5815,7 +5815,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 6, @@ -5838,7 +5838,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 6, @@ -5861,7 +5861,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 3329, + "noteOrder": 3902, "time": 0.594968643208161, "position": { "x": 6, @@ -5884,7 +5884,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 4, @@ -5907,7 +5907,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 4, @@ -5930,7 +5930,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 4, @@ -5953,7 +5953,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3329, + "noteOrder": 3902, "time": 0.594968643208161, "position": { "x": 4, @@ -5976,7 +5976,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 6, @@ -5999,7 +5999,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 6, @@ -6022,7 +6022,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3380, + "noteOrder": 3962, "time": 0.6041184877788364, "position": { "x": 6, @@ -6045,7 +6045,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 6, @@ -6068,7 +6068,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 4, @@ -6091,7 +6091,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 4, @@ -6114,7 +6114,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 6, @@ -6137,7 +6137,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 6, @@ -6160,7 +6160,7 @@ { "lineGroupId": 160, "indexInLine": 3, - "noteOrder": 3544, + "noteOrder": 4154, "time": 0.6333979904049972, "position": { "x": 6, @@ -6183,7 +6183,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 3483, + "noteOrder": 4082, "time": 0.622418176920187, "position": { "x": 8, @@ -6206,7 +6206,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 5, @@ -6229,7 +6229,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 3524, + "noteOrder": 4130, "time": 0.6297380525767271, "position": { "x": 5, @@ -6252,7 +6252,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 3544, + "noteOrder": 4154, "time": 0.6333979904049972, "position": { "x": 2, @@ -6275,7 +6275,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3868, + "noteOrder": 4532, "time": 0.691170109024241, "position": { "x": 3, @@ -6298,7 +6298,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3880, + "noteOrder": 4546, "time": 0.6933111726537791, "position": { "x": 3, @@ -6321,7 +6321,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 3880, + "noteOrder": 4546, "time": 0.6933111726537791, "position": { "x": 5, @@ -6344,7 +6344,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 3886.0, + "noteOrder": 4552.0, "time": 0.6933111726537791, "position": { "x": 5, @@ -6367,7 +6367,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3892, + "noteOrder": 4560, "time": 0.6954613861278877, "position": { "x": 7, @@ -6390,7 +6390,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3904, + "noteOrder": 4575, "time": 0.6976024497574258, "position": { "x": 7, @@ -6413,7 +6413,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 3904, + "noteOrder": 4575, "time": 0.6976024497574258, "position": { "x": 5, @@ -6436,7 +6436,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 3910.0, + "noteOrder": 4581.0, "time": 0.6976024497574258, "position": { "x": 5, @@ -6459,7 +6459,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3964, + "noteOrder": 4645, "time": 0.7083260675942572, "position": { "x": 6, @@ -6482,7 +6482,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3976, + "noteOrder": 4659, "time": 0.7104671312237952, "position": { "x": 6, @@ -6505,7 +6505,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 3976, + "noteOrder": 4659, "time": 0.7104671312237952, "position": { "x": 5, @@ -6528,7 +6528,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 5, @@ -6551,7 +6551,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 4, @@ -6574,7 +6574,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 3994.0, + "noteOrder": 4679.0, "time": 0.7126173446979038, "position": { "x": 4, @@ -6597,7 +6597,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 6, @@ -6620,7 +6620,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4000, + "noteOrder": 4687, "time": 0.714758408327442, "position": { "x": 6, @@ -6643,7 +6643,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4000, + "noteOrder": 4687, "time": 0.714758408327442, "position": { "x": 5, @@ -6666,7 +6666,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 5, @@ -6689,7 +6689,7 @@ { "lineGroupId": 181, "indexInLine": 5, - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 4, @@ -6712,7 +6712,7 @@ { "lineGroupId": 181, "indexInLine": 6, - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 4, @@ -6735,7 +6735,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4060, + "noteOrder": 4757, "time": 0.7254820261642734, "position": { "x": 6, @@ -6758,7 +6758,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4072, + "noteOrder": 4771, "time": 0.7276230897938114, "position": { "x": 6, @@ -6781,7 +6781,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4072, + "noteOrder": 4771, "time": 0.7276230897938114, "position": { "x": 5, @@ -6804,7 +6804,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 5, @@ -6827,7 +6827,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 4, @@ -6850,7 +6850,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4090.0, + "noteOrder": 4791.0, "time": 0.72977330326792, "position": { "x": 4, @@ -6873,7 +6873,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 6, @@ -6896,7 +6896,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 4096, + "noteOrder": 4800, "time": 0.7319143668974581, "position": { "x": 6, @@ -6919,7 +6919,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4096, + "noteOrder": 4800, "time": 0.7319143668974581, "position": { "x": 5, @@ -6942,7 +6942,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 5, @@ -6965,7 +6965,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 4, @@ -6988,7 +6988,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 4114.0, + "noteOrder": 4820.0, "time": 0.7340645803715669, "position": { "x": 4, @@ -7011,7 +7011,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 4132, + "noteOrder": 4842, "time": 0.7383467076306428, "position": { "x": 4, @@ -7034,7 +7034,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 4, @@ -7057,7 +7057,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 6, @@ -7080,7 +7080,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 8, @@ -7103,7 +7103,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 8, @@ -7126,7 +7126,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 6, @@ -7149,7 +7149,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 4, @@ -7172,7 +7172,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 4372, + "noteOrder": 5123, "time": 0.7812411789779686, "position": { "x": 4, @@ -7195,7 +7195,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4372, + "noteOrder": 5123, "time": 0.7812411789779686, "position": { "x": 6, @@ -7218,7 +7218,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4420, + "noteOrder": 5179, "time": 0.7898145833406913, "position": { "x": 6, @@ -7241,7 +7241,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 6, @@ -7264,7 +7264,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4468, + "noteOrder": 5235, "time": 0.7983971375479848, "position": { "x": 6, @@ -7287,7 +7287,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 4, @@ -7310,7 +7310,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 4516, + "noteOrder": 5292, "time": 0.8069705419107075, "position": { "x": 4, @@ -7333,7 +7333,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4732, + "noteOrder": 5545, "time": 0.8455737361543866, "position": { "x": 7, @@ -7356,7 +7356,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 7, @@ -7379,7 +7379,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 5, @@ -7402,7 +7402,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 3, @@ -7425,7 +7425,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 4816, + "noteOrder": 5643, "time": 0.8605794812502942, "position": { "x": 3, @@ -7448,7 +7448,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 4816, + "noteOrder": 5643, "time": 0.8605794812502942, "position": { "x": 5, @@ -7471,7 +7471,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 4822.0, + "noteOrder": 5649.0, "time": 0.8605794812502942, "position": { "x": 5, @@ -7494,7 +7494,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 6, @@ -7517,7 +7517,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4840, + "noteOrder": 5671, "time": 0.8648707583539408, "position": { "x": 6, @@ -7540,7 +7540,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 4840, + "noteOrder": 5671, "time": 0.8648707583539408, "position": { "x": 5, @@ -7563,7 +7563,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 5, @@ -7586,7 +7586,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 4, @@ -7609,7 +7609,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 4858.0, + "noteOrder": 5691.0, "time": 0.8670209718280495, "position": { "x": 4, @@ -7632,7 +7632,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 6, @@ -7655,7 +7655,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4864, + "noteOrder": 5700, "time": 0.8691620354575875, "position": { "x": 6, @@ -7678,7 +7678,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4864, + "noteOrder": 5700, "time": 0.8691620354575875, "position": { "x": 5, @@ -7701,7 +7701,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 5, @@ -7724,7 +7724,7 @@ { "lineGroupId": 225, "indexInLine": 5, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 4, @@ -7747,7 +7747,7 @@ { "lineGroupId": 225, "indexInLine": 6, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 4, @@ -7770,7 +7770,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 8, @@ -7793,7 +7793,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 5, @@ -7816,7 +7816,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 4924, + "noteOrder": 5770, "time": 0.879885653294419, "position": { "x": 2, @@ -7839,7 +7839,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 4936, + "noteOrder": 5784, "time": 0.882026716923957, "position": { "x": 2, @@ -7862,7 +7862,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 4936, + "noteOrder": 5784, "time": 0.882026716923957, "position": { "x": 4, @@ -7885,7 +7885,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 4, @@ -7908,7 +7908,7 @@ { "lineGroupId": 227, "indexInLine": 5, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 5, @@ -7931,7 +7931,7 @@ { "lineGroupId": 227, "indexInLine": 6, - "noteOrder": 4954.0, + "noteOrder": 5804.0, "time": 0.8841769303980657, "position": { "x": 5, @@ -7954,7 +7954,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 3, @@ -7977,7 +7977,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 4960, + "noteOrder": 5812, "time": 0.8863179940276037, "position": { "x": 3, @@ -8000,7 +8000,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 4960, + "noteOrder": 5812, "time": 0.8863179940276037, "position": { "x": 5, @@ -8023,7 +8023,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 5, @@ -8046,7 +8046,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 6, @@ -8069,7 +8069,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 4978.0, + "noteOrder": 5832.0, "time": 0.8884682075017124, "position": { "x": 6, @@ -8092,7 +8092,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 3, @@ -8115,7 +8115,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 4984, + "noteOrder": 5840, "time": 0.8906092711312504, "position": { "x": 3, @@ -8138,7 +8138,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 4984, + "noteOrder": 5840, "time": 0.8906092711312504, "position": { "x": 5, @@ -8161,7 +8161,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 5, @@ -8184,7 +8184,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 6, @@ -8207,7 +8207,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5002.0, + "noteOrder": 5860.0, "time": 0.8927503347607884, "position": { "x": 6, @@ -8230,7 +8230,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5020, + "noteOrder": 5882, "time": 0.8970416118644352, "position": { "x": 4, @@ -8253,7 +8253,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5032, + "noteOrder": 5896, "time": 0.8991826754939731, "position": { "x": 4, @@ -8276,7 +8276,7 @@ { "lineGroupId": 232, "indexInLine": 3, - "noteOrder": 5032, + "noteOrder": 5896, "time": 0.8991826754939731, "position": { "x": 5, @@ -8299,7 +8299,7 @@ { "lineGroupId": 232, "indexInLine": 4, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 5, @@ -8322,7 +8322,7 @@ { "lineGroupId": 232, "indexInLine": 5, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 7, @@ -8345,7 +8345,7 @@ { "lineGroupId": 232, "indexInLine": 6, - "noteOrder": 5050.0, + "noteOrder": 5916.0, "time": 0.9013328889680818, "position": { "x": 7, @@ -8368,7 +8368,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 5044, + "noteOrder": 5910, "time": 0.9013328889680818, "position": { "x": 4, @@ -8391,7 +8391,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 5056, + "noteOrder": 5925, "time": 0.9034739525976199, "position": { "x": 4, @@ -8414,7 +8414,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 5056, + "noteOrder": 5925, "time": 0.9034739525976199, "position": { "x": 5, @@ -8437,7 +8437,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 5, @@ -8460,7 +8460,7 @@ { "lineGroupId": 233, "indexInLine": 5, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 7, @@ -8483,7 +8483,7 @@ { "lineGroupId": 233, "indexInLine": 6, - "noteOrder": 5092, + "noteOrder": 5967, "time": 0.9099062933308045, "position": { "x": 7, @@ -8506,7 +8506,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 2, @@ -8529,7 +8529,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 5092, + "noteOrder": 5967, "time": 0.9099062933308045, "position": { "x": 4, @@ -8552,7 +8552,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 7, @@ -8575,7 +8575,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 7, @@ -8598,7 +8598,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 5, @@ -8621,7 +8621,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 3, @@ -8644,7 +8644,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5224, + "noteOrder": 6121, "time": 0.9334945926340055, "position": { "x": 3, @@ -8667,7 +8667,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 5224, + "noteOrder": 6121, "time": 0.9334945926340055, "position": { "x": 5, @@ -8690,7 +8690,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 5230.0, + "noteOrder": 6127.0, "time": 0.9334945926340055, "position": { "x": 5, @@ -8713,7 +8713,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 7, @@ -8736,7 +8736,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 5248, + "noteOrder": 6150, "time": 0.9377858697376523, "position": { "x": 7, @@ -8759,7 +8759,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 5248, + "noteOrder": 6150, "time": 0.9377858697376523, "position": { "x": 5, @@ -8782,7 +8782,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 5254.0, + "noteOrder": 6156.0, "time": 0.9377858697376523, "position": { "x": 5, @@ -8805,7 +8805,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 3, @@ -8828,7 +8828,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 5272, + "noteOrder": 6178, "time": 0.942077146841299, "position": { "x": 3, @@ -8851,7 +8851,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 5272, + "noteOrder": 6178, "time": 0.942077146841299, "position": { "x": 5, @@ -8874,7 +8874,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 5278.0, + "noteOrder": 6184.0, "time": 0.942077146841299, "position": { "x": 5, @@ -8897,7 +8897,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 5308, + "noteOrder": 6220, "time": 0.9485094875744837, "position": { "x": 3, @@ -8920,7 +8920,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 3, @@ -8943,7 +8943,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 5, @@ -8966,7 +8966,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 7, @@ -8989,7 +8989,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 5416, + "noteOrder": 6346, "time": 0.9678065097740378, "position": { "x": 7, @@ -9012,7 +9012,7 @@ { "lineGroupId": 247, "indexInLine": 3, - "noteOrder": 5416, + "noteOrder": 6346, "time": 0.9678065097740378, "position": { "x": 5, @@ -9035,7 +9035,7 @@ { "lineGroupId": 247, "indexInLine": 4, - "noteOrder": 5422.0, + "noteOrder": 6352.0, "time": 0.9678065097740378, "position": { "x": 5, @@ -9058,7 +9058,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 5428, + "noteOrder": 6360, "time": 0.9699567232481465, "position": { "x": 3, @@ -9081,7 +9081,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 5440, + "noteOrder": 6375, "time": 0.9720977868776847, "position": { "x": 3, @@ -9104,7 +9104,7 @@ { "lineGroupId": 248, "indexInLine": 3, - "noteOrder": 5440, + "noteOrder": 6375, "time": 0.9720977868776847, "position": { "x": 5, @@ -9127,7 +9127,7 @@ { "lineGroupId": 248, "indexInLine": 4, - "noteOrder": 5446.0, + "noteOrder": 6381.0, "time": 0.9720977868776847, "position": { "x": 5, @@ -9150,7 +9150,7 @@ { "lineGroupId": 249, "indexInLine": 1, - "noteOrder": 5452, + "noteOrder": 6389, "time": 0.9742480003517933, "position": { "x": 7, @@ -9173,7 +9173,7 @@ { "lineGroupId": 249, "indexInLine": 2, - "noteOrder": 5464, + "noteOrder": 6403, "time": 0.9763890639813313, "position": { "x": 7, @@ -9196,7 +9196,7 @@ { "lineGroupId": 249, "indexInLine": 3, - "noteOrder": 5464, + "noteOrder": 6403, "time": 0.9763890639813313, "position": { "x": 5, @@ -9219,7 +9219,7 @@ { "lineGroupId": 249, "indexInLine": 4, - "noteOrder": 5470.0, + "noteOrder": 6409.0, "time": 0.9763890639813313, "position": { "x": 5, @@ -9254,7 +9254,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 150, "NPS": "4.05", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b.json index f547f42d..024978d1 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "Where's The Party At difficulty_1b", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 112, "time": 0.017155958570016176, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 169, "time": 0.025738512777309604, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 225, "time": 0.03431191714003235, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 394, "time": 0.060050429917341955, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 450, "time": 0.0686238342800647, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 619, "time": 0.09436234705737431, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 675, "time": 0.10293575142009706, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 816, "time": 0.12438298709375994, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 844, "time": 0.12867426419740666, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 1575, "time": 0.24018341998022646, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1800, "time": 0.2744953371202588, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1828, "time": 0.27878661422390555, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1856, "time": 0.28307789132755223, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1884, "time": 0.2873600185866283, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 2194, "time": 0.33452746734845945, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 2250, "time": 0.3430734221774701, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2306, "time": 0.3516010773173395, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2361, "time": 0.36011043276806753, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2039, + "noteOrder": 2389, "time": 0.3643559606488609, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2417, "time": 0.3686014885296542, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2086, + "noteOrder": 2445, "time": 0.37283786656587686, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2110, + "noteOrder": 2473, "time": 0.37706509475752886, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2134, + "noteOrder": 2500, "time": 0.3812831731046102, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2157, + "noteOrder": 2528, "time": 0.38550125145169145, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2555, "time": 0.3897010301096315, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2799, "time": 0.4268951482894265, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2411, + "noteOrder": 2826, "time": 0.4309027802113823, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2433, + "noteOrder": 2852, "time": 0.4348646629104847, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2877, "time": 0.4387899462313044, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2477, + "noteOrder": 2903, "time": 0.4426694803292707, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2561, + "noteOrder": 3002, "time": 0.4577209746480316, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2602, + "noteOrder": 3050, "time": 0.4650408503045718, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2725, + "noteOrder": 3194, "time": 0.48700047727419254, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 3242, "time": 0.49432035293073273, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3176, + "noteOrder": 3722, "time": 0.567519109496135, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 4082, "time": 0.622418176920187, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 4130, "time": 0.6297380525767271, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 4302, "time": 0.6560438557174186, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 4362, "time": 0.6651571009098112, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 4419, "time": 0.6739226520085181, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 4476, "time": 0.6825692551278063, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 4532, "time": 0.691170109024241, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3892, + "noteOrder": 4560, "time": 0.6954613861278877, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 4589, "time": 0.6997526632315345, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3940, + "noteOrder": 4617, "time": 0.7040347904906105, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3964, + "noteOrder": 4645, "time": 0.7083260675942572, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 5, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4060, + "noteOrder": 4757, "time": 0.7254820261642734, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 3, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4132, + "noteOrder": 4842, "time": 0.7383467076306428, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4898, "time": 0.7469292618379363, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4204, + "noteOrder": 4926, "time": 0.751220538941583, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 5010, "time": 0.7640852204079525, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 5039, "time": 0.7683764975115992, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 5348, "time": 0.815553096118001, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 5376, "time": 0.8198443732216477, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 5404, "time": 0.8241265004807237, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4924, + "noteOrder": 5770, "time": 0.879885653294419, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 6220, "time": 0.9485094875744837, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 6276, "time": 0.9570920417817771, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 6304, "time": 0.961374169040853, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5428, + "noteOrder": 6360, "time": 0.9699567232481465, "position": { "x": 4, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 6389, "time": 0.9742480003517933, "position": { "x": 6, @@ -2327,7 +2327,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 281, "time": 0.042894471347325776, "position": { "x": 4, @@ -2350,7 +2350,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 4, @@ -2373,7 +2373,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 506, "time": 0.07720638848735814, "position": { "x": 4, @@ -2396,7 +2396,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 4, @@ -2419,7 +2419,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 731, "time": 0.11151830562739048, "position": { "x": 4, @@ -2442,7 +2442,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 4, @@ -2465,7 +2465,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 872, "time": 0.1329563914564827, "position": { "x": 3, @@ -2488,7 +2488,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 3, @@ -2511,7 +2511,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 900, "time": 0.1372476685601294, "position": { "x": 7, @@ -2534,7 +2534,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 7, @@ -2557,7 +2557,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 6, @@ -2580,7 +2580,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 2541, + "noteOrder": 2977, "time": 0.4540244374414788, "position": { "x": 6, @@ -2603,7 +2603,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2643, + "noteOrder": 3098, "time": 0.47236072596111206, "position": { "x": 7, @@ -2626,7 +2626,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 7, @@ -2649,7 +2649,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2684, + "noteOrder": 3146, "time": 0.47968060161765225, "position": { "x": 2, @@ -2672,7 +2672,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 4, @@ -2695,7 +2695,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 3, @@ -2718,7 +2718,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 3, @@ -2741,7 +2741,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2848, + "noteOrder": 3338, "time": 0.5089601042438132, "position": { "x": 8, @@ -2764,7 +2764,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 6, @@ -2787,7 +2787,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2889, + "noteOrder": 3386, "time": 0.5162799799003535, "position": { "x": 4, @@ -2810,7 +2810,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 4, @@ -2833,7 +2833,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 6, @@ -2856,7 +2856,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 6, @@ -2879,7 +2879,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 3053, + "noteOrder": 3578, "time": 0.5455594825265144, "position": { "x": 6, @@ -2902,7 +2902,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 6, @@ -2925,7 +2925,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 4, @@ -2948,7 +2948,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 4, @@ -2971,7 +2971,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 3217, + "noteOrder": 3770, "time": 0.5748389851526754, "position": { "x": 3, @@ -2994,7 +2994,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 3237, + "noteOrder": 3794, "time": 0.5784989229809455, "position": { "x": 4, @@ -3017,7 +3017,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 7, @@ -3040,7 +3040,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 3278, + "noteOrder": 3842, "time": 0.5858187986374858, "position": { "x": 6, @@ -3063,7 +3063,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3380, + "noteOrder": 3962, "time": 0.6041184877788364, "position": { "x": 3, @@ -3086,7 +3086,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3401, + "noteOrder": 3986, "time": 0.6077784256071064, "position": { "x": 4, @@ -3109,7 +3109,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 7, @@ -3132,7 +3132,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3442, + "noteOrder": 4034, "time": 0.6150983012636466, "position": { "x": 6, @@ -3155,7 +3155,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4348, + "noteOrder": 5095, "time": 0.7769499018743219, "position": { "x": 6, @@ -3178,7 +3178,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 6, @@ -3201,7 +3201,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 4, @@ -3224,7 +3224,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 4, @@ -3247,7 +3247,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 6, @@ -3270,7 +3270,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 6, @@ -3293,7 +3293,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 4, @@ -3316,7 +3316,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 4, @@ -3339,7 +3339,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4732, + "noteOrder": 5545, "time": 0.8455737361543866, "position": { "x": 6, @@ -3362,7 +3362,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 6, @@ -3385,7 +3385,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 5, @@ -3408,7 +3408,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 5, @@ -3431,7 +3431,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 6, @@ -3454,7 +3454,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 6, @@ -3477,7 +3477,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 5, @@ -3500,7 +3500,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 5, @@ -3523,7 +3523,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 6, @@ -3546,7 +3546,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 6, @@ -3569,7 +3569,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 5, @@ -3592,7 +3592,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 5, @@ -3615,7 +3615,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 6, @@ -3638,7 +3638,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 6, @@ -3661,7 +3661,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 5, @@ -3684,7 +3684,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 4906.0, + "noteOrder": 5748.0, "time": 0.8755943761907722, "position": { "x": 5, @@ -3707,7 +3707,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 5020, + "noteOrder": 5882, "time": 0.8970416118644352, "position": { "x": 4, @@ -3730,7 +3730,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 4, @@ -3753,7 +3753,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 6, @@ -3776,7 +3776,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 6, @@ -3799,7 +3799,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 4, @@ -3822,7 +3822,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 4, @@ -3845,7 +3845,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 5, @@ -3868,7 +3868,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 5, @@ -3891,7 +3891,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 4, @@ -3914,7 +3914,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 4, @@ -3937,7 +3937,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 5, @@ -3960,7 +3960,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 5, @@ -3983,7 +3983,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 4, @@ -4006,7 +4006,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 4, @@ -4029,7 +4029,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 5, @@ -4052,7 +4052,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 5, @@ -4075,7 +4075,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 4, @@ -4098,7 +4098,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 4, @@ -4121,7 +4121,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 5, @@ -4144,7 +4144,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 5290.0, + "noteOrder": 6198.0, "time": 0.9442182104708369, "position": { "x": 5, @@ -4167,7 +4167,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 265.5, + "noteOrder": 310.5, "time": 0.04717659860640181, "position": { "x": 5, @@ -4195,7 +4195,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 457.5, + "noteOrder": 535.5, "time": 0.08148851574643418, "position": { "x": 5, @@ -4223,7 +4223,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 649.5, + "noteOrder": 760.5, "time": 0.11580043288646652, "position": { "x": 5, @@ -4251,7 +4251,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 841.5, + "noteOrder": 985.5, "time": 0.15011235002649886, "position": { "x": 5, @@ -4279,7 +4279,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1033.5, + "noteOrder": 1210.5, "time": 0.1844242671665312, "position": { "x": 5, @@ -4307,7 +4307,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1225.5, + "noteOrder": 1435.5, "time": 0.21873618430656358, "position": { "x": 5, @@ -4335,7 +4335,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1417.5, + "noteOrder": 1660.5, "time": 0.2530481014465959, "position": { "x": 5, @@ -4363,7 +4363,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1633.5, + "noteOrder": 1913.5, "time": 0.291651295690275, "position": { "x": 5, @@ -4391,7 +4391,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1812.0, + "noteOrder": 2121.0, "time": 0.32167193572666064, "position": { "x": 5, @@ -4419,7 +4419,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2252.5, + "noteOrder": 2639.5, "time": 0.40225461686059794, "position": { "x": 5, @@ -4447,7 +4447,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2344.5, + "noteOrder": 2747.5, "time": 0.4187792361552375, "position": { "x": 5, @@ -4475,7 +4475,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2542.5, + "noteOrder": 2978.5, "time": 0.4540244374414788, "position": { "x": 5, @@ -4503,7 +4503,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2910.5, + "noteOrder": 3411.5, "time": 0.5199399177286236, "position": { "x": 5, @@ -4531,7 +4531,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2951.5, + "noteOrder": 3459.5, "time": 0.5272597933851638, "position": { "x": 5, @@ -4559,7 +4559,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3074.5, + "noteOrder": 3603.5, "time": 0.5492194203547845, "position": { "x": 5, @@ -4587,7 +4587,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3115.5, + "noteOrder": 3651.5, "time": 0.5565392960113248, "position": { "x": 5, @@ -4615,7 +4615,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3545.5, + "noteOrder": 4155.5, "time": 0.6333979904049972, "position": { "x": 5, @@ -4643,7 +4643,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4373.5, + "noteOrder": 5124.5, "time": 0.7812411789779686, "position": { "x": 5, @@ -4671,7 +4671,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4421.5, + "noteOrder": 5180.5, "time": 0.7898145833406913, "position": { "x": 5, @@ -4699,7 +4699,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4469.5, + "noteOrder": 5236.5, "time": 0.7983971375479848, "position": { "x": 5, @@ -4727,7 +4727,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4517.5, + "noteOrder": 5293.5, "time": 0.8069705419107075, "position": { "x": 5, @@ -4755,7 +4755,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4685.5, + "noteOrder": 5490.5, "time": 0.8370003317916639, "position": { "x": 5, @@ -4783,7 +4783,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4709.5, + "noteOrder": 5518.5, "time": 0.8412824590507398, "position": { "x": 5, @@ -4811,7 +4811,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5045.5, + "noteOrder": 5911.5, "time": 0.9013328889680818, "position": { "x": 5, @@ -4839,7 +4839,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5093.5, + "noteOrder": 5968.5, "time": 0.9099062933308045, "position": { "x": 5, @@ -4867,7 +4867,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5477.5, + "noteOrder": 6418.5, "time": 0.9785301276108692, "position": { "x": 5, @@ -4908,7 +4908,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 150, "NPS": "2.03", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b_blockless.json index 2a5b1b33..657c754a 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "Where's The Party At difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 112, "time": 0.017155958570016176, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 169, "time": 0.025738512777309604, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 225, "time": 0.03431191714003235, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 394, "time": 0.060050429917341955, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 450, "time": 0.0686238342800647, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 619, "time": 0.09436234705737431, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 675, "time": 0.10293575142009706, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 816, "time": 0.12438298709375994, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 844, "time": 0.12867426419740666, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1012, "time": 0.15440362713014558, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1069, "time": 0.162986181337439, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1125, "time": 0.17155958570016178, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1181, "time": 0.18014213990745517, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 4, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1238, "time": 0.18871554427017795, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 1294, "time": 0.19729809847747135, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1350, "time": 0.20587150284019412, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1406, "time": 0.21445405704748752, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 1462, "time": 0.2230274614102103, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 1519, "time": 0.23161001561750372, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 1575, "time": 0.24018341998022646, "position": { "x": 3, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 1631, "time": 0.2487659741875199, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1440, + "noteOrder": 1688, "time": 0.25733937855024264, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 1744, "time": 0.26592193275753606, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 1800, "time": 0.2744953371202588, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 1828, "time": 0.27878661422390555, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1856, "time": 0.28307789132755223, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1884, "time": 0.2873600185866283, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 2194, "time": 0.33452746734845945, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 2250, "time": 0.3430734221774701, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1967, + "noteOrder": 2306, "time": 0.3516010773173395, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2015, + "noteOrder": 2361, "time": 0.36011043276806753, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2039, + "noteOrder": 2389, "time": 0.3643559606488609, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2063, + "noteOrder": 2417, "time": 0.3686014885296542, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2086, + "noteOrder": 2445, "time": 0.37283786656587686, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2110, + "noteOrder": 2473, "time": 0.37706509475752886, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2134, + "noteOrder": 2500, "time": 0.3812831731046102, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2157, + "noteOrder": 2528, "time": 0.38550125145169145, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2181, + "noteOrder": 2555, "time": 0.3897010301096315, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2204, + "noteOrder": 2583, "time": 0.3939008087675714, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2228, + "noteOrder": 2610, "time": 0.39808228773637, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2297, + "noteOrder": 2692, "time": 0.41056267573077115, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 3, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2320, + "noteOrder": 2719, "time": 0.41468010578757497, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2799, "time": 0.4268951482894265, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2411, + "noteOrder": 2826, "time": 0.4309027802113823, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2433, + "noteOrder": 2852, "time": 0.4348646629104847, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2455, + "noteOrder": 2877, "time": 0.4387899462313044, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2477, + "noteOrder": 2903, "time": 0.4426694803292707, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2498, + "noteOrder": 2928, "time": 0.44649411535981304, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2561, + "noteOrder": 3002, "time": 0.4577209746480316, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2602, + "noteOrder": 3050, "time": 0.4650408503045718, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2725, + "noteOrder": 3194, "time": 0.48700047727419254, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2766, + "noteOrder": 3242, "time": 0.49432035293073273, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3012, + "noteOrder": 3530, "time": 0.5382396068699742, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3176, + "noteOrder": 3722, "time": 0.567519109496135, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3299, + "noteOrder": 3866, "time": 0.5894787364657558, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3319, + "noteOrder": 3890, "time": 0.593138674294026, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3340, + "noteOrder": 3914, "time": 0.596798612122296, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3938, "time": 0.6004585499505661, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3462, + "noteOrder": 4058, "time": 0.6187582390919167, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3483, + "noteOrder": 4082, "time": 0.622418176920187, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3503, + "noteOrder": 4106, "time": 0.626078114748457, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3524, + "noteOrder": 4130, "time": 0.6297380525767271, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3671, + "noteOrder": 4302, "time": 0.6560438557174186, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3722, + "noteOrder": 4362, "time": 0.6651571009098112, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3771, + "noteOrder": 4419, "time": 0.6739226520085181, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3819, + "noteOrder": 4476, "time": 0.6825692551278063, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3868, + "noteOrder": 4532, "time": 0.691170109024241, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3892, + "noteOrder": 4560, "time": 0.6954613861278877, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3916, + "noteOrder": 4589, "time": 0.6997526632315345, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3940, + "noteOrder": 4617, "time": 0.7040347904906105, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3964, + "noteOrder": 4645, "time": 0.7083260675942572, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3988, + "noteOrder": 4673, "time": 0.7126173446979038, "position": { "x": 5, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4012, + "noteOrder": 4701, "time": 0.7169086218015507, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4036, + "noteOrder": 4729, "time": 0.7211907490606266, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4060, + "noteOrder": 4757, "time": 0.7254820261642734, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4084, + "noteOrder": 4785, "time": 0.72977330326792, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4108, + "noteOrder": 4814, "time": 0.7340645803715669, "position": { "x": 3, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4132, + "noteOrder": 4842, "time": 0.7383467076306428, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4156, + "noteOrder": 4870, "time": 0.7426379847342895, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4180, + "noteOrder": 4898, "time": 0.7469292618379363, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4204, + "noteOrder": 4926, "time": 0.751220538941583, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4228, + "noteOrder": 4954, "time": 0.755502666200659, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4252, + "noteOrder": 4982, "time": 0.7597939433043057, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4276, + "noteOrder": 5010, "time": 0.7640852204079525, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4300, + "noteOrder": 5039, "time": 0.7683764975115992, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 5067, "time": 0.7726586247706752, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 6, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4564, + "noteOrder": 5348, "time": 0.815553096118001, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4588, + "noteOrder": 5376, "time": 0.8198443732216477, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4612, + "noteOrder": 5404, "time": 0.8241265004807237, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4636, + "noteOrder": 5432, "time": 0.8284177775843704, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4924, + "noteOrder": 5770, "time": 0.879885653294419, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4948, + "noteOrder": 5798, "time": 0.8841769303980657, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4972, + "noteOrder": 5826, "time": 0.8884682075017124, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4996, + "noteOrder": 5854, "time": 0.8927503347607884, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 6220, "time": 0.9485094875744837, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 6248, "time": 0.9528007646781304, "position": { "x": 6, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 6276, "time": 0.9570920417817771, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5380, + "noteOrder": 6304, "time": 0.961374169040853, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5404, + "noteOrder": 6332, "time": 0.9656654461444999, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5428, + "noteOrder": 6360, "time": 0.9699567232481465, "position": { "x": 4, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5452, + "noteOrder": 6389, "time": 0.9742480003517933, "position": { "x": 6, @@ -2327,7 +2327,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 281, "time": 0.042894471347325776, "position": { "x": 4, @@ -2350,7 +2350,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 338, "time": 0.05146787571004853, "position": { "x": 4, @@ -2373,7 +2373,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 506, "time": 0.07720638848735814, "position": { "x": 4, @@ -2396,7 +2396,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 480, + "noteOrder": 562, "time": 0.08577979285008089, "position": { "x": 4, @@ -2419,7 +2419,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 731, "time": 0.11151830562739048, "position": { "x": 4, @@ -2442,7 +2442,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 788, "time": 0.12009170999011323, "position": { "x": 4, @@ -2465,7 +2465,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 872, "time": 0.1329563914564827, "position": { "x": 3, @@ -2488,7 +2488,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 3, @@ -2511,7 +2511,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 900, "time": 0.1372476685601294, "position": { "x": 7, @@ -2534,7 +2534,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 984, "time": 0.15011235002649886, "position": { "x": 7, @@ -2557,7 +2557,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2953, "time": 0.4502821510120726, "position": { "x": 6, @@ -2580,7 +2580,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 2541, + "noteOrder": 2977, "time": 0.4540244374414788, "position": { "x": 6, @@ -2603,7 +2603,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2643, + "noteOrder": 3098, "time": 0.47236072596111206, "position": { "x": 7, @@ -2626,7 +2626,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 7, @@ -2649,7 +2649,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2684, + "noteOrder": 3146, "time": 0.47968060161765225, "position": { "x": 2, @@ -2672,7 +2672,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2705, + "noteOrder": 3170, "time": 0.4833405394459224, "position": { "x": 4, @@ -2695,7 +2695,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2807, + "noteOrder": 3290, "time": 0.501640228587273, "position": { "x": 3, @@ -2718,7 +2718,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 3, @@ -2741,7 +2741,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2848, + "noteOrder": 3338, "time": 0.5089601042438132, "position": { "x": 8, @@ -2764,7 +2764,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 3362, "time": 0.5126200420720833, "position": { "x": 6, @@ -2787,7 +2787,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2889, + "noteOrder": 3386, "time": 0.5162799799003535, "position": { "x": 4, @@ -2810,7 +2810,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 4, @@ -2833,7 +2833,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2930, + "noteOrder": 3434, "time": 0.5235998555568937, "position": { "x": 6, @@ -2856,7 +2856,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2971, + "noteOrder": 3482, "time": 0.5309197312134339, "position": { "x": 6, @@ -2879,7 +2879,7 @@ { "lineGroupId": 92, "indexInLine": 1, - "noteOrder": 3053, + "noteOrder": 3578, "time": 0.5455594825265144, "position": { "x": 6, @@ -2902,7 +2902,7 @@ { "lineGroupId": 92, "indexInLine": 2, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 6, @@ -2925,7 +2925,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3094, + "noteOrder": 3626, "time": 0.5528793581830546, "position": { "x": 4, @@ -2948,7 +2948,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3135, + "noteOrder": 3674, "time": 0.5601992338395949, "position": { "x": 4, @@ -2971,7 +2971,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 3217, + "noteOrder": 3770, "time": 0.5748389851526754, "position": { "x": 3, @@ -2994,7 +2994,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 3237, + "noteOrder": 3794, "time": 0.5784989229809455, "position": { "x": 4, @@ -3017,7 +3017,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 3258, + "noteOrder": 3818, "time": 0.5821588608092155, "position": { "x": 7, @@ -3040,7 +3040,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 3278, + "noteOrder": 3842, "time": 0.5858187986374858, "position": { "x": 6, @@ -3063,7 +3063,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3380, + "noteOrder": 3962, "time": 0.6041184877788364, "position": { "x": 3, @@ -3086,7 +3086,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3401, + "noteOrder": 3986, "time": 0.6077784256071064, "position": { "x": 4, @@ -3109,7 +3109,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3421, + "noteOrder": 4010, "time": 0.6114383634353765, "position": { "x": 7, @@ -3132,7 +3132,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3442, + "noteOrder": 4034, "time": 0.6150983012636466, "position": { "x": 6, @@ -3155,7 +3155,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4348, + "noteOrder": 5095, "time": 0.7769499018743219, "position": { "x": 6, @@ -3178,7 +3178,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 6, @@ -3201,7 +3201,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4396, + "noteOrder": 5151, "time": 0.7855324560816154, "position": { "x": 4, @@ -3224,7 +3224,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 4, @@ -3247,7 +3247,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4444, + "noteOrder": 5207, "time": 0.7941058604443381, "position": { "x": 6, @@ -3270,7 +3270,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 6, @@ -3293,7 +3293,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4492, + "noteOrder": 5264, "time": 0.8026884146516315, "position": { "x": 4, @@ -3316,7 +3316,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4540, + "noteOrder": 5320, "time": 0.8112618190143542, "position": { "x": 4, @@ -3339,7 +3339,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4732, + "noteOrder": 5545, "time": 0.8455737361543866, "position": { "x": 6, @@ -3362,7 +3362,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 6, @@ -3385,7 +3385,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 4756, + "noteOrder": 5573, "time": 0.8498650132580333, "position": { "x": 5, @@ -3408,7 +3408,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 5, @@ -3431,7 +3431,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 4780, + "noteOrder": 5601, "time": 0.8541562903616801, "position": { "x": 6, @@ -3454,7 +3454,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 6, @@ -3477,7 +3477,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 4804, + "noteOrder": 5629, "time": 0.858438417620756, "position": { "x": 5, @@ -3500,7 +3500,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 5, @@ -3523,7 +3523,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 4828, + "noteOrder": 5657, "time": 0.8627296947244029, "position": { "x": 6, @@ -3546,7 +3546,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 6, @@ -3569,7 +3569,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 4852, + "noteOrder": 5685, "time": 0.8670209718280495, "position": { "x": 5, @@ -3592,7 +3592,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 5, @@ -3615,7 +3615,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4876, + "noteOrder": 5714, "time": 0.8713122489316962, "position": { "x": 6, @@ -3638,7 +3638,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 6, @@ -3661,7 +3661,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 4900, + "noteOrder": 5742, "time": 0.8755943761907722, "position": { "x": 5, @@ -3684,7 +3684,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 4906.0, + "noteOrder": 5748.0, "time": 0.8755943761907722, "position": { "x": 5, @@ -3707,7 +3707,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 5020, + "noteOrder": 5882, "time": 0.8970416118644352, "position": { "x": 4, @@ -3730,7 +3730,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 4, @@ -3753,7 +3753,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 5068, + "noteOrder": 5939, "time": 0.9056241660717286, "position": { "x": 6, @@ -3776,7 +3776,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 6, @@ -3799,7 +3799,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5116, + "noteOrder": 5995, "time": 0.9141975704344514, "position": { "x": 4, @@ -3822,7 +3822,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 4, @@ -3845,7 +3845,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 5140, + "noteOrder": 6023, "time": 0.918488847538098, "position": { "x": 5, @@ -3868,7 +3868,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 5, @@ -3891,7 +3891,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5164, + "noteOrder": 6051, "time": 0.9227801246417447, "position": { "x": 4, @@ -3914,7 +3914,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 4, @@ -3937,7 +3937,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 5188, + "noteOrder": 6079, "time": 0.9270622519008207, "position": { "x": 5, @@ -3960,7 +3960,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 5, @@ -3983,7 +3983,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 6107, "time": 0.9313535290044676, "position": { "x": 4, @@ -4006,7 +4006,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 4, @@ -4029,7 +4029,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 5236, + "noteOrder": 6135, "time": 0.9356448061081142, "position": { "x": 5, @@ -4052,7 +4052,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 5, @@ -4075,7 +4075,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5260, + "noteOrder": 6164, "time": 0.9399360832117609, "position": { "x": 4, @@ -4098,7 +4098,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 4, @@ -4121,7 +4121,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 5284, + "noteOrder": 6192, "time": 0.9442182104708369, "position": { "x": 5, @@ -4144,7 +4144,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 5290.0, + "noteOrder": 6198.0, "time": 0.9442182104708369, "position": { "x": 5, @@ -4179,7 +4179,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 128, + "BPM": 150, "NPS": "2.03", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/info.json b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/info.json index fdd890d6..0d6d6dee 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/Wheres The Party At/info.json @@ -3,7 +3,7 @@ "SongName": "Where's The Party At", "SongLength": "109.291474", "SongAuthorName": "Mosh 'N' Smash", - "Bpm": "128", + "Bpm": "150", "SongPath": "32.ogg", "CreateTicks": 636603840000000000, "CreateTime": "636603840000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a.json index 74be39bb..2fe14cb2 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "You You You difficulty_1a", "sphereNodes": [ { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 400, + "noteOrder": 408, "time": 0.06577868996058828, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 400, + "noteOrder": 408, "time": 0.06577868996058828, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 494, + "noteOrder": 504, "time": 0.08125602877484434, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 541, + "noteOrder": 552, "time": 0.08899469818197238, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 564, + "noteOrder": 576, "time": 0.0928640328855364, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 588, + "noteOrder": 600, "time": 0.09673336758910041, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 611, + "noteOrder": 624, "time": 0.10060270229266441, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 682, + "noteOrder": 696, "time": 0.11221070640335647, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 752, + "noteOrder": 768, "time": 0.12381871051404851, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 776, + "noteOrder": 792, "time": 0.12768804521761254, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 799, + "noteOrder": 816, "time": 0.13155737992117655, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 912, "time": 0.1470347187354326, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 936, "time": 0.15090405343899663, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 940, + "noteOrder": 960, "time": 0.15477338814256064, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 964, + "noteOrder": 984, "time": 0.15864272284612466, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 987, + "noteOrder": 1008, "time": 0.16251205754968867, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1058, + "noteOrder": 1080, "time": 0.17412006166038074, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1152, "time": 0.1857280657710728, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1176, "time": 0.1895974004746368, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1269, + "noteOrder": 1296, "time": 0.20894407399245685, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1293, + "noteOrder": 1320, "time": 0.21281340869602086, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1363, + "noteOrder": 1392, "time": 0.22442141280671293, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1387, + "noteOrder": 1416, "time": 0.22829074751027695, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1434, + "noteOrder": 1464, "time": 0.23602941691740498, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1457, + "noteOrder": 1488, "time": 0.239898751620969, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1481, + "noteOrder": 1512, "time": 0.243768086324533, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1551, + "noteOrder": 1584, "time": 0.2553760904352251, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1575, + "noteOrder": 1608, "time": 0.25924542513878907, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1656, "time": 0.2669840945459171, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1764, "time": 0.2843961007119552, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1764, "time": 0.2843961007119552, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1810, + "noteOrder": 1848, "time": 0.2979387721744292, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1810, + "noteOrder": 1848, "time": 0.2979387721744292, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1896, "time": 0.3056774415815573, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1975, + "noteOrder": 2016, "time": 0.32502411509937734, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1998, + "noteOrder": 2040, "time": 0.32889344980294133, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2064, "time": 0.33276278450650537, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2208, "time": 0.3559787927278895, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2232, "time": 0.3598481274314535, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2280, "time": 0.36758679683858153, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2304, "time": 0.3714561315421456, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2328, "time": 0.37532546624570956, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2352, "time": 0.3791948009492736, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2562, + "noteOrder": 2616, "time": 0.42175748268847774, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2640, "time": 0.4256268173920417, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2656, + "noteOrder": 2712, "time": 0.43723482150273385, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2703, + "noteOrder": 2760, "time": 0.4449734909098619, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2750, + "noteOrder": 2808, "time": 0.4527121603169899, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2904, "time": 0.46818949913124597, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2928, "time": 0.47205883383480995, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2891, + "noteOrder": 2952, "time": 0.475928168538374, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2938, + "noteOrder": 3000, "time": 0.48366683794550197, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 3048, "time": 0.49140550735263, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3168, "time": 0.5107521808704502, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3126, + "noteOrder": 3192, "time": 0.5146215155740141, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3216, "time": 0.5184908502775781, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3216, "time": 0.5184908502775781, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3240, "time": 0.5223601849811421, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3240, "time": 0.5223601849811421, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3288, "time": 0.5300988543882702, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3336, "time": 0.5378375237953982, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3479, + "noteOrder": 3552, "time": 0.5726615361274744, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3502, + "noteOrder": 3576, "time": 0.5765308708310384, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3600, "time": 0.5804002055346024, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3550, + "noteOrder": 3624, "time": 0.5842695402381665, "position": { "x": 3, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3597, + "noteOrder": 3672, "time": 0.5920082096452944, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3620, + "noteOrder": 3696, "time": 0.5958775443488584, "position": { "x": 3, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 3720, "time": 0.5997468790524225, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3744, "time": 0.6036162137559865, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3768, "time": 0.6074855484595505, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3792, "time": 0.6113548831631146, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3855, + "noteOrder": 3936, "time": 0.6345708913844986, "position": { "x": 3, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3879, + "noteOrder": 3960, "time": 0.6384402260880627, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3902, + "noteOrder": 3984, "time": 0.6423095607916266, "position": { "x": 4, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3926, + "noteOrder": 4008, "time": 0.6461788954951907, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4128, "time": 0.6655255690130107, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4152, "time": 0.6693949037165748, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4368, "time": 0.7042189160486508, "position": { "x": 6, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4392, "time": 0.7080882507522149, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4654, + "noteOrder": 4752, "time": 0.7661282713056752, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4776, "time": 0.7699976060092392, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 7, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 4, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 6, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 4, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 6, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 4, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 7, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 3, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5208, "time": 0.8396456306733915, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5208, "time": 0.8396456306733915, "position": { "x": 6, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 6, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5328, "time": 0.8589923041912116, "position": { "x": 3, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5242, + "noteOrder": 5352, "time": 0.8628616388947756, "position": { "x": 7, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5376, "time": 0.8667309735983396, "position": { "x": 3, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 4, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 6, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 6, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 4, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5454, + "noteOrder": 5568, "time": 0.8976856512268517, "position": { "x": 7, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5477, + "noteOrder": 5592, "time": 0.9015549859304157, "position": { "x": 3, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 4, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 6, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 6, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 4, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 3, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 7, @@ -3307,7 +3307,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 282, + "noteOrder": 288, "time": 0.0464320164427682, "position": { "x": 7, @@ -3330,7 +3330,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 353, + "noteOrder": 360, "time": 0.05804002055346024, "position": { "x": 7, @@ -3353,7 +3353,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 329, + "noteOrder": 336, "time": 0.054170685849896226, "position": { "x": 3, @@ -3376,7 +3376,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 353, + "noteOrder": 360, "time": 0.05804002055346024, "position": { "x": 3, @@ -3399,7 +3399,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 6, @@ -3422,7 +3422,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 447, + "noteOrder": 456, "time": 0.0735173593677163, "position": { "x": 6, @@ -3445,7 +3445,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 4, @@ -3468,7 +3468,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 447, + "noteOrder": 456, "time": 0.0735173593677163, "position": { "x": 4, @@ -3491,7 +3491,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 658, + "noteOrder": 672, "time": 0.10834137169979245, "position": { "x": 7, @@ -3514,7 +3514,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 682, + "noteOrder": 696, "time": 0.11221070640335647, "position": { "x": 7, @@ -3537,7 +3537,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 705, + "noteOrder": 720, "time": 0.11608004110692048, "position": { "x": 3, @@ -3560,7 +3560,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 3, @@ -3583,7 +3583,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1034, + "noteOrder": 1056, "time": 0.1702507269568167, "position": { "x": 3, @@ -3606,7 +3606,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1058, + "noteOrder": 1080, "time": 0.17412006166038074, "position": { "x": 3, @@ -3629,7 +3629,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1081, + "noteOrder": 1104, "time": 0.17798939636394476, "position": { "x": 7, @@ -3652,7 +3652,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 7, @@ -3675,7 +3675,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 7, @@ -3698,7 +3698,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 7, @@ -3721,7 +3721,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 3, @@ -3744,7 +3744,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 3, @@ -3767,7 +3767,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1316, + "noteOrder": 1344, "time": 0.2166827433995849, "position": { "x": 7, @@ -3790,7 +3790,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 7, @@ -3813,7 +3813,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 3, @@ -3836,7 +3836,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1504, + "noteOrder": 1536, "time": 0.24763742102809702, "position": { "x": 3, @@ -3859,7 +3859,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 3, @@ -3882,7 +3882,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 7, @@ -3905,7 +3905,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1763, + "noteOrder": 1800, "time": 0.2902001027673012, "position": { "x": 7, @@ -3928,7 +3928,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 7, @@ -3951,7 +3951,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1763, + "noteOrder": 1800, "time": 0.2902001027673012, "position": { "x": 3, @@ -3974,7 +3974,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 3, @@ -3997,7 +3997,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 1920, "time": 0.3095467762851213, "position": { "x": 7, @@ -4020,7 +4020,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 7, @@ -4043,7 +4043,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1928, + "noteOrder": 1968, "time": 0.3172854456922493, "position": { "x": 3, @@ -4066,7 +4066,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 3, @@ -4089,7 +4089,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2069, + "noteOrder": 2112, "time": 0.3405014539136334, "position": { "x": 7, @@ -4112,7 +4112,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2092, + "noteOrder": 2136, "time": 0.3443707886171974, "position": { "x": 7, @@ -4135,7 +4135,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 2092, + "noteOrder": 2136, "time": 0.3443707886171974, "position": { "x": 6, @@ -4158,7 +4158,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 2098.0, + "noteOrder": 2142.0, "time": 0.3443707886171974, "position": { "x": 6, @@ -4181,7 +4181,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 3, @@ -4204,7 +4204,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2139, + "noteOrder": 2184, "time": 0.3521094580243254, "position": { "x": 3, @@ -4227,7 +4227,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 2139, + "noteOrder": 2184, "time": 0.3521094580243254, "position": { "x": 4, @@ -4250,7 +4250,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 2145.0, + "noteOrder": 2190.0, "time": 0.3521094580243254, "position": { "x": 4, @@ -4273,7 +4273,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2445, + "noteOrder": 2496, "time": 0.40241080917065764, "position": { "x": 7, @@ -4296,7 +4296,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2468, + "noteOrder": 2520, "time": 0.4062801438742217, "position": { "x": 7, @@ -4319,7 +4319,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 2468, + "noteOrder": 2520, "time": 0.4062801438742217, "position": { "x": 6, @@ -4342,7 +4342,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 6, @@ -4365,7 +4365,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 5, @@ -4388,7 +4388,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 2498.0, + "noteOrder": 2550.0, "time": 0.41014947857778566, "position": { "x": 5, @@ -4411,7 +4411,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 7, @@ -4434,7 +4434,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2515, + "noteOrder": 2568, "time": 0.4140188132813497, "position": { "x": 7, @@ -4457,7 +4457,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2515, + "noteOrder": 2568, "time": 0.4140188132813497, "position": { "x": 6, @@ -4480,7 +4480,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 6, @@ -4503,7 +4503,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 5, @@ -4526,7 +4526,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2545.0, + "noteOrder": 2598.0, "time": 0.4178881479849137, "position": { "x": 5, @@ -4549,7 +4549,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2633, + "noteOrder": 2688, "time": 0.4333654867991698, "position": { "x": 3, @@ -4572,7 +4572,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2656, + "noteOrder": 2712, "time": 0.43723482150273385, "position": { "x": 3, @@ -4595,7 +4595,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 7, @@ -4618,7 +4618,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2703, + "noteOrder": 2760, "time": 0.4449734909098619, "position": { "x": 7, @@ -4641,7 +4641,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2821, + "noteOrder": 2880, "time": 0.4643201644276819, "position": { "x": 7, @@ -4664,7 +4664,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 7, @@ -4687,7 +4687,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 3, @@ -4710,7 +4710,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 3, @@ -4733,7 +4733,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 7, @@ -4756,7 +4756,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3032, + "noteOrder": 3096, "time": 0.49914417675975803, "position": { "x": 7, @@ -4779,7 +4779,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3056, + "noteOrder": 3120, "time": 0.5030135114633221, "position": { "x": 3, @@ -4802,7 +4802,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3079, + "noteOrder": 3144, "time": 0.5068828461668861, "position": { "x": 3, @@ -4825,7 +4825,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 6, @@ -4848,7 +4848,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 6, @@ -4871,7 +4871,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 4, @@ -4894,7 +4894,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 4, @@ -4917,7 +4917,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 7, @@ -4940,7 +4940,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3504, "time": 0.5649228667203463, "position": { "x": 7, @@ -4963,7 +4963,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 3, @@ -4986,7 +4986,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3504, "time": 0.5649228667203463, "position": { "x": 3, @@ -5009,7 +5009,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 3, @@ -5032,7 +5032,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3912, "time": 0.6307015566809346, "position": { "x": 3, @@ -5055,7 +5055,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 7, @@ -5078,7 +5078,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3912, "time": 0.6307015566809346, "position": { "x": 7, @@ -5101,7 +5101,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 3, @@ -5124,7 +5124,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 3, @@ -5147,7 +5147,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3996, + "noteOrder": 4080, "time": 0.6577868996058827, "position": { "x": 7, @@ -5170,7 +5170,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 7, @@ -5193,7 +5193,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 4, @@ -5216,7 +5216,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 4, @@ -5239,7 +5239,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 6, @@ -5262,7 +5262,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 6, @@ -5285,7 +5285,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4137, + "noteOrder": 4224, "time": 0.6810029078272668, "position": { "x": 3, @@ -5308,7 +5308,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 3, @@ -5331,7 +5331,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 4, @@ -5354,7 +5354,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 4, @@ -5377,7 +5377,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 5, @@ -5400,7 +5400,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 4190.0, + "noteOrder": 4278.0, "time": 0.6887415772343948, "position": { "x": 5, @@ -5423,7 +5423,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 3, @@ -5446,7 +5446,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 3, @@ -5469,7 +5469,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 4, @@ -5492,7 +5492,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 4, @@ -5515,7 +5515,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 5, @@ -5538,7 +5538,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 4237.0, + "noteOrder": 4326.0, "time": 0.696480246641523, "position": { "x": 5, @@ -5561,7 +5561,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 3, @@ -5584,7 +5584,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 3, @@ -5607,7 +5607,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 6, @@ -5630,7 +5630,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 7, @@ -5653,7 +5653,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 7, @@ -5676,7 +5676,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 6, @@ -5699,7 +5699,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 4355.0, + "noteOrder": 4446.0, "time": 0.715826920159343, "position": { "x": 6, @@ -5722,7 +5722,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4372, + "noteOrder": 4464, "time": 0.719696254862907, "position": { "x": 3, @@ -5745,7 +5745,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 3, @@ -5768,7 +5768,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 4, @@ -5791,7 +5791,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 4402.0, + "noteOrder": 4494.0, "time": 0.723565589566471, "position": { "x": 4, @@ -5814,7 +5814,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 4, @@ -5837,7 +5837,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 4, @@ -5860,7 +5860,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 6, @@ -5883,7 +5883,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 6, @@ -5906,7 +5906,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4513, + "noteOrder": 4608, "time": 0.7429122630842911, "position": { "x": 7, @@ -5929,7 +5929,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 7, @@ -5952,7 +5952,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 6, @@ -5975,7 +5975,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 6, @@ -5998,7 +5998,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 5, @@ -6021,7 +6021,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4566.0, + "noteOrder": 4662.0, "time": 0.7506509324914191, "position": { "x": 5, @@ -6044,7 +6044,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 7, @@ -6067,7 +6067,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 7, @@ -6090,7 +6090,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 6, @@ -6113,7 +6113,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 6, @@ -6136,7 +6136,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 5, @@ -6159,7 +6159,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 4613.0, + "noteOrder": 4710.0, "time": 0.7583896018985472, "position": { "x": 5, @@ -6182,7 +6182,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 7, @@ -6205,7 +6205,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 7, @@ -6228,7 +6228,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 4, @@ -6251,7 +6251,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 3, @@ -6274,7 +6274,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 3, @@ -6297,7 +6297,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 4, @@ -6320,7 +6320,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 4731.0, + "noteOrder": 4830.0, "time": 0.7777362754163671, "position": { "x": 4, @@ -6343,7 +6343,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4748, + "noteOrder": 4848, "time": 0.7816056101199312, "position": { "x": 7, @@ -6366,7 +6366,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 7, @@ -6389,7 +6389,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 6, @@ -6412,7 +6412,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 4778.0, + "noteOrder": 4878.0, "time": 0.7854749448234953, "position": { "x": 6, @@ -6435,7 +6435,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 3, @@ -6458,7 +6458,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 3, @@ -6481,7 +6481,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 7, @@ -6504,7 +6504,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 7, @@ -6527,7 +6527,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 4983, + "noteOrder": 5088, "time": 0.8202989571555713, "position": { "x": 3, @@ -6550,7 +6550,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 3, @@ -6573,7 +6573,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 5030, + "noteOrder": 5136, "time": 0.8280376265626994, "position": { "x": 7, @@ -6596,7 +6596,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 7, @@ -6619,7 +6619,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5171, + "noteOrder": 5280, "time": 0.8512536347840834, "position": { "x": 7, @@ -6642,7 +6642,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 7, @@ -6665,7 +6665,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5360, + "noteOrder": 5472, "time": 0.8822083124125957, "position": { "x": 7, @@ -6688,7 +6688,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 7, @@ -6711,7 +6711,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5407, + "noteOrder": 5520, "time": 0.8899469818197238, "position": { "x": 3, @@ -6734,7 +6734,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 3, @@ -6757,7 +6757,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 6, @@ -6780,7 +6780,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5524, + "noteOrder": 5640, "time": 0.9092936553375437, "position": { "x": 6, @@ -6803,7 +6803,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 4, @@ -6826,7 +6826,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5524, + "noteOrder": 5640, "time": 0.9092936553375437, "position": { "x": 4, @@ -6849,7 +6849,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 3, @@ -6872,7 +6872,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 5618, + "noteOrder": 5736, "time": 0.9247709941517998, "position": { "x": 3, @@ -6895,7 +6895,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 7, @@ -6918,7 +6918,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5618, + "noteOrder": 5736, "time": 0.9247709941517998, "position": { "x": 7, @@ -6941,7 +6941,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 7, @@ -6964,7 +6964,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 7, @@ -6987,7 +6987,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 3, @@ -7010,7 +7010,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 3, @@ -7033,7 +7033,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 4, @@ -7056,7 +7056,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 4, @@ -7079,7 +7079,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 6, @@ -7102,7 +7102,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 6, @@ -7125,7 +7125,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 189.5, + "noteOrder": 193.5, "time": 0.030954677628512128, "position": { "x": 5, @@ -7153,7 +7153,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1693.5, + "noteOrder": 1729.5, "time": 0.27859209865660917, "position": { "x": 5, @@ -7181,7 +7181,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1799.0, + "noteOrder": 1836.0, "time": 0.2940694374708652, "position": { "x": 5, @@ -7209,7 +7209,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2399.5, + "noteOrder": 2449.5, "time": 0.39467213976352966, "position": { "x": 5, @@ -7237,7 +7237,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2422.5, + "noteOrder": 2473.5, "time": 0.39854147446709365, "position": { "x": 5, @@ -7265,7 +7265,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3033.5, + "noteOrder": 3097.5, "time": 0.49914417675975803, "position": { "x": 5, @@ -7293,7 +7293,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3080.5, + "noteOrder": 3145.5, "time": 0.5068828461668861, "position": { "x": 5, @@ -7321,7 +7321,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3292.5, + "noteOrder": 3361.5, "time": 0.5417068584989623, "position": { "x": 5, @@ -7349,7 +7349,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3786.5, + "noteOrder": 3865.5, "time": 0.6229628872738067, "position": { "x": 5, @@ -7377,7 +7377,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3833.5, + "noteOrder": 3913.5, "time": 0.6307015566809346, "position": { "x": 5, @@ -7405,7 +7405,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4126.0, + "noteOrder": 4212.0, "time": 0.6771335731237028, "position": { "x": 5, @@ -7433,7 +7433,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4502.0, + "noteOrder": 4596.0, "time": 0.739042928380727, "position": { "x": 5, @@ -7461,7 +7461,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4890.5, + "noteOrder": 4993.5, "time": 0.8048216183413153, "position": { "x": 5, @@ -7489,7 +7489,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5149.5, + "noteOrder": 5257.5, "time": 0.8473843000805196, "position": { "x": 5, @@ -7517,7 +7517,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5596.5, + "noteOrder": 5713.5, "time": 0.9209016594482359, "position": { "x": 5, @@ -7545,7 +7545,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5619.5, + "noteOrder": 5737.5, "time": 0.9247709941517998, "position": { "x": 5, @@ -7586,7 +7586,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 143, + "BPM": 146, "NPS": "3.27", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a_blockless.json index 6a894911..c24a1124 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "You You You difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 400, + "noteOrder": 408, "time": 0.06577868996058828, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 400, + "noteOrder": 408, "time": 0.06577868996058828, "position": { "x": 7, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 494, + "noteOrder": 504, "time": 0.08125602877484434, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 541, + "noteOrder": 552, "time": 0.08899469818197238, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 564, + "noteOrder": 576, "time": 0.0928640328855364, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 588, + "noteOrder": 600, "time": 0.09673336758910041, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 611, + "noteOrder": 624, "time": 0.10060270229266441, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 682, + "noteOrder": 696, "time": 0.11221070640335647, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 752, + "noteOrder": 768, "time": 0.12381871051404851, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 776, + "noteOrder": 792, "time": 0.12768804521761254, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 799, + "noteOrder": 816, "time": 0.13155737992117655, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 912, "time": 0.1470347187354326, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 936, "time": 0.15090405343899663, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 940, + "noteOrder": 960, "time": 0.15477338814256064, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 964, + "noteOrder": 984, "time": 0.15864272284612466, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 987, + "noteOrder": 1008, "time": 0.16251205754968867, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1058, + "noteOrder": 1080, "time": 0.17412006166038074, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1152, "time": 0.1857280657710728, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 1176, "time": 0.1895974004746368, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1269, + "noteOrder": 1296, "time": 0.20894407399245685, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1293, + "noteOrder": 1320, "time": 0.21281340869602086, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 5, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1363, + "noteOrder": 1392, "time": 0.22442141280671293, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1387, + "noteOrder": 1416, "time": 0.22829074751027695, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 3, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1434, + "noteOrder": 1464, "time": 0.23602941691740498, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1457, + "noteOrder": 1488, "time": 0.239898751620969, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1481, + "noteOrder": 1512, "time": 0.243768086324533, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1551, + "noteOrder": 1584, "time": 0.2553760904352251, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1575, + "noteOrder": 1608, "time": 0.25924542513878907, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1656, "time": 0.2669840945459171, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1764, "time": 0.2843961007119552, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1764, "time": 0.2843961007119552, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 1810, + "noteOrder": 1848, "time": 0.2979387721744292, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1810, + "noteOrder": 1848, "time": 0.2979387721744292, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1857, + "noteOrder": 1896, "time": 0.3056774415815573, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1975, + "noteOrder": 2016, "time": 0.32502411509937734, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1998, + "noteOrder": 2040, "time": 0.32889344980294133, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2064, "time": 0.33276278450650537, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2208, "time": 0.3559787927278895, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2232, "time": 0.3598481274314535, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2233, + "noteOrder": 2280, "time": 0.36758679683858153, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2257, + "noteOrder": 2304, "time": 0.3714561315421456, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2328, "time": 0.37532546624570956, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 2352, "time": 0.3791948009492736, "position": { "x": 7, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2562, + "noteOrder": 2616, "time": 0.42175748268847774, "position": { "x": 5, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2640, "time": 0.4256268173920417, "position": { "x": 4, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2656, + "noteOrder": 2712, "time": 0.43723482150273385, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2703, + "noteOrder": 2760, "time": 0.4449734909098619, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 3, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2750, + "noteOrder": 2808, "time": 0.4527121603169899, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2844, + "noteOrder": 2904, "time": 0.46818949913124597, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2928, "time": 0.47205883383480995, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2891, + "noteOrder": 2952, "time": 0.475928168538374, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2938, + "noteOrder": 3000, "time": 0.48366683794550197, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2985, + "noteOrder": 3048, "time": 0.49140550735263, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3168, "time": 0.5107521808704502, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3126, + "noteOrder": 3192, "time": 0.5146215155740141, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3216, "time": 0.5184908502775781, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3150, + "noteOrder": 3216, "time": 0.5184908502775781, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3240, "time": 0.5223601849811421, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3173, + "noteOrder": 3240, "time": 0.5223601849811421, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3220, + "noteOrder": 3288, "time": 0.5300988543882702, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3336, "time": 0.5378375237953982, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3479, + "noteOrder": 3552, "time": 0.5726615361274744, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3502, + "noteOrder": 3576, "time": 0.5765308708310384, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3600, "time": 0.5804002055346024, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3550, + "noteOrder": 3624, "time": 0.5842695402381665, "position": { "x": 3, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3597, + "noteOrder": 3672, "time": 0.5920082096452944, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3620, + "noteOrder": 3696, "time": 0.5958775443488584, "position": { "x": 3, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3644, + "noteOrder": 3720, "time": 0.5997468790524225, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3744, "time": 0.6036162137559865, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3768, "time": 0.6074855484595505, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3792, "time": 0.6113548831631146, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 6, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 4, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3855, + "noteOrder": 3936, "time": 0.6345708913844986, "position": { "x": 3, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3879, + "noteOrder": 3960, "time": 0.6384402260880627, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3902, + "noteOrder": 3984, "time": 0.6423095607916266, "position": { "x": 4, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3926, + "noteOrder": 4008, "time": 0.6461788954951907, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 4, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 6, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4128, "time": 0.6655255690130107, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4152, "time": 0.6693949037165748, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4368, "time": 0.7042189160486508, "position": { "x": 6, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4392, "time": 0.7080882507522149, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4654, + "noteOrder": 4752, "time": 0.7661282713056752, "position": { "x": 4, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4776, "time": 0.7699976060092392, "position": { "x": 3, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 7, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 4, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 6, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 4, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 6, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 4, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 7, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 3, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5208, "time": 0.8396456306733915, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5101, + "noteOrder": 5208, "time": 0.8396456306733915, "position": { "x": 6, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 6, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5328, "time": 0.8589923041912116, "position": { "x": 3, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5242, + "noteOrder": 5352, "time": 0.8628616388947756, "position": { "x": 7, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5376, "time": 0.8667309735983396, "position": { "x": 3, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 4, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 6, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 7, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 6, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 4, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5454, + "noteOrder": 5568, "time": 0.8976856512268517, "position": { "x": 7, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5477, + "noteOrder": 5592, "time": 0.9015549859304157, "position": { "x": 3, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 4, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 6, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 6, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 4, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 3, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 7, @@ -3307,7 +3307,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 282, + "noteOrder": 288, "time": 0.0464320164427682, "position": { "x": 7, @@ -3330,7 +3330,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 353, + "noteOrder": 360, "time": 0.05804002055346024, "position": { "x": 7, @@ -3353,7 +3353,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 329, + "noteOrder": 336, "time": 0.054170685849896226, "position": { "x": 3, @@ -3376,7 +3376,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 353, + "noteOrder": 360, "time": 0.05804002055346024, "position": { "x": 3, @@ -3399,7 +3399,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 6, @@ -3422,7 +3422,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 447, + "noteOrder": 456, "time": 0.0735173593677163, "position": { "x": 6, @@ -3445,7 +3445,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 4, @@ -3468,7 +3468,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 447, + "noteOrder": 456, "time": 0.0735173593677163, "position": { "x": 4, @@ -3491,7 +3491,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 658, + "noteOrder": 672, "time": 0.10834137169979245, "position": { "x": 7, @@ -3514,7 +3514,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 682, + "noteOrder": 696, "time": 0.11221070640335647, "position": { "x": 7, @@ -3537,7 +3537,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 705, + "noteOrder": 720, "time": 0.11608004110692048, "position": { "x": 3, @@ -3560,7 +3560,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 3, @@ -3583,7 +3583,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1034, + "noteOrder": 1056, "time": 0.1702507269568167, "position": { "x": 3, @@ -3606,7 +3606,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1058, + "noteOrder": 1080, "time": 0.17412006166038074, "position": { "x": 3, @@ -3629,7 +3629,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1081, + "noteOrder": 1104, "time": 0.17798939636394476, "position": { "x": 7, @@ -3652,7 +3652,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 7, @@ -3675,7 +3675,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 7, @@ -3698,7 +3698,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 7, @@ -3721,7 +3721,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 3, @@ -3744,7 +3744,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 3, @@ -3767,7 +3767,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1316, + "noteOrder": 1344, "time": 0.2166827433995849, "position": { "x": 7, @@ -3790,7 +3790,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 7, @@ -3813,7 +3813,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 3, @@ -3836,7 +3836,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1504, + "noteOrder": 1536, "time": 0.24763742102809702, "position": { "x": 3, @@ -3859,7 +3859,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 3, @@ -3882,7 +3882,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 7, @@ -3905,7 +3905,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1763, + "noteOrder": 1800, "time": 0.2902001027673012, "position": { "x": 7, @@ -3928,7 +3928,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 7, @@ -3951,7 +3951,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1763, + "noteOrder": 1800, "time": 0.2902001027673012, "position": { "x": 3, @@ -3974,7 +3974,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 3, @@ -3997,7 +3997,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 1920, "time": 0.3095467762851213, "position": { "x": 7, @@ -4020,7 +4020,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 7, @@ -4043,7 +4043,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1928, + "noteOrder": 1968, "time": 0.3172854456922493, "position": { "x": 3, @@ -4066,7 +4066,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 3, @@ -4089,7 +4089,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2069, + "noteOrder": 2112, "time": 0.3405014539136334, "position": { "x": 7, @@ -4112,7 +4112,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2092, + "noteOrder": 2136, "time": 0.3443707886171974, "position": { "x": 7, @@ -4135,7 +4135,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 2092, + "noteOrder": 2136, "time": 0.3443707886171974, "position": { "x": 6, @@ -4158,7 +4158,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 2098.0, + "noteOrder": 2142.0, "time": 0.3443707886171974, "position": { "x": 6, @@ -4181,7 +4181,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 3, @@ -4204,7 +4204,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2139, + "noteOrder": 2184, "time": 0.3521094580243254, "position": { "x": 3, @@ -4227,7 +4227,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 2139, + "noteOrder": 2184, "time": 0.3521094580243254, "position": { "x": 4, @@ -4250,7 +4250,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 2145.0, + "noteOrder": 2190.0, "time": 0.3521094580243254, "position": { "x": 4, @@ -4273,7 +4273,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2445, + "noteOrder": 2496, "time": 0.40241080917065764, "position": { "x": 7, @@ -4296,7 +4296,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2468, + "noteOrder": 2520, "time": 0.4062801438742217, "position": { "x": 7, @@ -4319,7 +4319,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 2468, + "noteOrder": 2520, "time": 0.4062801438742217, "position": { "x": 6, @@ -4342,7 +4342,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 6, @@ -4365,7 +4365,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 5, @@ -4388,7 +4388,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 2498.0, + "noteOrder": 2550.0, "time": 0.41014947857778566, "position": { "x": 5, @@ -4411,7 +4411,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 7, @@ -4434,7 +4434,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2515, + "noteOrder": 2568, "time": 0.4140188132813497, "position": { "x": 7, @@ -4457,7 +4457,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2515, + "noteOrder": 2568, "time": 0.4140188132813497, "position": { "x": 6, @@ -4480,7 +4480,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 6, @@ -4503,7 +4503,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 5, @@ -4526,7 +4526,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2545.0, + "noteOrder": 2598.0, "time": 0.4178881479849137, "position": { "x": 5, @@ -4549,7 +4549,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2633, + "noteOrder": 2688, "time": 0.4333654867991698, "position": { "x": 3, @@ -4572,7 +4572,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2656, + "noteOrder": 2712, "time": 0.43723482150273385, "position": { "x": 3, @@ -4595,7 +4595,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 7, @@ -4618,7 +4618,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2703, + "noteOrder": 2760, "time": 0.4449734909098619, "position": { "x": 7, @@ -4641,7 +4641,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2821, + "noteOrder": 2880, "time": 0.4643201644276819, "position": { "x": 7, @@ -4664,7 +4664,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 7, @@ -4687,7 +4687,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 3, @@ -4710,7 +4710,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 3, @@ -4733,7 +4733,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 7, @@ -4756,7 +4756,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3032, + "noteOrder": 3096, "time": 0.49914417675975803, "position": { "x": 7, @@ -4779,7 +4779,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3056, + "noteOrder": 3120, "time": 0.5030135114633221, "position": { "x": 3, @@ -4802,7 +4802,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3079, + "noteOrder": 3144, "time": 0.5068828461668861, "position": { "x": 3, @@ -4825,7 +4825,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 6, @@ -4848,7 +4848,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 6, @@ -4871,7 +4871,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 4, @@ -4894,7 +4894,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 4, @@ -4917,7 +4917,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 7, @@ -4940,7 +4940,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3504, "time": 0.5649228667203463, "position": { "x": 7, @@ -4963,7 +4963,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 3, @@ -4986,7 +4986,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3504, "time": 0.5649228667203463, "position": { "x": 3, @@ -5009,7 +5009,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 3, @@ -5032,7 +5032,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3912, "time": 0.6307015566809346, "position": { "x": 3, @@ -5055,7 +5055,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 7, @@ -5078,7 +5078,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3912, "time": 0.6307015566809346, "position": { "x": 7, @@ -5101,7 +5101,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 3, @@ -5124,7 +5124,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 3, @@ -5147,7 +5147,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3996, + "noteOrder": 4080, "time": 0.6577868996058827, "position": { "x": 7, @@ -5170,7 +5170,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 7, @@ -5193,7 +5193,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 4, @@ -5216,7 +5216,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 4, @@ -5239,7 +5239,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 6, @@ -5262,7 +5262,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 6, @@ -5285,7 +5285,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4137, + "noteOrder": 4224, "time": 0.6810029078272668, "position": { "x": 3, @@ -5308,7 +5308,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 3, @@ -5331,7 +5331,7 @@ { "lineGroupId": 172, "indexInLine": 3, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 4, @@ -5354,7 +5354,7 @@ { "lineGroupId": 172, "indexInLine": 4, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 4, @@ -5377,7 +5377,7 @@ { "lineGroupId": 172, "indexInLine": 5, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 5, @@ -5400,7 +5400,7 @@ { "lineGroupId": 172, "indexInLine": 6, - "noteOrder": 4190.0, + "noteOrder": 4278.0, "time": 0.6887415772343948, "position": { "x": 5, @@ -5423,7 +5423,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 3, @@ -5446,7 +5446,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 3, @@ -5469,7 +5469,7 @@ { "lineGroupId": 173, "indexInLine": 3, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 4, @@ -5492,7 +5492,7 @@ { "lineGroupId": 173, "indexInLine": 4, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 4, @@ -5515,7 +5515,7 @@ { "lineGroupId": 173, "indexInLine": 5, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 5, @@ -5538,7 +5538,7 @@ { "lineGroupId": 173, "indexInLine": 6, - "noteOrder": 4237.0, + "noteOrder": 4326.0, "time": 0.696480246641523, "position": { "x": 5, @@ -5561,7 +5561,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 3, @@ -5584,7 +5584,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 3, @@ -5607,7 +5607,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 6, @@ -5630,7 +5630,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 7, @@ -5653,7 +5653,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 7, @@ -5676,7 +5676,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 6, @@ -5699,7 +5699,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 4355.0, + "noteOrder": 4446.0, "time": 0.715826920159343, "position": { "x": 6, @@ -5722,7 +5722,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4372, + "noteOrder": 4464, "time": 0.719696254862907, "position": { "x": 3, @@ -5745,7 +5745,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 3, @@ -5768,7 +5768,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 4, @@ -5791,7 +5791,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 4402.0, + "noteOrder": 4494.0, "time": 0.723565589566471, "position": { "x": 4, @@ -5814,7 +5814,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 4, @@ -5837,7 +5837,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 4, @@ -5860,7 +5860,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 6, @@ -5883,7 +5883,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 6, @@ -5906,7 +5906,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4513, + "noteOrder": 4608, "time": 0.7429122630842911, "position": { "x": 7, @@ -5929,7 +5929,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 7, @@ -5952,7 +5952,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 6, @@ -5975,7 +5975,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 6, @@ -5998,7 +5998,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 5, @@ -6021,7 +6021,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 4566.0, + "noteOrder": 4662.0, "time": 0.7506509324914191, "position": { "x": 5, @@ -6044,7 +6044,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 7, @@ -6067,7 +6067,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 7, @@ -6090,7 +6090,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 6, @@ -6113,7 +6113,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 6, @@ -6136,7 +6136,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 5, @@ -6159,7 +6159,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 4613.0, + "noteOrder": 4710.0, "time": 0.7583896018985472, "position": { "x": 5, @@ -6182,7 +6182,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 7, @@ -6205,7 +6205,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 7, @@ -6228,7 +6228,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 4, @@ -6251,7 +6251,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 3, @@ -6274,7 +6274,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 3, @@ -6297,7 +6297,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 4, @@ -6320,7 +6320,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 4731.0, + "noteOrder": 4830.0, "time": 0.7777362754163671, "position": { "x": 4, @@ -6343,7 +6343,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4748, + "noteOrder": 4848, "time": 0.7816056101199312, "position": { "x": 7, @@ -6366,7 +6366,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 7, @@ -6389,7 +6389,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 6, @@ -6412,7 +6412,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 4778.0, + "noteOrder": 4878.0, "time": 0.7854749448234953, "position": { "x": 6, @@ -6435,7 +6435,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 3, @@ -6458,7 +6458,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 3, @@ -6481,7 +6481,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 7, @@ -6504,7 +6504,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 7, @@ -6527,7 +6527,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 4983, + "noteOrder": 5088, "time": 0.8202989571555713, "position": { "x": 3, @@ -6550,7 +6550,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 3, @@ -6573,7 +6573,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 5030, + "noteOrder": 5136, "time": 0.8280376265626994, "position": { "x": 7, @@ -6596,7 +6596,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 7, @@ -6619,7 +6619,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 5171, + "noteOrder": 5280, "time": 0.8512536347840834, "position": { "x": 7, @@ -6642,7 +6642,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 7, @@ -6665,7 +6665,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5360, + "noteOrder": 5472, "time": 0.8822083124125957, "position": { "x": 7, @@ -6688,7 +6688,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 7, @@ -6711,7 +6711,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5407, + "noteOrder": 5520, "time": 0.8899469818197238, "position": { "x": 3, @@ -6734,7 +6734,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 3, @@ -6757,7 +6757,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 6, @@ -6780,7 +6780,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5524, + "noteOrder": 5640, "time": 0.9092936553375437, "position": { "x": 6, @@ -6803,7 +6803,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 4, @@ -6826,7 +6826,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5524, + "noteOrder": 5640, "time": 0.9092936553375437, "position": { "x": 4, @@ -6849,7 +6849,7 @@ { "lineGroupId": 231, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 3, @@ -6872,7 +6872,7 @@ { "lineGroupId": 231, "indexInLine": 2, - "noteOrder": 5618, + "noteOrder": 5736, "time": 0.9247709941517998, "position": { "x": 3, @@ -6895,7 +6895,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 7, @@ -6918,7 +6918,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5618, + "noteOrder": 5736, "time": 0.9247709941517998, "position": { "x": 7, @@ -6941,7 +6941,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 7, @@ -6964,7 +6964,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 7, @@ -6987,7 +6987,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 3, @@ -7010,7 +7010,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 3, @@ -7033,7 +7033,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 4, @@ -7056,7 +7056,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 4, @@ -7079,7 +7079,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 6, @@ -7102,7 +7102,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 6, @@ -7137,7 +7137,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 143, + "BPM": 146, "NPS": "3.27", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b.json index 71f747f9..52194fad 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "You You You difficulty_1b", "sphereNodes": [ { - "noteOrder": 282, + "noteOrder": 288, "time": 0.0464320164427682, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 329, + "noteOrder": 336, "time": 0.054170685849896226, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 611, + "noteOrder": 624, "time": 0.10060270229266441, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 705, + "noteOrder": 720, "time": 0.11608004110692048, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 912, "time": 0.1470347187354326, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 936, "time": 0.15090405343899663, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 987, + "noteOrder": 1008, "time": 0.16251205754968867, "position": { "x": 5, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1104, "time": 0.17798939636394476, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1269, + "noteOrder": 1296, "time": 0.20894407399245685, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1293, + "noteOrder": 1320, "time": 0.21281340869602086, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1316, + "noteOrder": 1344, "time": 0.2166827433995849, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1434, + "noteOrder": 1464, "time": 0.23602941691740498, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1457, + "noteOrder": 1488, "time": 0.239898751620969, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1481, + "noteOrder": 1512, "time": 0.243768086324533, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1504, + "noteOrder": 1536, "time": 0.24763742102809702, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1656, "time": 0.2669840945459171, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1739, + "noteOrder": 1776, "time": 0.2863307680637372, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2064, "time": 0.33276278450650537, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2398, + "noteOrder": 2448, "time": 0.39467213976352966, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2421, + "noteOrder": 2472, "time": 0.39854147446709365, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2640, "time": 0.4256268173920417, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2821, + "noteOrder": 2880, "time": 0.4643201644276819, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2928, "time": 0.47205883383480995, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3168, "time": 0.5107521808704502, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3479, + "noteOrder": 3552, "time": 0.5726615361274744, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3600, "time": 0.5804002055346024, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3744, "time": 0.6036162137559865, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3768, "time": 0.6074855484595505, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3792, "time": 0.6113548831631146, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3855, + "noteOrder": 3936, "time": 0.6345708913844986, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3902, + "noteOrder": 3984, "time": 0.6423095607916266, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4128, "time": 0.6655255690130107, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4152, "time": 0.6693949037165748, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4368, "time": 0.7042189160486508, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4392, "time": 0.7080882507522149, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4372, + "noteOrder": 4464, "time": 0.719696254862907, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4654, + "noteOrder": 4752, "time": 0.7661282713056752, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4776, "time": 0.7699976060092392, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4748, + "noteOrder": 4848, "time": 0.7816056101199312, "position": { "x": 3, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4983, + "noteOrder": 5088, "time": 0.8202989571555713, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5136, "time": 0.8280376265626994, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5280, "time": 0.8512536347840834, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5328, "time": 0.8589923041912116, "position": { "x": 4, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5242, + "noteOrder": 5352, "time": 0.8628616388947756, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5376, "time": 0.8667309735983396, "position": { "x": 3, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5472, "time": 0.8822083124125957, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5407, + "noteOrder": 5520, "time": 0.8899469818197238, "position": { "x": 7, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5712, "time": 0.9209016594482359, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 7, @@ -2207,7 +2207,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 564, + "noteOrder": 576, "time": 0.0928640328855364, "position": { "x": 3, @@ -2230,7 +2230,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 3, @@ -2253,7 +2253,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 658, + "noteOrder": 672, "time": 0.10834137169979245, "position": { "x": 7, @@ -2276,7 +2276,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 7, @@ -2299,7 +2299,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 752, + "noteOrder": 768, "time": 0.12381871051404851, "position": { "x": 3, @@ -2322,7 +2322,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 3, @@ -2345,7 +2345,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 799, + "noteOrder": 816, "time": 0.13155737992117655, "position": { "x": 7, @@ -2368,7 +2368,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 7, @@ -2391,7 +2391,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 6, @@ -2414,7 +2414,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 6, @@ -2437,7 +2437,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 4, @@ -2460,7 +2460,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 4, @@ -2483,7 +2483,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 940, + "noteOrder": 960, "time": 0.15477338814256064, "position": { "x": 7, @@ -2506,7 +2506,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 7, @@ -2529,7 +2529,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1034, + "noteOrder": 1056, "time": 0.1702507269568167, "position": { "x": 3, @@ -2552,7 +2552,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 3, @@ -2575,7 +2575,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 1128, + "noteOrder": 1152, "time": 0.1857280657710728, "position": { "x": 7, @@ -2598,7 +2598,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 7, @@ -2621,7 +2621,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 3, @@ -2644,7 +2644,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 3, @@ -2667,7 +2667,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 6, @@ -2690,7 +2690,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1246, + "noteOrder": 1272, "time": 0.20507473928889283, "position": { "x": 6, @@ -2713,7 +2713,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 4, @@ -2736,7 +2736,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1246, + "noteOrder": 1272, "time": 0.20507473928889283, "position": { "x": 4, @@ -2759,7 +2759,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1363, + "noteOrder": 1392, "time": 0.22442141280671293, "position": { "x": 3, @@ -2782,7 +2782,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1387, + "noteOrder": 1416, "time": 0.22829074751027695, "position": { "x": 3, @@ -2805,7 +2805,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1551, + "noteOrder": 1584, "time": 0.2553760904352251, "position": { "x": 7, @@ -2828,7 +2828,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1575, + "noteOrder": 1608, "time": 0.25924542513878907, "position": { "x": 7, @@ -2851,7 +2851,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1692, + "noteOrder": 1728, "time": 0.27859209865660917, "position": { "x": 3, @@ -2874,7 +2874,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1739, + "noteOrder": 1776, "time": 0.2863307680637372, "position": { "x": 3, @@ -2897,7 +2897,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 7, @@ -2920,7 +2920,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 7, @@ -2943,7 +2943,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 1920, "time": 0.3095467762851213, "position": { "x": 3, @@ -2966,7 +2966,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 3, @@ -2989,7 +2989,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1928, + "noteOrder": 1968, "time": 0.3172854456922493, "position": { "x": 7, @@ -3012,7 +3012,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 7, @@ -3035,7 +3035,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1975, + "noteOrder": 2016, "time": 0.32502411509937734, "position": { "x": 3, @@ -3058,7 +3058,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 3, @@ -3081,7 +3081,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2069, + "noteOrder": 2112, "time": 0.3405014539136334, "position": { "x": 7, @@ -3104,7 +3104,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 7, @@ -3127,7 +3127,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2163, + "noteOrder": 2208, "time": 0.3559787927278895, "position": { "x": 3, @@ -3150,7 +3150,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 3, @@ -3173,7 +3173,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2257, + "noteOrder": 2304, "time": 0.3714561315421456, "position": { "x": 7, @@ -3196,7 +3196,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2280, + "noteOrder": 2328, "time": 0.37532546624570956, "position": { "x": 7, @@ -3219,7 +3219,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2352, "time": 0.3791948009492736, "position": { "x": 3, @@ -3242,7 +3242,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 3, @@ -3265,7 +3265,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 7, @@ -3288,7 +3288,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2421, + "noteOrder": 2472, "time": 0.39854147446709365, "position": { "x": 7, @@ -3311,7 +3311,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2445, + "noteOrder": 2496, "time": 0.40241080917065764, "position": { "x": 3, @@ -3334,7 +3334,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 3, @@ -3357,7 +3357,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 7, @@ -3380,7 +3380,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 7, @@ -3403,7 +3403,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 3, @@ -3426,7 +3426,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 3, @@ -3449,7 +3449,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2633, + "noteOrder": 2688, "time": 0.4333654867991698, "position": { "x": 7, @@ -3472,7 +3472,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 7, @@ -3495,7 +3495,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 3, @@ -3518,7 +3518,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 3, @@ -3541,7 +3541,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 7, @@ -3564,7 +3564,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 7, @@ -3587,7 +3587,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 3, @@ -3610,7 +3610,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 3, @@ -3633,7 +3633,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 7, @@ -3656,7 +3656,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3597, + "noteOrder": 3672, "time": 0.5920082096452944, "position": { "x": 7, @@ -3679,7 +3679,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3620, + "noteOrder": 3696, "time": 0.5958775443488584, "position": { "x": 3, @@ -3702,7 +3702,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3644, + "noteOrder": 3720, "time": 0.5997468790524225, "position": { "x": 3, @@ -3725,7 +3725,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 7, @@ -3748,7 +3748,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 7, @@ -3771,7 +3771,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 3, @@ -3794,7 +3794,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 3, @@ -3817,7 +3817,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 3996, + "noteOrder": 4080, "time": 0.6577868996058827, "position": { "x": 7, @@ -3840,7 +3840,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 7, @@ -3863,7 +3863,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 4137, + "noteOrder": 4224, "time": 0.6810029078272668, "position": { "x": 3, @@ -3886,7 +3886,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 3, @@ -3909,7 +3909,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 7, @@ -3932,7 +3932,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 7, @@ -3955,7 +3955,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 4, @@ -3978,7 +3978,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 4, @@ -4001,7 +4001,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 6, @@ -4024,7 +4024,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 6, @@ -4047,7 +4047,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 7, @@ -4070,7 +4070,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 7, @@ -4093,7 +4093,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 3, @@ -4116,7 +4116,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 3, @@ -4139,7 +4139,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4513, + "noteOrder": 4608, "time": 0.7429122630842911, "position": { "x": 7, @@ -4162,7 +4162,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 7, @@ -4185,7 +4185,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 3, @@ -4208,7 +4208,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 3, @@ -4231,7 +4231,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 4, @@ -4254,7 +4254,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 4, @@ -4277,7 +4277,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 6, @@ -4300,7 +4300,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 6, @@ -4323,7 +4323,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 3, @@ -4346,7 +4346,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 3, @@ -4369,7 +4369,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 7, @@ -4392,7 +4392,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 7, @@ -4415,7 +4415,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 3, @@ -4438,7 +4438,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 3, @@ -4461,7 +4461,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 7, @@ -4484,7 +4484,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 7, @@ -4507,7 +4507,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 6, @@ -4530,7 +4530,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 6, @@ -4553,7 +4553,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 4, @@ -4576,7 +4576,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 4, @@ -4599,7 +4599,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 5454, + "noteOrder": 5568, "time": 0.8976856512268517, "position": { "x": 3, @@ -4622,7 +4622,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 3, @@ -4645,7 +4645,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 7, @@ -4668,7 +4668,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 5595, + "noteOrder": 5712, "time": 0.9209016594482359, "position": { "x": 7, @@ -4691,7 +4691,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 3, @@ -4714,7 +4714,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 3, @@ -4737,7 +4737,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 7, @@ -4760,7 +4760,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 7, @@ -4783,7 +4783,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 6, @@ -4806,7 +4806,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 6, @@ -4829,7 +4829,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 4, @@ -4852,7 +4852,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 4, @@ -4875,7 +4875,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 189.5, + "noteOrder": 193.5, "time": 0.030954677628512128, "position": { "x": 5, @@ -4903,7 +4903,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3057.5, + "noteOrder": 3121.5, "time": 0.5030135114633221, "position": { "x": 5, @@ -4931,7 +4931,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3151.5, + "noteOrder": 3217.5, "time": 0.5184908502775781, "position": { "x": 5, @@ -4959,7 +4959,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3292.5, + "noteOrder": 3361.5, "time": 0.5417068584989623, "position": { "x": 5, @@ -5000,7 +5000,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 143, + "BPM": 146, "NPS": "2.17", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b_blockless.json index 0cdc0a0f..6136c42d 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/You You You/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "You You You difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 282, + "noteOrder": 288, "time": 0.0464320164427682, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 329, + "noteOrder": 336, "time": 0.054170685849896226, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 376, + "noteOrder": 384, "time": 0.061909355257024255, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 423, + "noteOrder": 432, "time": 0.06964802466415229, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 470, + "noteOrder": 480, "time": 0.07738669407128032, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 517, + "noteOrder": 528, "time": 0.08512536347840835, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 611, + "noteOrder": 624, "time": 0.10060270229266441, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 705, + "noteOrder": 720, "time": 0.11608004110692048, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 912, "time": 0.1470347187354326, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 936, "time": 0.15090405343899663, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 987, + "noteOrder": 1008, "time": 0.16251205754968867, "position": { "x": 5, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1104, "time": 0.17798939636394476, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1269, + "noteOrder": 1296, "time": 0.20894407399245685, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1293, + "noteOrder": 1320, "time": 0.21281340869602086, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1316, + "noteOrder": 1344, "time": 0.2166827433995849, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1340, + "noteOrder": 1368, "time": 0.22055207810314892, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1410, + "noteOrder": 1440, "time": 0.23216008221384096, "position": { "x": 7, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1434, + "noteOrder": 1464, "time": 0.23602941691740498, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1457, + "noteOrder": 1488, "time": 0.239898751620969, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1481, + "noteOrder": 1512, "time": 0.243768086324533, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1504, + "noteOrder": 1536, "time": 0.24763742102809702, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1528, + "noteOrder": 1560, "time": 0.25150675573166104, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1598, + "noteOrder": 1632, "time": 0.2631147598423531, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1622, + "noteOrder": 1656, "time": 0.2669840945459171, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1645, + "noteOrder": 1680, "time": 0.27085342924948114, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1669, + "noteOrder": 1704, "time": 0.2747227639530452, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1739, + "noteOrder": 1776, "time": 0.2863307680637372, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2022, + "noteOrder": 2064, "time": 0.33276278450650537, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2398, + "noteOrder": 2448, "time": 0.39467213976352966, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2421, + "noteOrder": 2472, "time": 0.39854147446709365, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2586, + "noteOrder": 2640, "time": 0.4256268173920417, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2774, + "noteOrder": 2832, "time": 0.4565814950205539, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2821, + "noteOrder": 2880, "time": 0.4643201644276819, "position": { "x": 4, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2868, + "noteOrder": 2928, "time": 0.47205883383480995, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2915, + "noteOrder": 2976, "time": 0.479797503241938, "position": { "x": 7, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2962, + "noteOrder": 3024, "time": 0.487536172649066, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3009, + "noteOrder": 3072, "time": 0.49527484205619404, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3103, + "noteOrder": 3168, "time": 0.5107521808704502, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3197, + "noteOrder": 3264, "time": 0.5262295196847062, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3244, + "noteOrder": 3312, "time": 0.5339681890918342, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3338, + "noteOrder": 3408, "time": 0.5494455279060904, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3361, + "noteOrder": 3432, "time": 0.5533148626096543, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3479, + "noteOrder": 3552, "time": 0.5726615361274744, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3526, + "noteOrder": 3600, "time": 0.5804002055346024, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3667, + "noteOrder": 3744, "time": 0.6036162137559865, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3691, + "noteOrder": 3768, "time": 0.6074855484595505, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3792, "time": 0.6113548831631146, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3738, + "noteOrder": 3816, "time": 0.6152242178666785, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3855, + "noteOrder": 3936, "time": 0.6345708913844986, "position": { "x": 3, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3902, + "noteOrder": 3984, "time": 0.6423095607916266, "position": { "x": 5, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4043, + "noteOrder": 4128, "time": 0.6655255690130107, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4067, + "noteOrder": 4152, "time": 0.6693949037165748, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4090, + "noteOrder": 4176, "time": 0.6732642384201387, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4114, + "noteOrder": 4200, "time": 0.6771335731237028, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4231, + "noteOrder": 4320, "time": 0.696480246641523, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4255, + "noteOrder": 4344, "time": 0.700349581345087, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4368, "time": 0.7042189160486508, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4392, "time": 0.7080882507522149, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4325, + "noteOrder": 4416, "time": 0.711957585455779, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4349, + "noteOrder": 4440, "time": 0.715826920159343, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4372, + "noteOrder": 4464, "time": 0.719696254862907, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4396, + "noteOrder": 4488, "time": 0.723565589566471, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4607, + "noteOrder": 4704, "time": 0.7583896018985472, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4631, + "noteOrder": 4728, "time": 0.7622589366021111, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4654, + "noteOrder": 4752, "time": 0.7661282713056752, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4678, + "noteOrder": 4776, "time": 0.7699976060092392, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4701, + "noteOrder": 4800, "time": 0.7738669407128033, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4725, + "noteOrder": 4824, "time": 0.7777362754163671, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4748, + "noteOrder": 4848, "time": 0.7816056101199312, "position": { "x": 3, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4772, + "noteOrder": 4872, "time": 0.7854749448234953, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 4, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4983, + "noteOrder": 5088, "time": 0.8202989571555713, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5007, + "noteOrder": 5112, "time": 0.8241682918591354, "position": { "x": 3, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5030, + "noteOrder": 5136, "time": 0.8280376265626994, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5054, + "noteOrder": 5160, "time": 0.8319069612662635, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5171, + "noteOrder": 5280, "time": 0.8512536347840834, "position": { "x": 3, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5195, + "noteOrder": 5304, "time": 0.8551229694876475, "position": { "x": 7, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5218, + "noteOrder": 5328, "time": 0.8589923041912116, "position": { "x": 4, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5242, + "noteOrder": 5352, "time": 0.8628616388947756, "position": { "x": 6, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5265, + "noteOrder": 5376, "time": 0.8667309735983396, "position": { "x": 3, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5289, + "noteOrder": 5400, "time": 0.8706003083019036, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5472, "time": 0.8822083124125957, "position": { "x": 3, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5383, + "noteOrder": 5496, "time": 0.8860776471161597, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5407, + "noteOrder": 5520, "time": 0.8899469818197238, "position": { "x": 7, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5430, + "noteOrder": 5544, "time": 0.8938163165232876, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 4, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5595, + "noteOrder": 5712, "time": 0.9209016594482359, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 5856, "time": 0.9441176676696199, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5759, + "noteOrder": 5880, "time": 0.947987002373184, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5783, + "noteOrder": 5904, "time": 0.951856337076748, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5806, + "noteOrder": 5928, "time": 0.955725671780312, "position": { "x": 7, @@ -2207,7 +2207,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 564, + "noteOrder": 576, "time": 0.0928640328855364, "position": { "x": 3, @@ -2230,7 +2230,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 635, + "noteOrder": 648, "time": 0.10447203699622842, "position": { "x": 3, @@ -2253,7 +2253,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 658, + "noteOrder": 672, "time": 0.10834137169979245, "position": { "x": 7, @@ -2276,7 +2276,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 729, + "noteOrder": 744, "time": 0.1199493758104845, "position": { "x": 7, @@ -2299,7 +2299,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 752, + "noteOrder": 768, "time": 0.12381871051404851, "position": { "x": 3, @@ -2322,7 +2322,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 3, @@ -2345,7 +2345,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 799, + "noteOrder": 816, "time": 0.13155737992117655, "position": { "x": 7, @@ -2368,7 +2368,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 823, + "noteOrder": 840, "time": 0.13542671462474057, "position": { "x": 7, @@ -2391,7 +2391,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 6, @@ -2414,7 +2414,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 6, @@ -2437,7 +2437,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 846, + "noteOrder": 864, "time": 0.13929604932830458, "position": { "x": 4, @@ -2460,7 +2460,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 870, + "noteOrder": 888, "time": 0.1431653840318686, "position": { "x": 4, @@ -2483,7 +2483,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 940, + "noteOrder": 960, "time": 0.15477338814256064, "position": { "x": 7, @@ -2506,7 +2506,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 1011, + "noteOrder": 1032, "time": 0.16638139225325269, "position": { "x": 7, @@ -2529,7 +2529,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 1034, + "noteOrder": 1056, "time": 0.1702507269568167, "position": { "x": 3, @@ -2552,7 +2552,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 1105, + "noteOrder": 1128, "time": 0.18185873106750877, "position": { "x": 3, @@ -2575,7 +2575,7 @@ { "lineGroupId": 28, "indexInLine": 1, - "noteOrder": 1128, + "noteOrder": 1152, "time": 0.1857280657710728, "position": { "x": 7, @@ -2598,7 +2598,7 @@ { "lineGroupId": 28, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 7, @@ -2621,7 +2621,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 1175, + "noteOrder": 1200, "time": 0.19346673517820082, "position": { "x": 3, @@ -2644,7 +2644,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 1199, + "noteOrder": 1224, "time": 0.19733606988176483, "position": { "x": 3, @@ -2667,7 +2667,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 6, @@ -2690,7 +2690,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1246, + "noteOrder": 1272, "time": 0.20507473928889283, "position": { "x": 6, @@ -2713,7 +2713,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1222, + "noteOrder": 1248, "time": 0.20120540458532882, "position": { "x": 4, @@ -2736,7 +2736,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1246, + "noteOrder": 1272, "time": 0.20507473928889283, "position": { "x": 4, @@ -2759,7 +2759,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1363, + "noteOrder": 1392, "time": 0.22442141280671293, "position": { "x": 3, @@ -2782,7 +2782,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1387, + "noteOrder": 1416, "time": 0.22829074751027695, "position": { "x": 3, @@ -2805,7 +2805,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1551, + "noteOrder": 1584, "time": 0.2553760904352251, "position": { "x": 7, @@ -2828,7 +2828,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1575, + "noteOrder": 1608, "time": 0.25924542513878907, "position": { "x": 7, @@ -2851,7 +2851,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1692, + "noteOrder": 1728, "time": 0.27859209865660917, "position": { "x": 3, @@ -2874,7 +2874,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1739, + "noteOrder": 1776, "time": 0.2863307680637372, "position": { "x": 3, @@ -2897,7 +2897,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1787, + "noteOrder": 1824, "time": 0.2940694374708652, "position": { "x": 7, @@ -2920,7 +2920,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1834, + "noteOrder": 1872, "time": 0.30180810687799325, "position": { "x": 7, @@ -2943,7 +2943,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1881, + "noteOrder": 1920, "time": 0.3095467762851213, "position": { "x": 3, @@ -2966,7 +2966,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1904, + "noteOrder": 1944, "time": 0.3134161109886853, "position": { "x": 3, @@ -2989,7 +2989,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1928, + "noteOrder": 1968, "time": 0.3172854456922493, "position": { "x": 7, @@ -3012,7 +3012,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1951, + "noteOrder": 1992, "time": 0.3211547803958133, "position": { "x": 7, @@ -3035,7 +3035,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1975, + "noteOrder": 2016, "time": 0.32502411509937734, "position": { "x": 3, @@ -3058,7 +3058,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2045, + "noteOrder": 2088, "time": 0.33663211921006936, "position": { "x": 3, @@ -3081,7 +3081,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2069, + "noteOrder": 2112, "time": 0.3405014539136334, "position": { "x": 7, @@ -3104,7 +3104,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2116, + "noteOrder": 2160, "time": 0.3482401233207615, "position": { "x": 7, @@ -3127,7 +3127,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2163, + "noteOrder": 2208, "time": 0.3559787927278895, "position": { "x": 3, @@ -3150,7 +3150,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2210, + "noteOrder": 2256, "time": 0.36371746213501754, "position": { "x": 3, @@ -3173,7 +3173,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2257, + "noteOrder": 2304, "time": 0.3714561315421456, "position": { "x": 7, @@ -3196,7 +3196,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2280, + "noteOrder": 2328, "time": 0.37532546624570956, "position": { "x": 7, @@ -3219,7 +3219,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2352, "time": 0.3791948009492736, "position": { "x": 3, @@ -3242,7 +3242,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2327, + "noteOrder": 2376, "time": 0.3830641356528376, "position": { "x": 3, @@ -3265,7 +3265,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2351, + "noteOrder": 2400, "time": 0.38693347035640163, "position": { "x": 7, @@ -3288,7 +3288,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2421, + "noteOrder": 2472, "time": 0.39854147446709365, "position": { "x": 7, @@ -3311,7 +3311,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2445, + "noteOrder": 2496, "time": 0.40241080917065764, "position": { "x": 3, @@ -3334,7 +3334,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 3, @@ -3357,7 +3357,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2492, + "noteOrder": 2544, "time": 0.41014947857778566, "position": { "x": 7, @@ -3380,7 +3380,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 7, @@ -3403,7 +3403,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 2539, + "noteOrder": 2592, "time": 0.4178881479849137, "position": { "x": 3, @@ -3426,7 +3426,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 2609, + "noteOrder": 2664, "time": 0.4294961520956058, "position": { "x": 3, @@ -3449,7 +3449,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2633, + "noteOrder": 2688, "time": 0.4333654867991698, "position": { "x": 7, @@ -3472,7 +3472,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 7, @@ -3495,7 +3495,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2680, + "noteOrder": 2736, "time": 0.44110415620629784, "position": { "x": 3, @@ -3518,7 +3518,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 3, @@ -3541,7 +3541,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2727, + "noteOrder": 2784, "time": 0.44884282561342587, "position": { "x": 7, @@ -3564,7 +3564,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2797, + "noteOrder": 2856, "time": 0.46045082972411794, "position": { "x": 7, @@ -3587,7 +3587,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3385, + "noteOrder": 3456, "time": 0.5571841973132183, "position": { "x": 3, @@ -3610,7 +3610,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 3, @@ -3633,7 +3633,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 3573, + "noteOrder": 3648, "time": 0.5881388749417304, "position": { "x": 7, @@ -3656,7 +3656,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 3597, + "noteOrder": 3672, "time": 0.5920082096452944, "position": { "x": 7, @@ -3679,7 +3679,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3620, + "noteOrder": 3696, "time": 0.5958775443488584, "position": { "x": 3, @@ -3702,7 +3702,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3644, + "noteOrder": 3720, "time": 0.5997468790524225, "position": { "x": 3, @@ -3725,7 +3725,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 3761, + "noteOrder": 3840, "time": 0.6190935525702426, "position": { "x": 7, @@ -3748,7 +3748,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 7, @@ -3771,7 +3771,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 3949, + "noteOrder": 4032, "time": 0.6500482301987547, "position": { "x": 3, @@ -3794,7 +3794,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 3973, + "noteOrder": 4056, "time": 0.6539175649023188, "position": { "x": 3, @@ -3817,7 +3817,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 3996, + "noteOrder": 4080, "time": 0.6577868996058827, "position": { "x": 7, @@ -3840,7 +3840,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4020, + "noteOrder": 4104, "time": 0.6616562343094468, "position": { "x": 7, @@ -3863,7 +3863,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 4137, + "noteOrder": 4224, "time": 0.6810029078272668, "position": { "x": 3, @@ -3886,7 +3886,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 4161, + "noteOrder": 4248, "time": 0.6848722425308309, "position": { "x": 3, @@ -3909,7 +3909,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 4184, + "noteOrder": 4272, "time": 0.6887415772343948, "position": { "x": 7, @@ -3932,7 +3932,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 4208, + "noteOrder": 4296, "time": 0.6926109119379589, "position": { "x": 7, @@ -3955,7 +3955,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 4, @@ -3978,7 +3978,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 4, @@ -4001,7 +4001,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 4419, + "noteOrder": 4512, "time": 0.7274349242700351, "position": { "x": 6, @@ -4024,7 +4024,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 4443, + "noteOrder": 4536, "time": 0.731304258973599, "position": { "x": 6, @@ -4047,7 +4047,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 7, @@ -4070,7 +4070,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 7, @@ -4093,7 +4093,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 4466, + "noteOrder": 4560, "time": 0.7351735936771631, "position": { "x": 3, @@ -4116,7 +4116,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4490, + "noteOrder": 4584, "time": 0.739042928380727, "position": { "x": 3, @@ -4139,7 +4139,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4513, + "noteOrder": 4608, "time": 0.7429122630842911, "position": { "x": 7, @@ -4162,7 +4162,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4537, + "noteOrder": 4632, "time": 0.746781597787855, "position": { "x": 7, @@ -4185,7 +4185,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4656, "time": 0.7506509324914191, "position": { "x": 3, @@ -4208,7 +4208,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4680, "time": 0.7545202671949831, "position": { "x": 3, @@ -4231,7 +4231,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 4, @@ -4254,7 +4254,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 4, @@ -4277,7 +4277,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4795, + "noteOrder": 4896, "time": 0.7893442795270593, "position": { "x": 6, @@ -4300,7 +4300,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 4819, + "noteOrder": 4920, "time": 0.7932136142306233, "position": { "x": 6, @@ -4323,7 +4323,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 3, @@ -4346,7 +4346,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 3, @@ -4369,7 +4369,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 4842, + "noteOrder": 4944, "time": 0.7970829489341873, "position": { "x": 7, @@ -4392,7 +4392,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 4866, + "noteOrder": 4968, "time": 0.8009522836377514, "position": { "x": 7, @@ -4415,7 +4415,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4889, + "noteOrder": 4992, "time": 0.8048216183413153, "position": { "x": 3, @@ -4438,7 +4438,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4936, + "noteOrder": 5040, "time": 0.8125602877484434, "position": { "x": 3, @@ -4461,7 +4461,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 5077, + "noteOrder": 5184, "time": 0.8357762959698274, "position": { "x": 7, @@ -4484,7 +4484,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5232, "time": 0.8435149653769555, "position": { "x": 7, @@ -4507,7 +4507,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 6, @@ -4530,7 +4530,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 6, @@ -4553,7 +4553,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 5313, + "noteOrder": 5424, "time": 0.8744696430054677, "position": { "x": 4, @@ -4576,7 +4576,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 5336, + "noteOrder": 5448, "time": 0.8783389777090316, "position": { "x": 4, @@ -4599,7 +4599,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 5454, + "noteOrder": 5568, "time": 0.8976856512268517, "position": { "x": 3, @@ -4622,7 +4622,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 5501, + "noteOrder": 5616, "time": 0.9054243206339798, "position": { "x": 3, @@ -4645,7 +4645,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 5548, + "noteOrder": 5664, "time": 0.9131629900411078, "position": { "x": 7, @@ -4668,7 +4668,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 5595, + "noteOrder": 5712, "time": 0.9209016594482359, "position": { "x": 7, @@ -4691,7 +4691,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 3, @@ -4714,7 +4714,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 3, @@ -4737,7 +4737,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5642, + "noteOrder": 5760, "time": 0.9286403288553639, "position": { "x": 7, @@ -4760,7 +4760,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5665, + "noteOrder": 5784, "time": 0.932509663558928, "position": { "x": 7, @@ -4783,7 +4783,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 6, @@ -4806,7 +4806,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 6, @@ -4829,7 +4829,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5689, + "noteOrder": 5808, "time": 0.9363789982624919, "position": { "x": 4, @@ -4852,7 +4852,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5712, + "noteOrder": 5832, "time": 0.9402483329660558, "position": { "x": 4, @@ -4887,7 +4887,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 143, + "BPM": 146, "NPS": "2.17", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/You You You/info.json b/tracks/DANCERUSH STARDOM (2022121400)/You You You/info.json index c2c9f4bd..8e86e881 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/You You You/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/You You You/info.json @@ -3,7 +3,7 @@ "SongName": "You You You", "SongLength": "106.208458", "SongAuthorName": "D.watt feat. \u7d21\u97f3\u308c\u3044", - "Bpm": "143", + "Bpm": "146", "SongPath": "337.ogg", "CreateTicks": 637866144000000000, "CreateTime": "637866144000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/info.json b/tracks/DANCERUSH STARDOM (2022121400)/info.json index 32d38aa3..2c437a29 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/info.json @@ -1,367 +1,367 @@ { "BeatMapIdList": [ - 2, 1, - 17, 5, 10, + 2, + 17, + 28, + 19, + 25, 6, 14, - 22, - 28, 26, - 25, - 23, - 19, - 24, + 22, 27, 21, - 32, + 23, + 24, 33, + 35, 34, 29, - 35, - 36, - 37, - 42, - 43, - 41, + 32, 39, + 42, 38, + 36, + 41, 44, - 45, 46, + 43, + 37, 40, + 45, 47, - 49, - 50, 48, 51, - 52, 54, - 62, + 49, + 50, 53, - 55, - 63, + 52, 64, + 55, 60, - 65, + 63, + 62, 59, - 66, 61, + 65, + 66, 67, 68, 69, - 70, - 71, 72, - 73, - 74, + 81, 75, + 73, + 71, 76, 77, + 74, + 70, 79, - 81, - 87, - 80, - 84, - 88, 82, - 89, - 92, - 91, + 80, 83, - 85, - 93, - 86, + 88, + 89, + 91, + 87, + 84, 94, + 92, + 93, + 85, + 86, + 95, + 97, 90, 96, 98, - 95, 99, - 97, - 100, - 101, - 107, 103, - 106, - 104, - 109, - 108, 105, + 100, + 107, + 104, + 101, + 108, + 106, + 109, + 111, + 112, + 113, 102, 110, - 113, - 116, - 114, - 111, 115, - 119, - 112, + 114, + 116, 117, - 122, + 119, 120, - 118, - 121, 123, + 118, 124, - 125, - 126, - 127, + 121, 129, + 127, + 125, 128, - 131, + 122, 130, + 126, + 131, 132, 133, 134, - 138, 135, - 139, 136, 140, - 144, 143, + 138, 146, - 145, 141, - 142, - 149, - 148, + 139, 147, + 144, + 142, + 145, + 149, 150, - 151, + 148, + 153, 154, - 155, + 151, 157, 152, 156, - 153, - 158, 159, - 161, + 155, 160, - 166, - 162, - 163, + 158, 165, 164, - 168, - 169, - 173, + 161, + 163, + 162, 167, - 174, + 168, + 166, 170, - 172, - 171, - 177, - 176, - 175, 178, + 169, + 174, + 173, + 171, + 176, + 172, + 177, + 175, 180, 181, - 184, + 179, 185, 182, - 179, - 183, - 187, 186, + 183, + 192, + 184, + 187, + 193, + 194, 189, 188, - 192, - 190, - 193, 191, + 190, 195, - 200, - 197, - 194, - 199, - 202, 196, - 201, + 197, + 199, + 200, 198, 203, + 202, + 201, + 208, 205, + 207, 204, 209, - 208, - 207, - 210, - 214, - 213, 206, 212, - 215, + 210, + 213, 211, + 214, + 215, 216, - 219, - 217, 218, + 217, 220, - 224, - 221, 222, + 219, + 221, + 224, + 223, + 225, 230, 226, - 225, - 227, - 223, 229, 228, - 232, + 227, 231, + 232, 233, - 234, - 235, - 236, 238, 237, - 244, + 234, + 235, 239, - 245, 240, - 242, + 236, 246, - 250, - 243, - 248, 241, + 242, 247, - 251, - 252, + 245, + 244, + 243, + 250, 249, - 253, + 248, + 251, 255, - 258, - 257, 256, 254, + 252, + 253, + 257, 259, - 260, 261, - 263, 264, - 266, 262, + 260, + 258, + 263, + 268, + 266, 265, 267, - 268, - 271, 269, 272, - 273, - 274, + 271, 270, - 276, + 273, 275, + 274, 278, + 276, 277, 279, - 281, - 282, - 283, 280, + 281, + 283, + 282, 284, 286, 285, 287, 288, - 289, - 290, - 294, - 291, - 295, - 292, - 297, 293, + 291, + 294, + 290, + 292, + 289, 296, + 297, 301, - 299, 300, + 295, + 299, 303, 302, 305, - 310, - 307, + 311, 306, 304, + 310, 308, - 313, + 307, 309, - 314, - 311, 312, - 316, + 314, 315, + 316, + 313, 317, - 321, - 320, - 322, 318, - 324, - 328, - 325, - 319, + 320, + 321, + 322, 326, + 324, + 319, 323, + 325, + 328, 327, - 329, 330, 331, 332, + 329, 333, - 335, 334, - 337, - 342, - 339, - 340, 336, - 341, + 337, + 335, 338, + 339, + 341, + 340, + 342, + 345, 343, 344, - 345, - 349, 346, 347, 350, + 349, 348, 352, - 356, - 361, - 353, - 359, 354, + 359, + 356, 360, - 363, - 357, - 362, 364, - 365, - 366, - 367, - 368, 372, - 370, - 369, - 378, + 357, 373, - 374, - 371, - 377, - 379, - 376, - 381, + 353, 375, - 380, - 383 + 362, + 374, + 361, + 363, + 367, + 365, + 369, + 376, + 368, + 366, + 378, + 381, + 377, + 371, + 379, + 370, + 383, + 380 ], "OstId": 2022121400, "OstName": "DANCERUSH STARDOM", "CoverPath": "DANCERUSH_STARDOM.jpg", - "CreateTime": 638307648000000000 + "CreateTime": 638314560000000000 } \ No newline at end of file diff --git a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a.json index b33a1a2f..bbd66f28 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af difficulty_1a", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 2, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 8, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 643, "time": 0.11638501555803776, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 667, "time": 0.12069557168981693, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 690, "time": 0.12500612782159612, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13793779621693364, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.14224835234871283, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 881, "time": 0.15949057687582954, "position": { "x": 5, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 905, "time": 0.1638011330076087, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21552780658895884, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1212, + "noteOrder": 1202, "time": 0.2176830846548484, "position": { "x": 5, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 8, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 2, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.28449670469742566, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2866519827633152, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 8, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.3405339344105549, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1908, + "noteOrder": 1893, "time": 0.34268921247644457, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.3901053299260155, "position": { "x": 5, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.4095028325190218, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2292, + "noteOrder": 2274, "time": 0.41165811058491136, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4590742280344823, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4698506183639303, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.48709284289104693, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.5043350674181636, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5194220138793908, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5215772919452804, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5237325700111699, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5258878480770596, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5280431261429491, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5776145216584097, "position": { "x": 8, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6207200829762014, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3440, "time": 0.6228753610420911, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 2, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 8, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7155523178753433, "position": { "x": 2, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7586578791931351, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7608131572590247, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 8, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 2, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8534901140922769, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8556453921581665, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 8, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 2, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9224590122007438, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9246142902666334, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 2, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 8, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 4, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5340, + "noteOrder": 5297, "time": 0.9590987393208668, "position": { "x": 5, @@ -2187,7 +2187,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.017242224527116705, "position": { "x": 6, @@ -2210,7 +2210,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 6, @@ -2233,7 +2233,7 @@ { "lineGroupId": 1, "indexInLine": 3, - "noteOrder": 144, + "noteOrder": 143, "time": 0.025863336790675057, "position": { "x": 7, @@ -2256,7 +2256,7 @@ { "lineGroupId": 1, "indexInLine": 4, - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 7, @@ -2279,7 +2279,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 190, "time": 0.03448444905423341, "position": { "x": 4, @@ -2302,7 +2302,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 4, @@ -2325,7 +2325,7 @@ { "lineGroupId": 5, "indexInLine": 3, - "noteOrder": 240, + "noteOrder": 238, "time": 0.043105561317791766, "position": { "x": 3, @@ -2348,7 +2348,7 @@ { "lineGroupId": 5, "indexInLine": 4, - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 3, @@ -2371,7 +2371,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 286, "time": 0.051726673581350115, "position": { "x": 7, @@ -2394,7 +2394,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 7, @@ -2417,7 +2417,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 333, "time": 0.060347785844908464, "position": { "x": 3, @@ -2440,7 +2440,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 3, @@ -2463,7 +2463,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 381, "time": 0.06896889810846682, "position": { "x": 6, @@ -2486,7 +2486,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 420, + "noteOrder": 417, "time": 0.07543473230613558, "position": { "x": 6, @@ -2509,7 +2509,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 6, @@ -2532,7 +2532,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 444, + "noteOrder": 440, "time": 0.07974528843791477, "position": { "x": 6, @@ -2555,7 +2555,7 @@ { "lineGroupId": 12, "indexInLine": 5, - "noteOrder": 456, + "noteOrder": 452, "time": 0.08190056650380435, "position": { "x": 6, @@ -2578,7 +2578,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 408, + "noteOrder": 405, "time": 0.073279454240246, "position": { "x": 4, @@ -2601,7 +2601,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 420, + "noteOrder": 417, "time": 0.07543473230613558, "position": { "x": 4, @@ -2624,7 +2624,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 3, @@ -2647,7 +2647,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 444, + "noteOrder": 440, "time": 0.07974528843791477, "position": { "x": 3, @@ -2670,7 +2670,7 @@ { "lineGroupId": 13, "indexInLine": 5, - "noteOrder": 456, + "noteOrder": 452, "time": 0.08190056650380435, "position": { "x": 4, @@ -2693,7 +2693,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08621112263558353, "position": { "x": 4, @@ -2716,7 +2716,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 4, @@ -2739,7 +2739,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09483223489914189, "position": { "x": 6, @@ -2762,7 +2762,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 6, @@ -2785,7 +2785,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 571, "time": 0.10345334716270023, "position": { "x": 3, @@ -2808,7 +2808,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 3, @@ -2831,7 +2831,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 612, + "noteOrder": 607, "time": 0.109919181360369, "position": { "x": 7, @@ -2854,7 +2854,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 636, + "noteOrder": 631, "time": 0.11422973749214818, "position": { "x": 7, @@ -2877,7 +2877,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 952, "time": 0.17242224527116706, "position": { "x": 7, @@ -2900,7 +2900,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 964, "time": 0.17457752333705667, "position": { "x": 7, @@ -2923,7 +2923,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 964, "time": 0.17457752333705667, "position": { "x": 6, @@ -2946,7 +2946,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 970.0, "time": 0.17457752333705667, "position": { "x": 6, @@ -2969,7 +2969,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 976, "time": 0.17673280140294623, "position": { "x": 3, @@ -2992,7 +2992,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17888807946883584, "position": { "x": 3, @@ -3015,7 +3015,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17888807946883584, "position": { "x": 4, @@ -3038,7 +3038,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 4, @@ -3061,7 +3061,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 3, @@ -3084,7 +3084,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1014.0, + "noteOrder": 1006.0, "time": 0.1810433575347254, "position": { "x": 3, @@ -3107,7 +3107,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18966446979828377, "position": { "x": 7, @@ -3130,7 +3130,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 1059, "time": 0.19181974786417336, "position": { "x": 7, @@ -3153,7 +3153,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 1059, "time": 0.19181974786417336, "position": { "x": 6, @@ -3176,7 +3176,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 6, @@ -3199,7 +3199,7 @@ { "lineGroupId": 45, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 5, @@ -3222,7 +3222,7 @@ { "lineGroupId": 45, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 1077.0, "time": 0.19397502593006294, "position": { "x": 5, @@ -3245,7 +3245,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 7, @@ -3268,7 +3268,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 1083, "time": 0.19613030399595252, "position": { "x": 7, @@ -3291,7 +3291,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 1083, "time": 0.19613030399595252, "position": { "x": 6, @@ -3314,7 +3314,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 6, @@ -3337,7 +3337,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 5, @@ -3360,7 +3360,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1101.0, "time": 0.19828558206184213, "position": { "x": 5, @@ -3383,7 +3383,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 7, @@ -3406,7 +3406,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1116, + "noteOrder": 1107, "time": 0.2004408601277317, "position": { "x": 7, @@ -3429,7 +3429,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1116, + "noteOrder": 1107, "time": 0.2004408601277317, "position": { "x": 6, @@ -3452,7 +3452,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 6, @@ -3475,7 +3475,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 7, @@ -3498,7 +3498,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1134.0, + "noteOrder": 1125.0, "time": 0.2025961381936213, "position": { "x": 7, @@ -3521,7 +3521,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 3, @@ -3544,7 +3544,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 3, @@ -3567,7 +3567,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 4, @@ -3590,7 +3590,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1170.0, + "noteOrder": 1161.0, "time": 0.20906197239129007, "position": { "x": 4, @@ -3613,7 +3613,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.21121725045717962, "position": { "x": 7, @@ -3636,7 +3636,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 7, @@ -3659,7 +3659,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 6, @@ -3682,7 +3682,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1194.0, + "noteOrder": 1185.0, "time": 0.21337252852306923, "position": { "x": 6, @@ -3705,7 +3705,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.219838362720738, "position": { "x": 3, @@ -3728,7 +3728,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1236, + "noteOrder": 1226, "time": 0.2219936407866276, "position": { "x": 3, @@ -3751,7 +3751,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1236, + "noteOrder": 1226, "time": 0.2219936407866276, "position": { "x": 4, @@ -3774,7 +3774,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1242.0, + "noteOrder": 1232.0, "time": 0.2219936407866276, "position": { "x": 4, @@ -3797,7 +3797,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.22414891885251717, "position": { "x": 7, @@ -3820,7 +3820,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 7, @@ -3843,7 +3843,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.23277003111607553, "position": { "x": 3, @@ -3866,7 +3866,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 3, @@ -3889,7 +3889,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 4, @@ -3912,7 +3912,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 1345, "time": 0.24354642144552346, "position": { "x": 4, @@ -3935,7 +3935,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 4, @@ -3958,7 +3958,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1380, + "noteOrder": 1369, "time": 0.24785697757730263, "position": { "x": 4, @@ -3981,7 +3981,7 @@ { "lineGroupId": 58, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 4, @@ -4004,7 +4004,7 @@ { "lineGroupId": 58, "indexInLine": 6, - "noteOrder": 1404, + "noteOrder": 1393, "time": 0.2521675337090818, "position": { "x": 4, @@ -4027,7 +4027,7 @@ { "lineGroupId": 58, "indexInLine": 7, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 4, @@ -4050,7 +4050,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 6, @@ -4073,7 +4073,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 1345, "time": 0.24354642144552346, "position": { "x": 6, @@ -4096,7 +4096,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 7, @@ -4119,7 +4119,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1380, + "noteOrder": 1369, "time": 0.24785697757730263, "position": { "x": 7, @@ -4142,7 +4142,7 @@ { "lineGroupId": 59, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 6, @@ -4165,7 +4165,7 @@ { "lineGroupId": 59, "indexInLine": 6, - "noteOrder": 1404, + "noteOrder": 1393, "time": 0.2521675337090818, "position": { "x": 6, @@ -4188,7 +4188,7 @@ { "lineGroupId": 59, "indexInLine": 7, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 7, @@ -4211,7 +4211,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1429, "time": 0.25863336790675057, "position": { "x": 3, @@ -4234,7 +4234,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 1440, "time": 0.2607886459726402, "position": { "x": 3, @@ -4257,7 +4257,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 1440, "time": 0.2607886459726402, "position": { "x": 4, @@ -4280,7 +4280,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 4, @@ -4303,7 +4303,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 5, @@ -4326,7 +4326,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 1458.0, "time": 0.2629439240385298, "position": { "x": 5, @@ -4349,30 +4349,30 @@ { "lineGroupId": 61, "indexInLine": 1, + "noteOrder": 1452, + "time": 0.2629439240385298, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, "noteOrder": 1464, - "time": 0.2629439240385298, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 61, - "indexInLine": 2, - "noteOrder": 1476, "time": 0.26509920210441934, "position": { "x": 3, @@ -4395,7 +4395,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 1464, "time": 0.26509920210441934, "position": { "x": 4, @@ -4418,7 +4418,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 4, @@ -4441,7 +4441,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 5, @@ -4464,7 +4464,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 1482.0, "time": 0.26725448017030895, "position": { "x": 5, @@ -4487,7 +4487,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 3, @@ -4510,7 +4510,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1500, + "noteOrder": 1488, "time": 0.2694097582361985, "position": { "x": 3, @@ -4533,7 +4533,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1500, + "noteOrder": 1488, "time": 0.2694097582361985, "position": { "x": 4, @@ -4556,7 +4556,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 4, @@ -4579,7 +4579,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 3, @@ -4602,7 +4602,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1518.0, + "noteOrder": 1506.0, "time": 0.2715650363020881, "position": { "x": 3, @@ -4625,7 +4625,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 7, @@ -4648,7 +4648,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.2780308704997569, "position": { "x": 7, @@ -4671,7 +4671,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.2780308704997569, "position": { "x": 6, @@ -4694,7 +4694,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1554.0, + "noteOrder": 1542.0, "time": 0.2780308704997569, "position": { "x": 6, @@ -4717,7 +4717,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2801861485656465, "position": { "x": 3, @@ -4740,7 +4740,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 3, @@ -4763,7 +4763,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 4, @@ -4786,7 +4786,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.28234142663153605, "position": { "x": 4, @@ -4809,7 +4809,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2888072608292048, "position": { "x": 7, @@ -4832,7 +4832,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1620, + "noteOrder": 1607, "time": 0.29096253889509444, "position": { "x": 7, @@ -4855,7 +4855,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 1620, + "noteOrder": 1607, "time": 0.29096253889509444, "position": { "x": 6, @@ -4878,7 +4878,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 1626.0, + "noteOrder": 1613.0, "time": 0.29096253889509444, "position": { "x": 6, @@ -4901,7 +4901,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.293117816960984, "position": { "x": 3, @@ -4924,7 +4924,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 3, @@ -4947,7 +4947,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.3017389292245423, "position": { "x": 7, @@ -4970,7 +4970,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 7, @@ -4993,7 +4993,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 4, @@ -5016,7 +5016,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 4, @@ -5039,7 +5039,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 6, @@ -5062,7 +5062,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 6, @@ -5085,7 +5085,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3276022660152174, "position": { "x": 3, @@ -5108,7 +5108,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.329757544081107, "position": { "x": 3, @@ -5131,7 +5131,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.329757544081107, "position": { "x": 4, @@ -5154,7 +5154,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 4, @@ -5177,7 +5177,7 @@ { "lineGroupId": 80, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 5, @@ -5200,7 +5200,7 @@ { "lineGroupId": 80, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 1839.0, "time": 0.3319128221469966, "position": { "x": 5, @@ -5223,7 +5223,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 3, @@ -5246,7 +5246,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1860, + "noteOrder": 1845, "time": 0.3340681002128862, "position": { "x": 3, @@ -5269,7 +5269,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1860, + "noteOrder": 1845, "time": 0.3340681002128862, "position": { "x": 4, @@ -5292,7 +5292,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 4, @@ -5315,7 +5315,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 5, @@ -5338,7 +5338,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 1878.0, + "noteOrder": 1863.0, "time": 0.3362233782787758, "position": { "x": 5, @@ -5361,7 +5361,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 3, @@ -5384,7 +5384,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33837865634466535, "position": { "x": 3, @@ -5407,7 +5407,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33837865634466535, "position": { "x": 4, @@ -5430,7 +5430,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1890.0, + "noteOrder": 1875.0, "time": 0.33837865634466535, "position": { "x": 4, @@ -5453,7 +5453,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3448444905423341, "position": { "x": 7, @@ -5476,7 +5476,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3469997686082237, "position": { "x": 7, @@ -5499,7 +5499,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3469997686082237, "position": { "x": 6, @@ -5522,7 +5522,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 6, @@ -5545,7 +5545,7 @@ { "lineGroupId": 85, "indexInLine": 5, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 5, @@ -5568,7 +5568,7 @@ { "lineGroupId": 85, "indexInLine": 6, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.34915504667411335, "position": { "x": 5, @@ -5591,7 +5591,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 7, @@ -5614,7 +5614,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.3513103247400029, "position": { "x": 7, @@ -5637,7 +5637,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.3513103247400029, "position": { "x": 6, @@ -5660,7 +5660,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 6, @@ -5683,7 +5683,7 @@ { "lineGroupId": 86, "indexInLine": 5, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 5, @@ -5706,7 +5706,7 @@ { "lineGroupId": 86, "indexInLine": 6, - "noteOrder": 1974.0, + "noteOrder": 1958.0, "time": 0.35346560280589245, "position": { "x": 5, @@ -5729,7 +5729,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 7, @@ -5752,7 +5752,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 1964, "time": 0.3556208808717821, "position": { "x": 7, @@ -5775,7 +5775,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 1964, "time": 0.3556208808717821, "position": { "x": 6, @@ -5798,7 +5798,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 1986.0, + "noteOrder": 1970.0, "time": 0.3556208808717821, "position": { "x": 6, @@ -5821,7 +5821,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 3, @@ -5844,7 +5844,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2004, + "noteOrder": 1988, "time": 0.3599314370035612, "position": { "x": 3, @@ -5867,7 +5867,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2004, + "noteOrder": 1988, "time": 0.3599314370035612, "position": { "x": 4, @@ -5890,7 +5890,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2010.0, + "noteOrder": 1994.0, "time": 0.3599314370035612, "position": { "x": 4, @@ -5913,7 +5913,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.3620867150694508, "position": { "x": 5, @@ -5936,7 +5936,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -5959,7 +5959,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -5982,7 +5982,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -6005,7 +6005,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -6028,7 +6028,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -6051,7 +6051,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 7, @@ -6074,7 +6074,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.3814842176624571, "position": { "x": 7, @@ -6097,7 +6097,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.3814842176624571, "position": { "x": 6, @@ -6120,7 +6120,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 2113.0, "time": 0.3814842176624571, "position": { "x": 6, @@ -6143,7 +6143,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.3836394957283467, "position": { "x": 3, @@ -6166,7 +6166,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.3857947737942363, "position": { "x": 3, @@ -6189,7 +6189,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.3857947737942363, "position": { "x": 4, @@ -6212,7 +6212,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 2137.0, "time": 0.3857947737942363, "position": { "x": 4, @@ -6235,7 +6235,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.39657116412368426, "position": { "x": 7, @@ -6258,7 +6258,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 2202, "time": 0.3987264421895738, "position": { "x": 7, @@ -6281,7 +6281,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 2202, "time": 0.3987264421895738, "position": { "x": 6, @@ -6304,7 +6304,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 6, @@ -6327,7 +6327,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 5, @@ -6350,7 +6350,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 2238.0, + "noteOrder": 2220.0, "time": 0.4008817202554634, "position": { "x": 5, @@ -6373,7 +6373,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 7, @@ -6396,7 +6396,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 2226, "time": 0.40303699832135303, "position": { "x": 7, @@ -6419,7 +6419,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 2226, "time": 0.40303699832135303, "position": { "x": 6, @@ -6442,7 +6442,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 6, @@ -6465,7 +6465,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 5, @@ -6488,7 +6488,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2262.0, + "noteOrder": 2244.0, "time": 0.4051922763872426, "position": { "x": 5, @@ -6511,7 +6511,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 7, @@ -6534,7 +6534,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 2250, "time": 0.40734755445313214, "position": { "x": 7, @@ -6557,7 +6557,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 2250, "time": 0.40734755445313214, "position": { "x": 6, @@ -6580,7 +6580,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 2256.0, "time": 0.40734755445313214, "position": { "x": 6, @@ -6603,7 +6603,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4138133886508009, "position": { "x": 3, @@ -6626,7 +6626,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 2298, "time": 0.4159686667166906, "position": { "x": 3, @@ -6649,7 +6649,7 @@ { "lineGroupId": 104, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 2298, "time": 0.4159686667166906, "position": { "x": 4, @@ -6672,7 +6672,7 @@ { "lineGroupId": 104, "indexInLine": 4, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 4, @@ -6695,7 +6695,7 @@ { "lineGroupId": 104, "indexInLine": 5, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 5, @@ -6718,7 +6718,7 @@ { "lineGroupId": 104, "indexInLine": 6, - "noteOrder": 2334.0, + "noteOrder": 2315.0, "time": 0.41812394478258014, "position": { "x": 5, @@ -6741,7 +6741,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 3, @@ -6764,7 +6764,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4202792228484697, "position": { "x": 3, @@ -6787,7 +6787,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4202792228484697, "position": { "x": 4, @@ -6810,7 +6810,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 4, @@ -6833,7 +6833,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 5, @@ -6856,7 +6856,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 2358.0, + "noteOrder": 2339.0, "time": 0.42243450091435925, "position": { "x": 5, @@ -6879,7 +6879,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 3, @@ -6902,7 +6902,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.4245897789802489, "position": { "x": 3, @@ -6925,7 +6925,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.4245897789802489, "position": { "x": 4, @@ -6948,7 +6948,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 2351.0, "time": 0.4245897789802489, "position": { "x": 4, @@ -6971,7 +6971,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 7, @@ -6994,7 +6994,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2388, + "noteOrder": 2369, "time": 0.428900335112028, "position": { "x": 7, @@ -7017,7 +7017,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2388, + "noteOrder": 2369, "time": 0.428900335112028, "position": { "x": 6, @@ -7040,7 +7040,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2394.0, + "noteOrder": 2375.0, "time": 0.428900335112028, "position": { "x": 6, @@ -7063,7 +7063,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.4310556131779177, "position": { "x": 3, @@ -7086,7 +7086,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 3, @@ -7109,7 +7109,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.439676725441476, "position": { "x": 7, @@ -7132,7 +7132,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 7, @@ -7155,7 +7155,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 3, @@ -7178,7 +7178,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2508, + "noteOrder": 2488, "time": 0.45045311577092395, "position": { "x": 3, @@ -7201,7 +7201,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2508, + "noteOrder": 2488, "time": 0.45045311577092395, "position": { "x": 4, @@ -7224,7 +7224,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2514.0, + "noteOrder": 2494.0, "time": 0.45045311577092395, "position": { "x": 4, @@ -7247,7 +7247,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.4526083938368135, "position": { "x": 7, @@ -7270,7 +7270,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2532, + "noteOrder": 2512, "time": 0.4547636719027031, "position": { "x": 7, @@ -7293,7 +7293,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 2532, + "noteOrder": 2512, "time": 0.4547636719027031, "position": { "x": 6, @@ -7316,7 +7316,7 @@ { "lineGroupId": 115, "indexInLine": 4, - "noteOrder": 2538.0, + "noteOrder": 2518.0, "time": 0.4547636719027031, "position": { "x": 6, @@ -7339,7 +7339,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.46554006223215105, "position": { "x": 3, @@ -7362,7 +7362,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 3, @@ -7385,7 +7385,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 7, @@ -7408,7 +7408,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 7, @@ -7431,7 +7431,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 7, @@ -7454,7 +7454,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.5366642384065075, "position": { "x": 7, @@ -7477,7 +7477,7 @@ { "lineGroupId": 143, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 2988, "time": 0.5409747945382867, "position": { "x": 3, @@ -7500,7 +7500,7 @@ { "lineGroupId": 143, "indexInLine": 4, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 3, @@ -7523,7 +7523,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 3, @@ -7546,7 +7546,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.5366642384065075, "position": { "x": 3, @@ -7569,7 +7569,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 2988, "time": 0.5409747945382867, "position": { "x": 7, @@ -7592,7 +7592,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 7, @@ -7615,7 +7615,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5517511848677346, "position": { "x": 7, @@ -7638,7 +7638,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5539064629336242, "position": { "x": 7, @@ -7661,7 +7661,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5539064629336242, "position": { "x": 6, @@ -7684,7 +7684,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 6, @@ -7707,7 +7707,7 @@ { "lineGroupId": 148, "indexInLine": 5, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 5, @@ -7730,7 +7730,7 @@ { "lineGroupId": 148, "indexInLine": 6, - "noteOrder": 3102.0, + "noteOrder": 3077.0, "time": 0.5560617409995138, "position": { "x": 5, @@ -7753,7 +7753,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 7, @@ -7776,7 +7776,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5582170190654033, "position": { "x": 7, @@ -7799,7 +7799,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5582170190654033, "position": { "x": 6, @@ -7822,7 +7822,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 6, @@ -7845,7 +7845,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 5, @@ -7868,7 +7868,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3126.0, + "noteOrder": 3101.0, "time": 0.560372297131293, "position": { "x": 5, @@ -7891,7 +7891,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 7, @@ -7914,7 +7914,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5625275751971825, "position": { "x": 7, @@ -7937,7 +7937,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5625275751971825, "position": { "x": 6, @@ -7960,7 +7960,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 6, @@ -7983,7 +7983,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 5, @@ -8006,7 +8006,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3150.0, + "noteOrder": 3125.0, "time": 0.5646828532630721, "position": { "x": 5, @@ -8029,7 +8029,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 7, @@ -8052,7 +8052,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3156, + "noteOrder": 3131, "time": 0.5668381313289618, "position": { "x": 7, @@ -8075,7 +8075,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3156, + "noteOrder": 3131, "time": 0.5668381313289618, "position": { "x": 6, @@ -8098,7 +8098,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 6, @@ -8121,7 +8121,7 @@ { "lineGroupId": 151, "indexInLine": 5, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 5, @@ -8144,7 +8144,7 @@ { "lineGroupId": 151, "indexInLine": 6, - "noteOrder": 3174.0, + "noteOrder": 3149.0, "time": 0.5689934093948513, "position": { "x": 5, @@ -8167,7 +8167,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 7, @@ -8190,7 +8190,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 7, @@ -8213,7 +8213,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 5, @@ -8236,7 +8236,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.586235633921968, "position": { "x": 5, @@ -8259,7 +8259,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 5, @@ -8282,7 +8282,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 5, @@ -8305,7 +8305,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 5, @@ -8328,7 +8328,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 5, @@ -8351,7 +8351,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 5, @@ -8374,7 +8374,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 4, @@ -8397,7 +8397,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3372, + "noteOrder": 3345, "time": 0.6056331365149742, "position": { "x": 4, @@ -8420,7 +8420,7 @@ { "lineGroupId": 160, "indexInLine": 3, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 4, @@ -8443,7 +8443,7 @@ { "lineGroupId": 160, "indexInLine": 4, - "noteOrder": 3396, + "noteOrder": 3369, "time": 0.6099436926467535, "position": { "x": 4, @@ -8466,7 +8466,7 @@ { "lineGroupId": 160, "indexInLine": 5, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 4, @@ -8489,7 +8489,7 @@ { "lineGroupId": 160, "indexInLine": 6, - "noteOrder": 3420, + "noteOrder": 3393, "time": 0.6142542487785326, "position": { "x": 4, @@ -8512,7 +8512,7 @@ { "lineGroupId": 160, "indexInLine": 7, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 4, @@ -8535,7 +8535,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 6, @@ -8558,7 +8558,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 3372, + "noteOrder": 3345, "time": 0.6056331365149742, "position": { "x": 6, @@ -8581,7 +8581,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 7, @@ -8604,7 +8604,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 3396, + "noteOrder": 3369, "time": 0.6099436926467535, "position": { "x": 7, @@ -8627,7 +8627,7 @@ { "lineGroupId": 161, "indexInLine": 5, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 6, @@ -8650,7 +8650,7 @@ { "lineGroupId": 161, "indexInLine": 6, - "noteOrder": 3420, + "noteOrder": 3393, "time": 0.6142542487785326, "position": { "x": 6, @@ -8673,7 +8673,7 @@ { "lineGroupId": 161, "indexInLine": 7, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 7, @@ -8696,7 +8696,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6250306391079806, "position": { "x": 7, @@ -8719,7 +8719,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 3464, "time": 0.6271859171738702, "position": { "x": 7, @@ -8742,7 +8742,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 3464, "time": 0.6271859171738702, "position": { "x": 6, @@ -8765,7 +8765,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 6, @@ -8788,7 +8788,7 @@ { "lineGroupId": 164, "indexInLine": 5, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 5, @@ -8811,7 +8811,7 @@ { "lineGroupId": 164, "indexInLine": 6, - "noteOrder": 3510.0, + "noteOrder": 3482.0, "time": 0.6293411952397597, "position": { "x": 5, @@ -8834,7 +8834,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 7, @@ -8857,7 +8857,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 3516, + "noteOrder": 3488, "time": 0.6314964733056493, "position": { "x": 7, @@ -8880,7 +8880,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 3516, + "noteOrder": 3488, "time": 0.6314964733056493, "position": { "x": 6, @@ -8903,7 +8903,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 6, @@ -8926,7 +8926,7 @@ { "lineGroupId": 165, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 5, @@ -8949,7 +8949,7 @@ { "lineGroupId": 165, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 3506.0, "time": 0.633651751371539, "position": { "x": 5, @@ -8972,7 +8972,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 7, @@ -8995,7 +8995,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3540, + "noteOrder": 3512, "time": 0.6358070294374285, "position": { "x": 7, @@ -9018,7 +9018,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 3540, + "noteOrder": 3512, "time": 0.6358070294374285, "position": { "x": 6, @@ -9041,7 +9041,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 3546.0, + "noteOrder": 3518.0, "time": 0.6358070294374285, "position": { "x": 6, @@ -9064,7 +9064,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 4, @@ -9087,7 +9087,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 4, @@ -9110,7 +9110,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6465834197668765, "position": { "x": 6, @@ -9133,7 +9133,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 6, @@ -9156,7 +9156,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 3, @@ -9179,7 +9179,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 3, @@ -9202,7 +9202,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.6638256442939932, "position": { "x": 7, @@ -9225,7 +9225,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 7, @@ -9248,7 +9248,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6724467565575516, "position": { "x": 3, @@ -9271,7 +9271,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 3726, "time": 0.6746020346234411, "position": { "x": 3, @@ -9294,7 +9294,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 3726, "time": 0.6746020346234411, "position": { "x": 4, @@ -9317,7 +9317,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 3732.0, "time": 0.6746020346234411, "position": { "x": 4, @@ -9340,7 +9340,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6767573126893307, "position": { "x": 7, @@ -9363,7 +9363,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 3750, "time": 0.6789125907552203, "position": { "x": 7, @@ -9386,7 +9386,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 3750, "time": 0.6789125907552203, "position": { "x": 6, @@ -9409,7 +9409,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 3756.0, "time": 0.6789125907552203, "position": { "x": 6, @@ -9432,7 +9432,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 4, @@ -9455,7 +9455,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 4, @@ -9478,7 +9478,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 6, @@ -9501,7 +9501,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 6, @@ -9524,7 +9524,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6896889810846683, "position": { "x": 3, @@ -9547,7 +9547,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 3821, "time": 0.6918442591505578, "position": { "x": 3, @@ -9570,7 +9570,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 3821, "time": 0.6918442591505578, "position": { "x": 4, @@ -9593,7 +9593,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 4, @@ -9616,7 +9616,7 @@ { "lineGroupId": 182, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 5, @@ -9639,7 +9639,7 @@ { "lineGroupId": 182, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 3839.0, "time": 0.6939995372164474, "position": { "x": 5, @@ -9662,7 +9662,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 3, @@ -9685,7 +9685,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 3845, "time": 0.6961548152823369, "position": { "x": 3, @@ -9708,7 +9708,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 3845, "time": 0.6961548152823369, "position": { "x": 4, @@ -9731,7 +9731,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 4, @@ -9754,7 +9754,7 @@ { "lineGroupId": 183, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 5, @@ -9777,7 +9777,7 @@ { "lineGroupId": 183, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 3863.0, "time": 0.6983100933482267, "position": { "x": 5, @@ -9800,7 +9800,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 3, @@ -9823,7 +9823,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 3900, + "noteOrder": 3869, "time": 0.7004653714141162, "position": { "x": 3, @@ -9846,7 +9846,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 3900, + "noteOrder": 3869, "time": 0.7004653714141162, "position": { "x": 4, @@ -9869,7 +9869,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 4, @@ -9892,7 +9892,7 @@ { "lineGroupId": 184, "indexInLine": 5, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 5, @@ -9915,7 +9915,7 @@ { "lineGroupId": 184, "indexInLine": 6, - "noteOrder": 3918.0, + "noteOrder": 3887.0, "time": 0.7026206494800058, "position": { "x": 5, @@ -9938,7 +9938,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 3, @@ -9961,7 +9961,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3924, + "noteOrder": 3893, "time": 0.7047759275458954, "position": { "x": 3, @@ -9984,7 +9984,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3924, + "noteOrder": 3893, "time": 0.7047759275458954, "position": { "x": 4, @@ -10007,7 +10007,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 4, @@ -10030,7 +10030,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 5, @@ -10053,7 +10053,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 3911.0, "time": 0.7069312056117849, "position": { "x": 5, @@ -10076,7 +10076,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 3, @@ -10099,7 +10099,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 3, @@ -10122,7 +10122,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 5, @@ -10145,7 +10145,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7241734301389016, "position": { "x": 5, @@ -10168,7 +10168,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 5, @@ -10191,7 +10191,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 5, @@ -10214,7 +10214,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 5, @@ -10237,7 +10237,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 5, @@ -10260,7 +10260,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 5, @@ -10283,7 +10283,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 4, @@ -10306,7 +10306,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.743570932731908, "position": { "x": 4, @@ -10329,7 +10329,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 3, @@ -10352,7 +10352,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7478814888636871, "position": { "x": 3, @@ -10375,7 +10375,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 4, @@ -10398,7 +10398,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7521920449954662, "position": { "x": 4, @@ -10421,7 +10421,7 @@ { "lineGroupId": 194, "indexInLine": 7, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 3, @@ -10444,7 +10444,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 6, @@ -10467,7 +10467,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.743570932731908, "position": { "x": 6, @@ -10490,7 +10490,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 6, @@ -10513,7 +10513,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7478814888636871, "position": { "x": 6, @@ -10536,7 +10536,7 @@ { "lineGroupId": 195, "indexInLine": 5, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 6, @@ -10559,7 +10559,7 @@ { "lineGroupId": 195, "indexInLine": 6, - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7521920449954662, "position": { "x": 6, @@ -10582,7 +10582,7 @@ { "lineGroupId": 195, "indexInLine": 7, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 6, @@ -10605,7 +10605,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7629684353249142, "position": { "x": 3, @@ -10628,7 +10628,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7651237133908038, "position": { "x": 3, @@ -10651,7 +10651,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7651237133908038, "position": { "x": 4, @@ -10674,7 +10674,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 4, @@ -10697,7 +10697,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 5, @@ -10720,7 +10720,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 4278.0, + "noteOrder": 4244.0, "time": 0.7672789914566934, "position": { "x": 5, @@ -10743,7 +10743,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 3, @@ -10766,7 +10766,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.769434269522583, "position": { "x": 3, @@ -10789,7 +10789,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.769434269522583, "position": { "x": 4, @@ -10812,7 +10812,7 @@ { "lineGroupId": 199, "indexInLine": 4, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 4, @@ -10835,7 +10835,7 @@ { "lineGroupId": 199, "indexInLine": 5, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 5, @@ -10858,7 +10858,7 @@ { "lineGroupId": 199, "indexInLine": 6, - "noteOrder": 4302.0, + "noteOrder": 4268.0, "time": 0.7715895475884726, "position": { "x": 5, @@ -10881,7 +10881,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 3, @@ -10904,7 +10904,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 4308, + "noteOrder": 4274, "time": 0.7737448256543622, "position": { "x": 3, @@ -10927,7 +10927,7 @@ { "lineGroupId": 200, "indexInLine": 3, - "noteOrder": 4308, + "noteOrder": 4274, "time": 0.7737448256543622, "position": { "x": 4, @@ -10950,7 +10950,7 @@ { "lineGroupId": 200, "indexInLine": 4, - "noteOrder": 4314.0, + "noteOrder": 4280.0, "time": 0.7737448256543622, "position": { "x": 4, @@ -10973,7 +10973,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 6, @@ -10996,7 +10996,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 6, @@ -11019,7 +11019,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7845212159838101, "position": { "x": 4, @@ -11042,7 +11042,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 4, @@ -11065,7 +11065,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 7, @@ -11088,7 +11088,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 7, @@ -11111,7 +11111,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 3, @@ -11134,7 +11134,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 3, @@ -11157,7 +11157,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 6, @@ -11180,7 +11180,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 6, @@ -11203,7 +11203,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 4, @@ -11226,7 +11226,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 4, @@ -11249,7 +11249,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 7, @@ -11272,7 +11272,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.8146951089062643, "position": { "x": 6, @@ -11295,7 +11295,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8190056650380436, "position": { "x": 3, @@ -11318,7 +11318,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 4, @@ -11341,7 +11341,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8276267773016018, "position": { "x": 7, @@ -11364,7 +11364,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8297820553674914, "position": { "x": 7, @@ -11387,7 +11387,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8297820553674914, "position": { "x": 6, @@ -11410,7 +11410,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 6, @@ -11433,7 +11433,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 5, @@ -11456,7 +11456,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 4638.0, + "noteOrder": 4601.0, "time": 0.8319373334333812, "position": { "x": 5, @@ -11479,7 +11479,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 7, @@ -11502,7 +11502,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8340926114992707, "position": { "x": 7, @@ -11525,7 +11525,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8340926114992707, "position": { "x": 6, @@ -11548,7 +11548,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 6, @@ -11571,7 +11571,7 @@ { "lineGroupId": 214, "indexInLine": 5, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 5, @@ -11594,7 +11594,7 @@ { "lineGroupId": 214, "indexInLine": 6, - "noteOrder": 4662.0, + "noteOrder": 4625.0, "time": 0.8362478895651603, "position": { "x": 5, @@ -11617,7 +11617,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 7, @@ -11640,7 +11640,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8384031676310498, "position": { "x": 7, @@ -11663,7 +11663,7 @@ { "lineGroupId": 215, "indexInLine": 3, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8384031676310498, "position": { "x": 6, @@ -11686,7 +11686,7 @@ { "lineGroupId": 215, "indexInLine": 4, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 6, @@ -11709,7 +11709,7 @@ { "lineGroupId": 215, "indexInLine": 5, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 7, @@ -11732,7 +11732,7 @@ { "lineGroupId": 215, "indexInLine": 6, - "noteOrder": 4686.0, + "noteOrder": 4649.0, "time": 0.8405584456969394, "position": { "x": 7, @@ -11755,7 +11755,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 3, @@ -11778,7 +11778,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 3, @@ -11801,7 +11801,7 @@ { "lineGroupId": 217, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 4, @@ -11824,7 +11824,7 @@ { "lineGroupId": 217, "indexInLine": 4, - "noteOrder": 4722.0, + "noteOrder": 4684.0, "time": 0.8470242798946083, "position": { "x": 4, @@ -11847,7 +11847,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8491795579604978, "position": { "x": 7, @@ -11870,7 +11870,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 7, @@ -11893,7 +11893,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 6, @@ -11916,7 +11916,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 4746.0, + "noteOrder": 4708.0, "time": 0.8513348360263874, "position": { "x": 6, @@ -11939,7 +11939,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.857800670224056, "position": { "x": 3, @@ -11962,7 +11962,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4788, + "noteOrder": 4750, "time": 0.8599559482899457, "position": { "x": 3, @@ -11985,7 +11985,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4788, + "noteOrder": 4750, "time": 0.8599559482899457, "position": { "x": 4, @@ -12008,7 +12008,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4794.0, + "noteOrder": 4756.0, "time": 0.8599559482899457, "position": { "x": 4, @@ -12031,7 +12031,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8621112263558354, "position": { "x": 7, @@ -12054,7 +12054,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 7, @@ -12077,7 +12077,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8707323386193936, "position": { "x": 3, @@ -12100,7 +12100,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 3, @@ -12123,7 +12123,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 6, @@ -12146,7 +12146,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4908, + "noteOrder": 4869, "time": 0.8815087289488416, "position": { "x": 6, @@ -12169,7 +12169,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 7, @@ -12192,7 +12192,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 4932, + "noteOrder": 4893, "time": 0.8858192850806208, "position": { "x": 7, @@ -12215,7 +12215,7 @@ { "lineGroupId": 226, "indexInLine": 5, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 6, @@ -12238,7 +12238,7 @@ { "lineGroupId": 226, "indexInLine": 6, - "noteOrder": 4956, + "noteOrder": 4916, "time": 0.8901298412123999, "position": { "x": 6, @@ -12261,7 +12261,7 @@ { "lineGroupId": 226, "indexInLine": 7, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 7, @@ -12284,7 +12284,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 4, @@ -12307,7 +12307,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 4908, + "noteOrder": 4869, "time": 0.8815087289488416, "position": { "x": 4, @@ -12330,7 +12330,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 4, @@ -12353,7 +12353,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 4932, + "noteOrder": 4893, "time": 0.8858192850806208, "position": { "x": 4, @@ -12376,7 +12376,7 @@ { "lineGroupId": 227, "indexInLine": 5, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 4, @@ -12399,7 +12399,7 @@ { "lineGroupId": 227, "indexInLine": 6, - "noteOrder": 4956, + "noteOrder": 4916, "time": 0.8901298412123999, "position": { "x": 4, @@ -12422,7 +12422,7 @@ { "lineGroupId": 227, "indexInLine": 7, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 4, @@ -12445,7 +12445,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8965956754100687, "position": { "x": 3, @@ -12468,7 +12468,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5004, + "noteOrder": 4964, "time": 0.8987509534759583, "position": { "x": 3, @@ -12491,7 +12491,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5004, + "noteOrder": 4964, "time": 0.8987509534759583, "position": { "x": 4, @@ -12514,7 +12514,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 4, @@ -12537,7 +12537,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 5, @@ -12560,7 +12560,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 5022.0, + "noteOrder": 4982.0, "time": 0.9009062315418479, "position": { "x": 5, @@ -12583,7 +12583,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 3, @@ -12606,7 +12606,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5028, + "noteOrder": 4988, "time": 0.9030615096077375, "position": { "x": 3, @@ -12629,7 +12629,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5028, + "noteOrder": 4988, "time": 0.9030615096077375, "position": { "x": 4, @@ -12652,7 +12652,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 4, @@ -12675,7 +12675,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 5, @@ -12698,7 +12698,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5046.0, + "noteOrder": 5006.0, "time": 0.905216787673627, "position": { "x": 5, @@ -12721,7 +12721,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 3, @@ -12744,7 +12744,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5052, + "noteOrder": 5012, "time": 0.9073720657395167, "position": { "x": 3, @@ -12767,7 +12767,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 5052, + "noteOrder": 5012, "time": 0.9073720657395167, "position": { "x": 4, @@ -12790,7 +12790,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 4, @@ -12813,7 +12813,7 @@ { "lineGroupId": 230, "indexInLine": 5, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 3, @@ -12836,7 +12836,7 @@ { "lineGroupId": 230, "indexInLine": 6, - "noteOrder": 5070.0, + "noteOrder": 5030.0, "time": 0.9095273438054062, "position": { "x": 3, @@ -12859,7 +12859,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 7, @@ -12882,7 +12882,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 7, @@ -12905,7 +12905,7 @@ { "lineGroupId": 232, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 6, @@ -12928,7 +12928,7 @@ { "lineGroupId": 232, "indexInLine": 4, - "noteOrder": 5106.0, + "noteOrder": 5065.0, "time": 0.915993178003075, "position": { "x": 6, @@ -12951,7 +12951,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.9181484560689646, "position": { "x": 3, @@ -12974,7 +12974,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 3, @@ -12997,7 +12997,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 4, @@ -13020,7 +13020,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 5130.0, + "noteOrder": 5089.0, "time": 0.9203037341348541, "position": { "x": 4, @@ -13043,7 +13043,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.926769568332523, "position": { "x": 7, @@ -13066,7 +13066,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 5172, + "noteOrder": 5131, "time": 0.9289248463984126, "position": { "x": 7, @@ -13089,7 +13089,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 5172, + "noteOrder": 5131, "time": 0.9289248463984126, "position": { "x": 6, @@ -13112,7 +13112,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 5178.0, + "noteOrder": 5137.0, "time": 0.9289248463984126, "position": { "x": 6, @@ -13135,7 +13135,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9310801244643021, "position": { "x": 3, @@ -13158,7 +13158,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 3, @@ -13181,7 +13181,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9397012367278605, "position": { "x": 7, @@ -13204,7 +13204,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 7, @@ -13227,7 +13227,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.9612540173867563, "position": { "x": 3, @@ -13250,7 +13250,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 3, @@ -13273,7 +13273,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.9612540173867563, "position": { "x": 7, @@ -13296,7 +13296,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 7, @@ -13319,7 +13319,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 97.5, + "noteOrder": 96.5, "time": 0.017242224527116705, "position": { "x": 5, @@ -13347,7 +13347,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 481.5, + "noteOrder": 477.5, "time": 0.08621112263558353, "position": { "x": 5, @@ -13375,7 +13375,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 577.5, + "noteOrder": 572.5, "time": 0.10345334716270023, "position": { "x": 5, @@ -13403,7 +13403,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 613.5, + "noteOrder": 608.5, "time": 0.109919181360369, "position": { "x": 5, @@ -13431,7 +13431,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 769.5, + "noteOrder": 763.5, "time": 0.13793779621693364, "position": { "x": 5, @@ -13459,7 +13459,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1812.0, + "noteOrder": 1798.0, "time": 0.32329170988343825, "position": { "x": 5, @@ -13487,7 +13487,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2401.5, + "noteOrder": 2382.5, "time": 0.4310556131779177, "position": { "x": 5, @@ -13515,7 +13515,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2449.5, + "noteOrder": 2429.5, "time": 0.439676725441476, "position": { "x": 5, @@ -13543,7 +13543,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2593.5, + "noteOrder": 2572.5, "time": 0.46554006223215105, "position": { "x": 5, @@ -13571,7 +13571,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2641.5, + "noteOrder": 2620.5, "time": 0.4741611744957094, "position": { "x": 5, @@ -13599,7 +13599,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2689.5, + "noteOrder": 2668.5, "time": 0.4827822867592677, "position": { "x": 5, @@ -13627,7 +13627,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2737.5, + "noteOrder": 2715.5, "time": 0.49140339902282615, "position": { "x": 5, @@ -13655,7 +13655,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3036.0, + "noteOrder": 3012.0, "time": 0.5431300726041762, "position": { "x": 5, @@ -13683,7 +13683,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3673.5, + "noteOrder": 3644.5, "time": 0.659515088162214, "position": { "x": 5, @@ -13711,7 +13711,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3721.5, + "noteOrder": 3691.5, "time": 0.6681362004257724, "position": { "x": 5, @@ -13739,7 +13739,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3828.0, + "noteOrder": 3798.0, "time": 0.6853784249528891, "position": { "x": 5, @@ -13767,7 +13767,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4513.5, + "noteOrder": 4477.5, "time": 0.8103845527744852, "position": { "x": 5, @@ -13795,7 +13795,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4561.5, + "noteOrder": 4525.5, "time": 0.8190056650380436, "position": { "x": 5, @@ -13823,7 +13823,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5377.5, + "noteOrder": 5334.5, "time": 0.9655645735185354, "position": { "x": 5, @@ -13864,7 +13864,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "5.45", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a_blockless.json index 210c085a..a6af0095 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 4, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 2, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 8, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 643, "time": 0.11638501555803776, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 667, "time": 0.12069557168981693, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 690, "time": 0.12500612782159612, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13793779621693364, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.14224835234871283, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 881, "time": 0.15949057687582954, "position": { "x": 5, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 905, "time": 0.1638011330076087, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 7, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21552780658895884, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1212, + "noteOrder": 1202, "time": 0.2176830846548484, "position": { "x": 5, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 8, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 2, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.28449670469742566, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1596, + "noteOrder": 1583, "time": 0.2866519827633152, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 8, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.3405339344105549, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1908, + "noteOrder": 1893, "time": 0.34268921247644457, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2155, "time": 0.3901053299260155, "position": { "x": 5, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.4095028325190218, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2292, + "noteOrder": 2274, "time": 0.41165811058491136, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2556, + "noteOrder": 2536, "time": 0.4590742280344823, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 3, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4698506183639303, "position": { "x": 7, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.48709284289104693, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.5043350674181636, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2892, + "noteOrder": 2869, "time": 0.5194220138793908, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 2881, "time": 0.5215772919452804, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2916, + "noteOrder": 2893, "time": 0.5237325700111699, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 2905, "time": 0.5258878480770596, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2940, + "noteOrder": 2917, "time": 0.5280431261429491, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 3, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5776145216584097, "position": { "x": 8, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6207200829762014, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3468, + "noteOrder": 3440, "time": 0.6228753610420911, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 2, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 8, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7155523178753433, "position": { "x": 2, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 5, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7586578791931351, "position": { "x": 7, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4236, + "noteOrder": 4202, "time": 0.7608131572590247, "position": { "x": 5, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 8, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 2, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8534901140922769, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4764, + "noteOrder": 4726, "time": 0.8556453921581665, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 8, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 2, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 7, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9224590122007438, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5148, + "noteOrder": 5107, "time": 0.9246142902666334, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 2, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 8, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 4, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5340, + "noteOrder": 5297, "time": 0.9590987393208668, "position": { "x": 5, @@ -2187,7 +2187,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.017242224527116705, "position": { "x": 6, @@ -2210,7 +2210,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 6, @@ -2233,7 +2233,7 @@ { "lineGroupId": 1, "indexInLine": 3, - "noteOrder": 144, + "noteOrder": 143, "time": 0.025863336790675057, "position": { "x": 7, @@ -2256,7 +2256,7 @@ { "lineGroupId": 1, "indexInLine": 4, - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 7, @@ -2279,7 +2279,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 190, "time": 0.03448444905423341, "position": { "x": 4, @@ -2302,7 +2302,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 4, @@ -2325,7 +2325,7 @@ { "lineGroupId": 5, "indexInLine": 3, - "noteOrder": 240, + "noteOrder": 238, "time": 0.043105561317791766, "position": { "x": 3, @@ -2348,7 +2348,7 @@ { "lineGroupId": 5, "indexInLine": 4, - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 3, @@ -2371,7 +2371,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 286, "time": 0.051726673581350115, "position": { "x": 7, @@ -2394,7 +2394,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 7, @@ -2417,7 +2417,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 333, "time": 0.060347785844908464, "position": { "x": 3, @@ -2440,7 +2440,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 3, @@ -2463,7 +2463,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 381, "time": 0.06896889810846682, "position": { "x": 6, @@ -2486,7 +2486,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 420, + "noteOrder": 417, "time": 0.07543473230613558, "position": { "x": 6, @@ -2509,7 +2509,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 6, @@ -2532,7 +2532,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 444, + "noteOrder": 440, "time": 0.07974528843791477, "position": { "x": 6, @@ -2555,7 +2555,7 @@ { "lineGroupId": 12, "indexInLine": 5, - "noteOrder": 456, + "noteOrder": 452, "time": 0.08190056650380435, "position": { "x": 6, @@ -2578,7 +2578,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 408, + "noteOrder": 405, "time": 0.073279454240246, "position": { "x": 4, @@ -2601,7 +2601,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 420, + "noteOrder": 417, "time": 0.07543473230613558, "position": { "x": 4, @@ -2624,7 +2624,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 3, @@ -2647,7 +2647,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 444, + "noteOrder": 440, "time": 0.07974528843791477, "position": { "x": 3, @@ -2670,7 +2670,7 @@ { "lineGroupId": 13, "indexInLine": 5, - "noteOrder": 456, + "noteOrder": 452, "time": 0.08190056650380435, "position": { "x": 4, @@ -2693,7 +2693,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 476, "time": 0.08621112263558353, "position": { "x": 4, @@ -2716,7 +2716,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 4, @@ -2739,7 +2739,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 524, "time": 0.09483223489914189, "position": { "x": 6, @@ -2762,7 +2762,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 6, @@ -2785,7 +2785,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 571, "time": 0.10345334716270023, "position": { "x": 3, @@ -2808,7 +2808,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 3, @@ -2831,7 +2831,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 612, + "noteOrder": 607, "time": 0.109919181360369, "position": { "x": 7, @@ -2854,7 +2854,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 636, + "noteOrder": 631, "time": 0.11422973749214818, "position": { "x": 7, @@ -2877,7 +2877,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 952, "time": 0.17242224527116706, "position": { "x": 7, @@ -2900,7 +2900,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 964, "time": 0.17457752333705667, "position": { "x": 7, @@ -2923,7 +2923,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 964, "time": 0.17457752333705667, "position": { "x": 6, @@ -2946,7 +2946,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 970.0, "time": 0.17457752333705667, "position": { "x": 6, @@ -2969,7 +2969,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 976, "time": 0.17673280140294623, "position": { "x": 3, @@ -2992,7 +2992,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17888807946883584, "position": { "x": 3, @@ -3015,7 +3015,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 988, "time": 0.17888807946883584, "position": { "x": 4, @@ -3038,7 +3038,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 4, @@ -3061,7 +3061,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 3, @@ -3084,7 +3084,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1014.0, + "noteOrder": 1006.0, "time": 0.1810433575347254, "position": { "x": 3, @@ -3107,7 +3107,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18966446979828377, "position": { "x": 7, @@ -3130,7 +3130,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 1059, "time": 0.19181974786417336, "position": { "x": 7, @@ -3153,7 +3153,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 1059, "time": 0.19181974786417336, "position": { "x": 6, @@ -3176,7 +3176,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 6, @@ -3199,7 +3199,7 @@ { "lineGroupId": 45, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 5, @@ -3222,7 +3222,7 @@ { "lineGroupId": 45, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 1077.0, "time": 0.19397502593006294, "position": { "x": 5, @@ -3245,7 +3245,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 7, @@ -3268,7 +3268,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 1083, "time": 0.19613030399595252, "position": { "x": 7, @@ -3291,7 +3291,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 1083, "time": 0.19613030399595252, "position": { "x": 6, @@ -3314,7 +3314,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 6, @@ -3337,7 +3337,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 5, @@ -3360,7 +3360,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1101.0, "time": 0.19828558206184213, "position": { "x": 5, @@ -3383,7 +3383,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 7, @@ -3406,7 +3406,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1116, + "noteOrder": 1107, "time": 0.2004408601277317, "position": { "x": 7, @@ -3429,7 +3429,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1116, + "noteOrder": 1107, "time": 0.2004408601277317, "position": { "x": 6, @@ -3452,7 +3452,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 6, @@ -3475,7 +3475,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 7, @@ -3498,7 +3498,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1134.0, + "noteOrder": 1125.0, "time": 0.2025961381936213, "position": { "x": 7, @@ -3521,7 +3521,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 3, @@ -3544,7 +3544,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 3, @@ -3567,7 +3567,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 4, @@ -3590,7 +3590,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1170.0, + "noteOrder": 1161.0, "time": 0.20906197239129007, "position": { "x": 4, @@ -3613,7 +3613,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.21121725045717962, "position": { "x": 7, @@ -3636,7 +3636,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 7, @@ -3659,7 +3659,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 6, @@ -3682,7 +3682,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1194.0, + "noteOrder": 1185.0, "time": 0.21337252852306923, "position": { "x": 6, @@ -3705,7 +3705,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.219838362720738, "position": { "x": 3, @@ -3728,7 +3728,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1236, + "noteOrder": 1226, "time": 0.2219936407866276, "position": { "x": 3, @@ -3751,7 +3751,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1236, + "noteOrder": 1226, "time": 0.2219936407866276, "position": { "x": 4, @@ -3774,7 +3774,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1242.0, + "noteOrder": 1232.0, "time": 0.2219936407866276, "position": { "x": 4, @@ -3797,7 +3797,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.22414891885251717, "position": { "x": 7, @@ -3820,7 +3820,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 7, @@ -3843,7 +3843,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.23277003111607553, "position": { "x": 3, @@ -3866,7 +3866,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 3, @@ -3889,7 +3889,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 4, @@ -3912,7 +3912,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 1345, "time": 0.24354642144552346, "position": { "x": 4, @@ -3935,7 +3935,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 4, @@ -3958,7 +3958,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1380, + "noteOrder": 1369, "time": 0.24785697757730263, "position": { "x": 4, @@ -3981,7 +3981,7 @@ { "lineGroupId": 58, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 4, @@ -4004,7 +4004,7 @@ { "lineGroupId": 58, "indexInLine": 6, - "noteOrder": 1404, + "noteOrder": 1393, "time": 0.2521675337090818, "position": { "x": 4, @@ -4027,7 +4027,7 @@ { "lineGroupId": 58, "indexInLine": 7, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 4, @@ -4050,7 +4050,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 6, @@ -4073,7 +4073,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 1345, "time": 0.24354642144552346, "position": { "x": 6, @@ -4096,7 +4096,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 7, @@ -4119,7 +4119,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1380, + "noteOrder": 1369, "time": 0.24785697757730263, "position": { "x": 7, @@ -4142,7 +4142,7 @@ { "lineGroupId": 59, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 6, @@ -4165,7 +4165,7 @@ { "lineGroupId": 59, "indexInLine": 6, - "noteOrder": 1404, + "noteOrder": 1393, "time": 0.2521675337090818, "position": { "x": 6, @@ -4188,7 +4188,7 @@ { "lineGroupId": 59, "indexInLine": 7, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 7, @@ -4211,7 +4211,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1429, "time": 0.25863336790675057, "position": { "x": 3, @@ -4234,7 +4234,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 1440, "time": 0.2607886459726402, "position": { "x": 3, @@ -4257,7 +4257,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 1440, "time": 0.2607886459726402, "position": { "x": 4, @@ -4280,7 +4280,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 4, @@ -4303,7 +4303,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 5, @@ -4326,7 +4326,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 1458.0, "time": 0.2629439240385298, "position": { "x": 5, @@ -4349,30 +4349,30 @@ { "lineGroupId": 61, "indexInLine": 1, + "noteOrder": 1452, + "time": 0.2629439240385298, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 61, + "indexInLine": 2, "noteOrder": 1464, - "time": 0.2629439240385298, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 61, - "indexInLine": 2, - "noteOrder": 1476, "time": 0.26509920210441934, "position": { "x": 3, @@ -4395,7 +4395,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 1464, "time": 0.26509920210441934, "position": { "x": 4, @@ -4418,7 +4418,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 4, @@ -4441,7 +4441,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 5, @@ -4464,7 +4464,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 1482.0, "time": 0.26725448017030895, "position": { "x": 5, @@ -4487,7 +4487,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 3, @@ -4510,7 +4510,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1500, + "noteOrder": 1488, "time": 0.2694097582361985, "position": { "x": 3, @@ -4533,7 +4533,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1500, + "noteOrder": 1488, "time": 0.2694097582361985, "position": { "x": 4, @@ -4556,7 +4556,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 4, @@ -4579,7 +4579,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 3, @@ -4602,7 +4602,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1518.0, + "noteOrder": 1506.0, "time": 0.2715650363020881, "position": { "x": 3, @@ -4625,7 +4625,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 7, @@ -4648,7 +4648,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.2780308704997569, "position": { "x": 7, @@ -4671,7 +4671,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1548, + "noteOrder": 1536, "time": 0.2780308704997569, "position": { "x": 6, @@ -4694,7 +4694,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1554.0, + "noteOrder": 1542.0, "time": 0.2780308704997569, "position": { "x": 6, @@ -4717,7 +4717,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2801861485656465, "position": { "x": 3, @@ -4740,7 +4740,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 3, @@ -4763,7 +4763,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 4, @@ -4786,7 +4786,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.28234142663153605, "position": { "x": 4, @@ -4809,7 +4809,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2888072608292048, "position": { "x": 7, @@ -4832,7 +4832,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1620, + "noteOrder": 1607, "time": 0.29096253889509444, "position": { "x": 7, @@ -4855,7 +4855,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 1620, + "noteOrder": 1607, "time": 0.29096253889509444, "position": { "x": 6, @@ -4878,7 +4878,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 1626.0, + "noteOrder": 1613.0, "time": 0.29096253889509444, "position": { "x": 6, @@ -4901,7 +4901,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.293117816960984, "position": { "x": 3, @@ -4924,7 +4924,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 3, @@ -4947,7 +4947,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.3017389292245423, "position": { "x": 7, @@ -4970,7 +4970,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 7, @@ -4993,7 +4993,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 4, @@ -5016,7 +5016,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 4, @@ -5039,7 +5039,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 6, @@ -5062,7 +5062,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 6, @@ -5085,7 +5085,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3276022660152174, "position": { "x": 3, @@ -5108,7 +5108,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.329757544081107, "position": { "x": 3, @@ -5131,7 +5131,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 1821, "time": 0.329757544081107, "position": { "x": 4, @@ -5154,7 +5154,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 4, @@ -5177,7 +5177,7 @@ { "lineGroupId": 80, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 5, @@ -5200,7 +5200,7 @@ { "lineGroupId": 80, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 1839.0, "time": 0.3319128221469966, "position": { "x": 5, @@ -5223,7 +5223,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 3, @@ -5246,7 +5246,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 1860, + "noteOrder": 1845, "time": 0.3340681002128862, "position": { "x": 3, @@ -5269,7 +5269,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 1860, + "noteOrder": 1845, "time": 0.3340681002128862, "position": { "x": 4, @@ -5292,7 +5292,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 4, @@ -5315,7 +5315,7 @@ { "lineGroupId": 81, "indexInLine": 5, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 5, @@ -5338,7 +5338,7 @@ { "lineGroupId": 81, "indexInLine": 6, - "noteOrder": 1878.0, + "noteOrder": 1863.0, "time": 0.3362233782787758, "position": { "x": 5, @@ -5361,7 +5361,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 3, @@ -5384,7 +5384,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33837865634466535, "position": { "x": 3, @@ -5407,7 +5407,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 1884, + "noteOrder": 1869, "time": 0.33837865634466535, "position": { "x": 4, @@ -5430,7 +5430,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 1890.0, + "noteOrder": 1875.0, "time": 0.33837865634466535, "position": { "x": 4, @@ -5453,7 +5453,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3448444905423341, "position": { "x": 7, @@ -5476,7 +5476,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3469997686082237, "position": { "x": 7, @@ -5499,7 +5499,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 1917, "time": 0.3469997686082237, "position": { "x": 6, @@ -5522,7 +5522,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 6, @@ -5545,7 +5545,7 @@ { "lineGroupId": 85, "indexInLine": 5, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 5, @@ -5568,7 +5568,7 @@ { "lineGroupId": 85, "indexInLine": 6, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.34915504667411335, "position": { "x": 5, @@ -5591,7 +5591,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 7, @@ -5614,7 +5614,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.3513103247400029, "position": { "x": 7, @@ -5637,7 +5637,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 1940, "time": 0.3513103247400029, "position": { "x": 6, @@ -5660,7 +5660,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 6, @@ -5683,7 +5683,7 @@ { "lineGroupId": 86, "indexInLine": 5, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 5, @@ -5706,7 +5706,7 @@ { "lineGroupId": 86, "indexInLine": 6, - "noteOrder": 1974.0, + "noteOrder": 1958.0, "time": 0.35346560280589245, "position": { "x": 5, @@ -5729,7 +5729,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 7, @@ -5752,7 +5752,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 1964, "time": 0.3556208808717821, "position": { "x": 7, @@ -5775,7 +5775,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 1964, "time": 0.3556208808717821, "position": { "x": 6, @@ -5798,7 +5798,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 1986.0, + "noteOrder": 1970.0, "time": 0.3556208808717821, "position": { "x": 6, @@ -5821,7 +5821,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 3, @@ -5844,7 +5844,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2004, + "noteOrder": 1988, "time": 0.3599314370035612, "position": { "x": 3, @@ -5867,7 +5867,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2004, + "noteOrder": 1988, "time": 0.3599314370035612, "position": { "x": 4, @@ -5890,7 +5890,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2010.0, + "noteOrder": 1994.0, "time": 0.3599314370035612, "position": { "x": 4, @@ -5913,7 +5913,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.3620867150694508, "position": { "x": 5, @@ -5936,7 +5936,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -5959,7 +5959,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -5982,7 +5982,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -6005,7 +6005,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -6028,7 +6028,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -6051,7 +6051,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 7, @@ -6074,7 +6074,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.3814842176624571, "position": { "x": 7, @@ -6097,7 +6097,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 2107, "time": 0.3814842176624571, "position": { "x": 6, @@ -6120,7 +6120,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 2113.0, "time": 0.3814842176624571, "position": { "x": 6, @@ -6143,7 +6143,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 2119, "time": 0.3836394957283467, "position": { "x": 3, @@ -6166,7 +6166,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.3857947737942363, "position": { "x": 3, @@ -6189,7 +6189,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 2131, "time": 0.3857947737942363, "position": { "x": 4, @@ -6212,7 +6212,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 2137.0, "time": 0.3857947737942363, "position": { "x": 4, @@ -6235,7 +6235,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.39657116412368426, "position": { "x": 7, @@ -6258,7 +6258,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 2202, "time": 0.3987264421895738, "position": { "x": 7, @@ -6281,7 +6281,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 2202, "time": 0.3987264421895738, "position": { "x": 6, @@ -6304,7 +6304,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 6, @@ -6327,7 +6327,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 5, @@ -6350,7 +6350,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 2238.0, + "noteOrder": 2220.0, "time": 0.4008817202554634, "position": { "x": 5, @@ -6373,7 +6373,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 7, @@ -6396,7 +6396,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 2226, "time": 0.40303699832135303, "position": { "x": 7, @@ -6419,7 +6419,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 2226, "time": 0.40303699832135303, "position": { "x": 6, @@ -6442,7 +6442,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 6, @@ -6465,7 +6465,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 5, @@ -6488,7 +6488,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 2262.0, + "noteOrder": 2244.0, "time": 0.4051922763872426, "position": { "x": 5, @@ -6511,7 +6511,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 7, @@ -6534,7 +6534,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 2250, "time": 0.40734755445313214, "position": { "x": 7, @@ -6557,7 +6557,7 @@ { "lineGroupId": 101, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 2250, "time": 0.40734755445313214, "position": { "x": 6, @@ -6580,7 +6580,7 @@ { "lineGroupId": 101, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 2256.0, "time": 0.40734755445313214, "position": { "x": 6, @@ -6603,7 +6603,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4138133886508009, "position": { "x": 3, @@ -6626,7 +6626,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 2298, "time": 0.4159686667166906, "position": { "x": 3, @@ -6649,7 +6649,7 @@ { "lineGroupId": 104, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 2298, "time": 0.4159686667166906, "position": { "x": 4, @@ -6672,7 +6672,7 @@ { "lineGroupId": 104, "indexInLine": 4, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 4, @@ -6695,7 +6695,7 @@ { "lineGroupId": 104, "indexInLine": 5, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 5, @@ -6718,7 +6718,7 @@ { "lineGroupId": 104, "indexInLine": 6, - "noteOrder": 2334.0, + "noteOrder": 2315.0, "time": 0.41812394478258014, "position": { "x": 5, @@ -6741,7 +6741,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 3, @@ -6764,7 +6764,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4202792228484697, "position": { "x": 3, @@ -6787,7 +6787,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 2321, "time": 0.4202792228484697, "position": { "x": 4, @@ -6810,7 +6810,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 4, @@ -6833,7 +6833,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 5, @@ -6856,7 +6856,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 2358.0, + "noteOrder": 2339.0, "time": 0.42243450091435925, "position": { "x": 5, @@ -6879,7 +6879,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 3, @@ -6902,7 +6902,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.4245897789802489, "position": { "x": 3, @@ -6925,7 +6925,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 2345, "time": 0.4245897789802489, "position": { "x": 4, @@ -6948,7 +6948,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 2351.0, "time": 0.4245897789802489, "position": { "x": 4, @@ -6971,7 +6971,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 7, @@ -6994,7 +6994,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2388, + "noteOrder": 2369, "time": 0.428900335112028, "position": { "x": 7, @@ -7017,7 +7017,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2388, + "noteOrder": 2369, "time": 0.428900335112028, "position": { "x": 6, @@ -7040,7 +7040,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2394.0, + "noteOrder": 2375.0, "time": 0.428900335112028, "position": { "x": 6, @@ -7063,7 +7063,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.4310556131779177, "position": { "x": 3, @@ -7086,7 +7086,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 3, @@ -7109,7 +7109,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.439676725441476, "position": { "x": 7, @@ -7132,7 +7132,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 7, @@ -7155,7 +7155,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 3, @@ -7178,7 +7178,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2508, + "noteOrder": 2488, "time": 0.45045311577092395, "position": { "x": 3, @@ -7201,7 +7201,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2508, + "noteOrder": 2488, "time": 0.45045311577092395, "position": { "x": 4, @@ -7224,7 +7224,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2514.0, + "noteOrder": 2494.0, "time": 0.45045311577092395, "position": { "x": 4, @@ -7247,7 +7247,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 2500, "time": 0.4526083938368135, "position": { "x": 7, @@ -7270,7 +7270,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2532, + "noteOrder": 2512, "time": 0.4547636719027031, "position": { "x": 7, @@ -7293,7 +7293,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 2532, + "noteOrder": 2512, "time": 0.4547636719027031, "position": { "x": 6, @@ -7316,7 +7316,7 @@ { "lineGroupId": 115, "indexInLine": 4, - "noteOrder": 2538.0, + "noteOrder": 2518.0, "time": 0.4547636719027031, "position": { "x": 6, @@ -7339,7 +7339,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.46554006223215105, "position": { "x": 3, @@ -7362,7 +7362,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 3, @@ -7385,7 +7385,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 7, @@ -7408,7 +7408,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 7, @@ -7431,7 +7431,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 7, @@ -7454,7 +7454,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.5366642384065075, "position": { "x": 7, @@ -7477,7 +7477,7 @@ { "lineGroupId": 143, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 2988, "time": 0.5409747945382867, "position": { "x": 3, @@ -7500,7 +7500,7 @@ { "lineGroupId": 143, "indexInLine": 4, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 3, @@ -7523,7 +7523,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 3, @@ -7546,7 +7546,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 2988, + "noteOrder": 2964, "time": 0.5366642384065075, "position": { "x": 3, @@ -7569,7 +7569,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 3012, + "noteOrder": 2988, "time": 0.5409747945382867, "position": { "x": 7, @@ -7592,7 +7592,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 7, @@ -7615,7 +7615,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5517511848677346, "position": { "x": 7, @@ -7638,7 +7638,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5539064629336242, "position": { "x": 7, @@ -7661,7 +7661,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 3084, + "noteOrder": 3059, "time": 0.5539064629336242, "position": { "x": 6, @@ -7684,7 +7684,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 6, @@ -7707,7 +7707,7 @@ { "lineGroupId": 148, "indexInLine": 5, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 5, @@ -7730,7 +7730,7 @@ { "lineGroupId": 148, "indexInLine": 6, - "noteOrder": 3102.0, + "noteOrder": 3077.0, "time": 0.5560617409995138, "position": { "x": 5, @@ -7753,7 +7753,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 7, @@ -7776,7 +7776,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5582170190654033, "position": { "x": 7, @@ -7799,7 +7799,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3108, + "noteOrder": 3083, "time": 0.5582170190654033, "position": { "x": 6, @@ -7822,7 +7822,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 6, @@ -7845,7 +7845,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 5, @@ -7868,7 +7868,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3126.0, + "noteOrder": 3101.0, "time": 0.560372297131293, "position": { "x": 5, @@ -7891,7 +7891,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 7, @@ -7914,7 +7914,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5625275751971825, "position": { "x": 7, @@ -7937,7 +7937,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3132, + "noteOrder": 3107, "time": 0.5625275751971825, "position": { "x": 6, @@ -7960,7 +7960,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 6, @@ -7983,7 +7983,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 5, @@ -8006,7 +8006,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3150.0, + "noteOrder": 3125.0, "time": 0.5646828532630721, "position": { "x": 5, @@ -8029,7 +8029,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 7, @@ -8052,7 +8052,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3156, + "noteOrder": 3131, "time": 0.5668381313289618, "position": { "x": 7, @@ -8075,7 +8075,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3156, + "noteOrder": 3131, "time": 0.5668381313289618, "position": { "x": 6, @@ -8098,7 +8098,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 6, @@ -8121,7 +8121,7 @@ { "lineGroupId": 151, "indexInLine": 5, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 5, @@ -8144,7 +8144,7 @@ { "lineGroupId": 151, "indexInLine": 6, - "noteOrder": 3174.0, + "noteOrder": 3149.0, "time": 0.5689934093948513, "position": { "x": 5, @@ -8167,7 +8167,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 7, @@ -8190,7 +8190,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 7, @@ -8213,7 +8213,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 5, @@ -8236,7 +8236,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.586235633921968, "position": { "x": 5, @@ -8259,7 +8259,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 5, @@ -8282,7 +8282,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 5, @@ -8305,7 +8305,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 5, @@ -8328,7 +8328,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 5, @@ -8351,7 +8351,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 5, @@ -8374,7 +8374,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 4, @@ -8397,7 +8397,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 3372, + "noteOrder": 3345, "time": 0.6056331365149742, "position": { "x": 4, @@ -8420,7 +8420,7 @@ { "lineGroupId": 160, "indexInLine": 3, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 4, @@ -8443,7 +8443,7 @@ { "lineGroupId": 160, "indexInLine": 4, - "noteOrder": 3396, + "noteOrder": 3369, "time": 0.6099436926467535, "position": { "x": 4, @@ -8466,7 +8466,7 @@ { "lineGroupId": 160, "indexInLine": 5, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 4, @@ -8489,7 +8489,7 @@ { "lineGroupId": 160, "indexInLine": 6, - "noteOrder": 3420, + "noteOrder": 3393, "time": 0.6142542487785326, "position": { "x": 4, @@ -8512,7 +8512,7 @@ { "lineGroupId": 160, "indexInLine": 7, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 4, @@ -8535,7 +8535,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 6, @@ -8558,7 +8558,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 3372, + "noteOrder": 3345, "time": 0.6056331365149742, "position": { "x": 6, @@ -8581,7 +8581,7 @@ { "lineGroupId": 161, "indexInLine": 3, - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 7, @@ -8604,7 +8604,7 @@ { "lineGroupId": 161, "indexInLine": 4, - "noteOrder": 3396, + "noteOrder": 3369, "time": 0.6099436926467535, "position": { "x": 7, @@ -8627,7 +8627,7 @@ { "lineGroupId": 161, "indexInLine": 5, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 6, @@ -8650,7 +8650,7 @@ { "lineGroupId": 161, "indexInLine": 6, - "noteOrder": 3420, + "noteOrder": 3393, "time": 0.6142542487785326, "position": { "x": 6, @@ -8673,7 +8673,7 @@ { "lineGroupId": 161, "indexInLine": 7, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 7, @@ -8696,7 +8696,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6250306391079806, "position": { "x": 7, @@ -8719,7 +8719,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 3464, "time": 0.6271859171738702, "position": { "x": 7, @@ -8742,7 +8742,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 3464, "time": 0.6271859171738702, "position": { "x": 6, @@ -8765,7 +8765,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 6, @@ -8788,7 +8788,7 @@ { "lineGroupId": 164, "indexInLine": 5, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 5, @@ -8811,7 +8811,7 @@ { "lineGroupId": 164, "indexInLine": 6, - "noteOrder": 3510.0, + "noteOrder": 3482.0, "time": 0.6293411952397597, "position": { "x": 5, @@ -8834,7 +8834,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 7, @@ -8857,7 +8857,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 3516, + "noteOrder": 3488, "time": 0.6314964733056493, "position": { "x": 7, @@ -8880,7 +8880,7 @@ { "lineGroupId": 165, "indexInLine": 3, - "noteOrder": 3516, + "noteOrder": 3488, "time": 0.6314964733056493, "position": { "x": 6, @@ -8903,7 +8903,7 @@ { "lineGroupId": 165, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 6, @@ -8926,7 +8926,7 @@ { "lineGroupId": 165, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 5, @@ -8949,7 +8949,7 @@ { "lineGroupId": 165, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 3506.0, "time": 0.633651751371539, "position": { "x": 5, @@ -8972,7 +8972,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 7, @@ -8995,7 +8995,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3540, + "noteOrder": 3512, "time": 0.6358070294374285, "position": { "x": 7, @@ -9018,7 +9018,7 @@ { "lineGroupId": 166, "indexInLine": 3, - "noteOrder": 3540, + "noteOrder": 3512, "time": 0.6358070294374285, "position": { "x": 6, @@ -9041,7 +9041,7 @@ { "lineGroupId": 166, "indexInLine": 4, - "noteOrder": 3546.0, + "noteOrder": 3518.0, "time": 0.6358070294374285, "position": { "x": 6, @@ -9064,7 +9064,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 4, @@ -9087,7 +9087,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 4, @@ -9110,7 +9110,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6465834197668765, "position": { "x": 6, @@ -9133,7 +9133,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 6, @@ -9156,7 +9156,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 3, @@ -9179,7 +9179,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 3, @@ -9202,7 +9202,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.6638256442939932, "position": { "x": 7, @@ -9225,7 +9225,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 7, @@ -9248,7 +9248,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6724467565575516, "position": { "x": 3, @@ -9271,7 +9271,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 3726, "time": 0.6746020346234411, "position": { "x": 3, @@ -9294,7 +9294,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 3726, "time": 0.6746020346234411, "position": { "x": 4, @@ -9317,7 +9317,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 3732.0, "time": 0.6746020346234411, "position": { "x": 4, @@ -9340,7 +9340,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6767573126893307, "position": { "x": 7, @@ -9363,7 +9363,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 3750, "time": 0.6789125907552203, "position": { "x": 7, @@ -9386,7 +9386,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 3750, "time": 0.6789125907552203, "position": { "x": 6, @@ -9409,7 +9409,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 3756.0, "time": 0.6789125907552203, "position": { "x": 6, @@ -9432,7 +9432,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 4, @@ -9455,7 +9455,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 4, @@ -9478,7 +9478,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 6, @@ -9501,7 +9501,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 6, @@ -9524,7 +9524,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6896889810846683, "position": { "x": 3, @@ -9547,7 +9547,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 3821, "time": 0.6918442591505578, "position": { "x": 3, @@ -9570,7 +9570,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 3821, "time": 0.6918442591505578, "position": { "x": 4, @@ -9593,7 +9593,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 4, @@ -9616,7 +9616,7 @@ { "lineGroupId": 182, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 5, @@ -9639,7 +9639,7 @@ { "lineGroupId": 182, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 3839.0, "time": 0.6939995372164474, "position": { "x": 5, @@ -9662,7 +9662,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 3, @@ -9685,7 +9685,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 3845, "time": 0.6961548152823369, "position": { "x": 3, @@ -9708,7 +9708,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 3845, "time": 0.6961548152823369, "position": { "x": 4, @@ -9731,7 +9731,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 4, @@ -9754,7 +9754,7 @@ { "lineGroupId": 183, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 5, @@ -9777,7 +9777,7 @@ { "lineGroupId": 183, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 3863.0, "time": 0.6983100933482267, "position": { "x": 5, @@ -9800,7 +9800,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 3, @@ -9823,7 +9823,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 3900, + "noteOrder": 3869, "time": 0.7004653714141162, "position": { "x": 3, @@ -9846,7 +9846,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 3900, + "noteOrder": 3869, "time": 0.7004653714141162, "position": { "x": 4, @@ -9869,7 +9869,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 4, @@ -9892,7 +9892,7 @@ { "lineGroupId": 184, "indexInLine": 5, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 5, @@ -9915,7 +9915,7 @@ { "lineGroupId": 184, "indexInLine": 6, - "noteOrder": 3918.0, + "noteOrder": 3887.0, "time": 0.7026206494800058, "position": { "x": 5, @@ -9938,7 +9938,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 3, @@ -9961,7 +9961,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3924, + "noteOrder": 3893, "time": 0.7047759275458954, "position": { "x": 3, @@ -9984,7 +9984,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3924, + "noteOrder": 3893, "time": 0.7047759275458954, "position": { "x": 4, @@ -10007,7 +10007,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 4, @@ -10030,7 +10030,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 5, @@ -10053,7 +10053,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 3911.0, "time": 0.7069312056117849, "position": { "x": 5, @@ -10076,7 +10076,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 3, @@ -10099,7 +10099,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 3, @@ -10122,7 +10122,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 5, @@ -10145,7 +10145,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7241734301389016, "position": { "x": 5, @@ -10168,7 +10168,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 5, @@ -10191,7 +10191,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 5, @@ -10214,7 +10214,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 5, @@ -10237,7 +10237,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 5, @@ -10260,7 +10260,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 5, @@ -10283,7 +10283,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 4, @@ -10306,7 +10306,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.743570932731908, "position": { "x": 4, @@ -10329,7 +10329,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 3, @@ -10352,7 +10352,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7478814888636871, "position": { "x": 3, @@ -10375,7 +10375,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 4, @@ -10398,7 +10398,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7521920449954662, "position": { "x": 4, @@ -10421,7 +10421,7 @@ { "lineGroupId": 194, "indexInLine": 7, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 3, @@ -10444,7 +10444,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 6, @@ -10467,7 +10467,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 4107, "time": 0.743570932731908, "position": { "x": 6, @@ -10490,7 +10490,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 6, @@ -10513,7 +10513,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 4164, + "noteOrder": 4131, "time": 0.7478814888636871, "position": { "x": 6, @@ -10536,7 +10536,7 @@ { "lineGroupId": 195, "indexInLine": 5, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 6, @@ -10559,7 +10559,7 @@ { "lineGroupId": 195, "indexInLine": 6, - "noteOrder": 4188, + "noteOrder": 4155, "time": 0.7521920449954662, "position": { "x": 6, @@ -10582,7 +10582,7 @@ { "lineGroupId": 195, "indexInLine": 7, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 6, @@ -10605,7 +10605,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7629684353249142, "position": { "x": 3, @@ -10628,7 +10628,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7651237133908038, "position": { "x": 3, @@ -10651,7 +10651,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 4260, + "noteOrder": 4226, "time": 0.7651237133908038, "position": { "x": 4, @@ -10674,7 +10674,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 4, @@ -10697,7 +10697,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 5, @@ -10720,7 +10720,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 4278.0, + "noteOrder": 4244.0, "time": 0.7672789914566934, "position": { "x": 5, @@ -10743,7 +10743,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 3, @@ -10766,7 +10766,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.769434269522583, "position": { "x": 3, @@ -10789,7 +10789,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 4284, + "noteOrder": 4250, "time": 0.769434269522583, "position": { "x": 4, @@ -10812,7 +10812,7 @@ { "lineGroupId": 199, "indexInLine": 4, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 4, @@ -10835,7 +10835,7 @@ { "lineGroupId": 199, "indexInLine": 5, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 5, @@ -10858,7 +10858,7 @@ { "lineGroupId": 199, "indexInLine": 6, - "noteOrder": 4302.0, + "noteOrder": 4268.0, "time": 0.7715895475884726, "position": { "x": 5, @@ -10881,7 +10881,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 3, @@ -10904,7 +10904,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 4308, + "noteOrder": 4274, "time": 0.7737448256543622, "position": { "x": 3, @@ -10927,7 +10927,7 @@ { "lineGroupId": 200, "indexInLine": 3, - "noteOrder": 4308, + "noteOrder": 4274, "time": 0.7737448256543622, "position": { "x": 4, @@ -10950,7 +10950,7 @@ { "lineGroupId": 200, "indexInLine": 4, - "noteOrder": 4314.0, + "noteOrder": 4280.0, "time": 0.7737448256543622, "position": { "x": 4, @@ -10973,7 +10973,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 6, @@ -10996,7 +10996,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 6, @@ -11019,7 +11019,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7845212159838101, "position": { "x": 4, @@ -11042,7 +11042,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 4, @@ -11065,7 +11065,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 7, @@ -11088,7 +11088,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 7, @@ -11111,7 +11111,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 3, @@ -11134,7 +11134,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 3, @@ -11157,7 +11157,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 6, @@ -11180,7 +11180,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 6, @@ -11203,7 +11203,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 4, @@ -11226,7 +11226,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 4, @@ -11249,7 +11249,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 7, @@ -11272,7 +11272,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.8146951089062643, "position": { "x": 6, @@ -11295,7 +11295,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8190056650380436, "position": { "x": 3, @@ -11318,7 +11318,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 4, @@ -11341,7 +11341,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8276267773016018, "position": { "x": 7, @@ -11364,7 +11364,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8297820553674914, "position": { "x": 7, @@ -11387,7 +11387,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 4620, + "noteOrder": 4583, "time": 0.8297820553674914, "position": { "x": 6, @@ -11410,7 +11410,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 6, @@ -11433,7 +11433,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 5, @@ -11456,7 +11456,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 4638.0, + "noteOrder": 4601.0, "time": 0.8319373334333812, "position": { "x": 5, @@ -11479,7 +11479,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 7, @@ -11502,7 +11502,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8340926114992707, "position": { "x": 7, @@ -11525,7 +11525,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 4644, + "noteOrder": 4607, "time": 0.8340926114992707, "position": { "x": 6, @@ -11548,7 +11548,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 6, @@ -11571,7 +11571,7 @@ { "lineGroupId": 214, "indexInLine": 5, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 5, @@ -11594,7 +11594,7 @@ { "lineGroupId": 214, "indexInLine": 6, - "noteOrder": 4662.0, + "noteOrder": 4625.0, "time": 0.8362478895651603, "position": { "x": 5, @@ -11617,7 +11617,7 @@ { "lineGroupId": 215, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 7, @@ -11640,7 +11640,7 @@ { "lineGroupId": 215, "indexInLine": 2, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8384031676310498, "position": { "x": 7, @@ -11663,7 +11663,7 @@ { "lineGroupId": 215, "indexInLine": 3, - "noteOrder": 4668, + "noteOrder": 4631, "time": 0.8384031676310498, "position": { "x": 6, @@ -11686,7 +11686,7 @@ { "lineGroupId": 215, "indexInLine": 4, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 6, @@ -11709,7 +11709,7 @@ { "lineGroupId": 215, "indexInLine": 5, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 7, @@ -11732,7 +11732,7 @@ { "lineGroupId": 215, "indexInLine": 6, - "noteOrder": 4686.0, + "noteOrder": 4649.0, "time": 0.8405584456969394, "position": { "x": 7, @@ -11755,7 +11755,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 3, @@ -11778,7 +11778,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 3, @@ -11801,7 +11801,7 @@ { "lineGroupId": 217, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 4, @@ -11824,7 +11824,7 @@ { "lineGroupId": 217, "indexInLine": 4, - "noteOrder": 4722.0, + "noteOrder": 4684.0, "time": 0.8470242798946083, "position": { "x": 4, @@ -11847,7 +11847,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8491795579604978, "position": { "x": 7, @@ -11870,7 +11870,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 7, @@ -11893,7 +11893,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 6, @@ -11916,7 +11916,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 4746.0, + "noteOrder": 4708.0, "time": 0.8513348360263874, "position": { "x": 6, @@ -11939,7 +11939,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.857800670224056, "position": { "x": 3, @@ -11962,7 +11962,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4788, + "noteOrder": 4750, "time": 0.8599559482899457, "position": { "x": 3, @@ -11985,7 +11985,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4788, + "noteOrder": 4750, "time": 0.8599559482899457, "position": { "x": 4, @@ -12008,7 +12008,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4794.0, + "noteOrder": 4756.0, "time": 0.8599559482899457, "position": { "x": 4, @@ -12031,7 +12031,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8621112263558354, "position": { "x": 7, @@ -12054,7 +12054,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 7, @@ -12077,7 +12077,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8707323386193936, "position": { "x": 3, @@ -12100,7 +12100,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 3, @@ -12123,7 +12123,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 6, @@ -12146,7 +12146,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4908, + "noteOrder": 4869, "time": 0.8815087289488416, "position": { "x": 6, @@ -12169,7 +12169,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 7, @@ -12192,7 +12192,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 4932, + "noteOrder": 4893, "time": 0.8858192850806208, "position": { "x": 7, @@ -12215,7 +12215,7 @@ { "lineGroupId": 226, "indexInLine": 5, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 6, @@ -12238,7 +12238,7 @@ { "lineGroupId": 226, "indexInLine": 6, - "noteOrder": 4956, + "noteOrder": 4916, "time": 0.8901298412123999, "position": { "x": 6, @@ -12261,7 +12261,7 @@ { "lineGroupId": 226, "indexInLine": 7, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 7, @@ -12284,7 +12284,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 4, @@ -12307,7 +12307,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 4908, + "noteOrder": 4869, "time": 0.8815087289488416, "position": { "x": 4, @@ -12330,7 +12330,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 4, @@ -12353,7 +12353,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 4932, + "noteOrder": 4893, "time": 0.8858192850806208, "position": { "x": 4, @@ -12376,7 +12376,7 @@ { "lineGroupId": 227, "indexInLine": 5, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 4, @@ -12399,7 +12399,7 @@ { "lineGroupId": 227, "indexInLine": 6, - "noteOrder": 4956, + "noteOrder": 4916, "time": 0.8901298412123999, "position": { "x": 4, @@ -12422,7 +12422,7 @@ { "lineGroupId": 227, "indexInLine": 7, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 4, @@ -12445,7 +12445,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8965956754100687, "position": { "x": 3, @@ -12468,7 +12468,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5004, + "noteOrder": 4964, "time": 0.8987509534759583, "position": { "x": 3, @@ -12491,7 +12491,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5004, + "noteOrder": 4964, "time": 0.8987509534759583, "position": { "x": 4, @@ -12514,7 +12514,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 4, @@ -12537,7 +12537,7 @@ { "lineGroupId": 228, "indexInLine": 5, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 5, @@ -12560,7 +12560,7 @@ { "lineGroupId": 228, "indexInLine": 6, - "noteOrder": 5022.0, + "noteOrder": 4982.0, "time": 0.9009062315418479, "position": { "x": 5, @@ -12583,7 +12583,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 3, @@ -12606,7 +12606,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5028, + "noteOrder": 4988, "time": 0.9030615096077375, "position": { "x": 3, @@ -12629,7 +12629,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5028, + "noteOrder": 4988, "time": 0.9030615096077375, "position": { "x": 4, @@ -12652,7 +12652,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 4, @@ -12675,7 +12675,7 @@ { "lineGroupId": 229, "indexInLine": 5, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 5, @@ -12698,7 +12698,7 @@ { "lineGroupId": 229, "indexInLine": 6, - "noteOrder": 5046.0, + "noteOrder": 5006.0, "time": 0.905216787673627, "position": { "x": 5, @@ -12721,7 +12721,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 3, @@ -12744,7 +12744,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5052, + "noteOrder": 5012, "time": 0.9073720657395167, "position": { "x": 3, @@ -12767,7 +12767,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 5052, + "noteOrder": 5012, "time": 0.9073720657395167, "position": { "x": 4, @@ -12790,7 +12790,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 4, @@ -12813,7 +12813,7 @@ { "lineGroupId": 230, "indexInLine": 5, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 3, @@ -12836,7 +12836,7 @@ { "lineGroupId": 230, "indexInLine": 6, - "noteOrder": 5070.0, + "noteOrder": 5030.0, "time": 0.9095273438054062, "position": { "x": 3, @@ -12859,7 +12859,7 @@ { "lineGroupId": 232, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 7, @@ -12882,7 +12882,7 @@ { "lineGroupId": 232, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 7, @@ -12905,7 +12905,7 @@ { "lineGroupId": 232, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 6, @@ -12928,7 +12928,7 @@ { "lineGroupId": 232, "indexInLine": 4, - "noteOrder": 5106.0, + "noteOrder": 5065.0, "time": 0.915993178003075, "position": { "x": 6, @@ -12951,7 +12951,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.9181484560689646, "position": { "x": 3, @@ -12974,7 +12974,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 3, @@ -12997,7 +12997,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 4, @@ -13020,7 +13020,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 5130.0, + "noteOrder": 5089.0, "time": 0.9203037341348541, "position": { "x": 4, @@ -13043,7 +13043,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.926769568332523, "position": { "x": 7, @@ -13066,7 +13066,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 5172, + "noteOrder": 5131, "time": 0.9289248463984126, "position": { "x": 7, @@ -13089,7 +13089,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 5172, + "noteOrder": 5131, "time": 0.9289248463984126, "position": { "x": 6, @@ -13112,7 +13112,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 5178.0, + "noteOrder": 5137.0, "time": 0.9289248463984126, "position": { "x": 6, @@ -13135,7 +13135,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9310801244643021, "position": { "x": 3, @@ -13158,7 +13158,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 3, @@ -13181,7 +13181,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9397012367278605, "position": { "x": 7, @@ -13204,7 +13204,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 7, @@ -13227,7 +13227,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.9612540173867563, "position": { "x": 3, @@ -13250,7 +13250,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 3, @@ -13273,7 +13273,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 5352, + "noteOrder": 5309, "time": 0.9612540173867563, "position": { "x": 7, @@ -13296,7 +13296,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 7, @@ -13331,7 +13331,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "5.45", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b.json index 9ad4b914..10ae3f90 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af difficulty_1b", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 143, "time": 0.025863336790675057, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.043105561317791766, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 286, "time": 0.051726673581350115, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 333, "time": 0.060347785844908464, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 476, "time": 0.08621112263558353, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 524, "time": 0.09483223489914189, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 690, "time": 0.12500612782159612, "position": { "x": 5, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13793779621693364, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.14224835234871283, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 952, "time": 0.17242224527116706, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 976, "time": 0.17673280140294623, "position": { "x": 3, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21552780658895884, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.219838362720738, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.28449670469742566, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2888072608292048, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3276022660152174, "position": { "x": 5, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.3405339344105549, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.3620867150694508, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.39657116412368426, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.4095028325190218, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.4310556131779177, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.439676725441476, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4698506183639303, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.48709284289104693, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.5043350674181636, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 3, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.538819516472397, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5776145216584097, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6250306391079806, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6465834197668765, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6724467565575516, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6767573126893307, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7155523178753433, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7629684353249142, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7845212159838101, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.8146951089062643, "position": { "x": 5, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8190056650380436, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8534901140922769, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.857800670224056, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 7, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9224590122007438, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.926769568332523, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 7, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 3, @@ -2447,7 +2447,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.017242224527116705, "position": { "x": 7, @@ -2470,7 +2470,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 7, @@ -2493,7 +2493,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 190, "time": 0.03448444905423341, "position": { "x": 3, @@ -2516,7 +2516,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 3, @@ -2539,7 +2539,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 381, "time": 0.06896889810846682, "position": { "x": 6, @@ -2562,7 +2562,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 6, @@ -2585,7 +2585,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 408, + "noteOrder": 405, "time": 0.073279454240246, "position": { "x": 4, @@ -2608,7 +2608,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 4, @@ -2631,7 +2631,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 636, + "noteOrder": 631, "time": 0.11422973749214818, "position": { "x": 7, @@ -2654,7 +2654,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 667, "time": 0.12069557168981693, "position": { "x": 7, @@ -2677,7 +2677,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 660, + "noteOrder": 655, "time": 0.11854029362392735, "position": { "x": 3, @@ -2700,7 +2700,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 3, @@ -2723,7 +2723,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 7, @@ -2838,7 +2838,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 7, @@ -2861,7 +2861,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 3, @@ -2884,7 +2884,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 3, @@ -2907,7 +2907,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18966446979828377, "position": { "x": 7, @@ -2930,7 +2930,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 7, @@ -2953,7 +2953,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 6, @@ -2976,7 +2976,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 6, @@ -2999,7 +2999,7 @@ { "lineGroupId": 43, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 5, @@ -3022,7 +3022,7 @@ { "lineGroupId": 43, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1101.0, "time": 0.19828558206184213, "position": { "x": 5, @@ -3045,7 +3045,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 7, @@ -3068,7 +3068,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 7, @@ -3091,7 +3091,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 6, @@ -3114,7 +3114,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 44, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 5, @@ -3160,7 +3160,7 @@ { "lineGroupId": 44, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 1149.0, "time": 0.20690669432540046, "position": { "x": 5, @@ -3183,7 +3183,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 7, @@ -3206,7 +3206,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 7, @@ -3229,7 +3229,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 6, @@ -3252,7 +3252,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1170.0, + "noteOrder": 1161.0, "time": 0.20906197239129007, "position": { "x": 6, @@ -3275,7 +3275,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.21121725045717962, "position": { "x": 7, @@ -3298,7 +3298,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 7, @@ -3321,7 +3321,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 6, @@ -3344,7 +3344,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1194.0, + "noteOrder": 1185.0, "time": 0.21337252852306923, "position": { "x": 6, @@ -3367,7 +3367,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.22414891885251717, "position": { "x": 7, @@ -3390,7 +3390,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 7, @@ -3413,7 +3413,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.23277003111607553, "position": { "x": 3, @@ -3436,7 +3436,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 3, @@ -3459,7 +3459,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 6, @@ -3482,7 +3482,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 6, @@ -3505,7 +3505,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 4, @@ -3528,7 +3528,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 4, @@ -3551,7 +3551,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1429, "time": 0.25863336790675057, "position": { "x": 3, @@ -3574,7 +3574,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 3, @@ -3597,7 +3597,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 4, @@ -3620,7 +3620,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 4, @@ -3643,7 +3643,7 @@ { "lineGroupId": 57, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 5, @@ -3666,7 +3666,7 @@ { "lineGroupId": 57, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 1482.0, "time": 0.26725448017030895, "position": { "x": 5, @@ -3689,7 +3689,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 3, @@ -3712,7 +3712,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 3, @@ -3735,7 +3735,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 4, @@ -3758,7 +3758,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 4, @@ -3781,7 +3781,7 @@ { "lineGroupId": 58, "indexInLine": 5, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 5, @@ -3804,99 +3804,99 @@ { "lineGroupId": 58, "indexInLine": 6, + "noteOrder": 1530.0, + "time": 0.2758755924338673, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "noteOrder": 1524, + "time": 0.2758755924338673, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "noteOrder": 1536, + "time": 0.2780308704997569, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "noteOrder": 1536, + "time": 0.2780308704997569, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, "noteOrder": 1542.0, - "time": 0.2758755924338673, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 1, - "noteOrder": 1536, - "time": 0.2758755924338673, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 2, - "noteOrder": 1548, - "time": 0.2780308704997569, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 3, - "noteOrder": 1548, - "time": 0.2780308704997569, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 4, - "noteOrder": 1554.0, "time": 0.2780308704997569, "position": { "x": 4, @@ -3919,7 +3919,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2801861485656465, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 3, @@ -3965,7 +3965,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 4, @@ -3988,7 +3988,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.28234142663153605, "position": { "x": 4, @@ -4011,7 +4011,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.293117816960984, "position": { "x": 3, @@ -4034,7 +4034,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 3, @@ -4057,7 +4057,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.3017389292245423, "position": { "x": 7, @@ -4080,7 +4080,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 7, @@ -4103,7 +4103,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 4, @@ -4126,7 +4126,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 4, @@ -4149,7 +4149,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 6, @@ -4172,7 +4172,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 6, @@ -4195,7 +4195,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3448444905423341, "position": { "x": 7, @@ -4218,7 +4218,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 7, @@ -4241,7 +4241,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 6, @@ -4264,7 +4264,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.34915504667411335, "position": { "x": 6, @@ -4287,7 +4287,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 3, @@ -4310,7 +4310,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 3, @@ -4333,7 +4333,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 4, @@ -4356,7 +4356,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1998.0, + "noteOrder": 1982.0, "time": 0.3577761589376717, "position": { "x": 4, @@ -4379,7 +4379,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 4, @@ -4402,7 +4402,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 5, @@ -4425,7 +4425,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 6, @@ -4448,7 +4448,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 7, @@ -4471,7 +4471,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4138133886508009, "position": { "x": 3, @@ -4494,7 +4494,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 3, @@ -4517,7 +4517,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 4, @@ -4540,7 +4540,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2334.0, + "noteOrder": 2315.0, "time": 0.41812394478258014, "position": { "x": 4, @@ -4563,7 +4563,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 7, @@ -4586,7 +4586,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 7, @@ -4609,7 +4609,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 6, @@ -4632,7 +4632,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2382.0, + "noteOrder": 2363.0, "time": 0.42674505704613847, "position": { "x": 6, @@ -4655,7 +4655,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 5, @@ -4701,7 +4701,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 4, @@ -4724,7 +4724,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 3, @@ -4747,7 +4747,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.46554006223215105, "position": { "x": 3, @@ -4770,7 +4770,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 3, @@ -4793,7 +4793,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 7, @@ -4816,7 +4816,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 7, @@ -4839,7 +4839,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 4, @@ -4862,7 +4862,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 4, @@ -4885,7 +4885,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 6, @@ -4908,7 +4908,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 6, @@ -4931,7 +4931,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5517511848677346, "position": { "x": 3, @@ -4954,7 +4954,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 3, @@ -4977,7 +4977,7 @@ { "lineGroupId": 119, "indexInLine": 3, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 119, "indexInLine": 4, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 4, @@ -5023,7 +5023,7 @@ { "lineGroupId": 119, "indexInLine": 5, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 5, @@ -5046,7 +5046,7 @@ { "lineGroupId": 119, "indexInLine": 6, - "noteOrder": 3126.0, + "noteOrder": 3101.0, "time": 0.560372297131293, "position": { "x": 5, @@ -5069,7 +5069,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 3, @@ -5092,7 +5092,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 3, @@ -5115,7 +5115,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 4, @@ -5138,7 +5138,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 4, @@ -5161,7 +5161,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 5, @@ -5184,7 +5184,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 3174.0, + "noteOrder": 3149.0, "time": 0.5689934093948513, "position": { "x": 5, @@ -5207,7 +5207,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.586235633921968, "position": { "x": 7, @@ -5230,7 +5230,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 7, @@ -5253,7 +5253,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 6, @@ -5276,7 +5276,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3294.0, + "noteOrder": 3268.0, "time": 0.5905461900537471, "position": { "x": 6, @@ -5299,7 +5299,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 3, @@ -5322,7 +5322,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 4, @@ -5368,7 +5368,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3342.0, + "noteOrder": 3315.0, "time": 0.5991673023173055, "position": { "x": 4, @@ -5391,7 +5391,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 4, @@ -5414,7 +5414,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 4, @@ -5437,7 +5437,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 6, @@ -5460,7 +5460,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 6, @@ -5483,7 +5483,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6207200829762014, "position": { "x": 3, @@ -5506,7 +5506,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 3, @@ -5529,7 +5529,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 7, @@ -5552,7 +5552,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 7, @@ -5575,7 +5575,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 3, @@ -5598,7 +5598,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 3, @@ -5621,7 +5621,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.6638256442939932, "position": { "x": 7, @@ -5644,7 +5644,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 7, @@ -5667,7 +5667,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6896889810846683, "position": { "x": 7, @@ -5690,7 +5690,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 7, @@ -5713,7 +5713,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 6, @@ -5736,7 +5736,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 6, @@ -5759,7 +5759,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 5, @@ -5782,7 +5782,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 3863.0, "time": 0.6983100933482267, "position": { "x": 5, @@ -5805,7 +5805,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 7, @@ -5828,7 +5828,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 7, @@ -5851,7 +5851,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 6, @@ -5874,7 +5874,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 6, @@ -5897,7 +5897,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 5, @@ -5920,7 +5920,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 3911.0, "time": 0.7069312056117849, "position": { "x": 5, @@ -5943,7 +5943,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7241734301389016, "position": { "x": 3, @@ -5966,7 +5966,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 3, @@ -5989,7 +5989,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 4, @@ -6012,7 +6012,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 4062.0, + "noteOrder": 4030.0, "time": 0.7284839862706809, "position": { "x": 4, @@ -6035,7 +6035,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 7, @@ -6058,7 +6058,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 7, @@ -6081,7 +6081,7 @@ { "lineGroupId": 156, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 6, @@ -6104,7 +6104,7 @@ { "lineGroupId": 156, "indexInLine": 4, - "noteOrder": 4110.0, + "noteOrder": 4077.0, "time": 0.7371050985342391, "position": { "x": 6, @@ -6127,7 +6127,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 6, @@ -6150,7 +6150,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 6, @@ -6173,7 +6173,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 4, @@ -6196,7 +6196,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 4, @@ -6219,7 +6219,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7586578791931351, "position": { "x": 7, @@ -6242,7 +6242,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 7, @@ -6265,7 +6265,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 3, @@ -6288,7 +6288,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 3, @@ -6311,7 +6311,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 7, @@ -6334,7 +6334,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 7, @@ -6357,7 +6357,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 3, @@ -6380,7 +6380,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 3, @@ -6403,7 +6403,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8276267773016018, "position": { "x": 3, @@ -6426,7 +6426,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 3, @@ -6449,7 +6449,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 4, @@ -6472,7 +6472,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 4, @@ -6495,7 +6495,7 @@ { "lineGroupId": 179, "indexInLine": 5, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 5, @@ -6518,7 +6518,7 @@ { "lineGroupId": 179, "indexInLine": 6, - "noteOrder": 4662.0, + "noteOrder": 4625.0, "time": 0.8362478895651603, "position": { "x": 5, @@ -6541,7 +6541,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 3, @@ -6564,7 +6564,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 3, @@ -6587,7 +6587,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 4, @@ -6610,7 +6610,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 4, @@ -6633,7 +6633,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 5, @@ -6656,7 +6656,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 4710.0, + "noteOrder": 4672.0, "time": 0.8448690018287185, "position": { "x": 5, @@ -6679,7 +6679,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 3, @@ -6702,7 +6702,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 3, @@ -6725,7 +6725,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 4, @@ -6748,7 +6748,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 4722.0, + "noteOrder": 4684.0, "time": 0.8470242798946083, "position": { "x": 4, @@ -6771,7 +6771,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8491795579604978, "position": { "x": 3, @@ -6794,7 +6794,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 3, @@ -6817,7 +6817,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 4, @@ -6840,7 +6840,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 4746.0, + "noteOrder": 4708.0, "time": 0.8513348360263874, "position": { "x": 4, @@ -6863,7 +6863,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8621112263558354, "position": { "x": 3, @@ -6886,7 +6886,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 3, @@ -6909,7 +6909,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8707323386193936, "position": { "x": 7, @@ -6932,7 +6932,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 7, @@ -6955,7 +6955,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 4, @@ -6978,7 +6978,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 4, @@ -7001,7 +7001,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 6, @@ -7024,7 +7024,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 6, @@ -7047,7 +7047,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8965956754100687, "position": { "x": 7, @@ -7070,7 +7070,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 7, @@ -7093,7 +7093,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 6, @@ -7116,7 +7116,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 6, @@ -7139,7 +7139,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 5, @@ -7162,7 +7162,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 5046.0, + "noteOrder": 5006.0, "time": 0.905216787673627, "position": { "x": 5, @@ -7185,7 +7185,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 7, @@ -7208,7 +7208,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 7, @@ -7231,7 +7231,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 6, @@ -7254,7 +7254,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 6, @@ -7277,7 +7277,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 5, @@ -7300,7 +7300,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 5094.0, + "noteOrder": 5053.0, "time": 0.9138378999371854, "position": { "x": 5, @@ -7323,7 +7323,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 7, @@ -7346,7 +7346,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 7, @@ -7369,7 +7369,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 6, @@ -7392,7 +7392,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 5106.0, + "noteOrder": 5065.0, "time": 0.915993178003075, "position": { "x": 6, @@ -7415,7 +7415,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.9181484560689646, "position": { "x": 7, @@ -7438,7 +7438,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 7, @@ -7461,7 +7461,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 6, @@ -7484,7 +7484,7 @@ { "lineGroupId": 196, "indexInLine": 4, - "noteOrder": 5130.0, + "noteOrder": 5089.0, "time": 0.9203037341348541, "position": { "x": 6, @@ -7507,7 +7507,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9310801244643021, "position": { "x": 7, @@ -7530,7 +7530,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 7, @@ -7553,7 +7553,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9397012367278605, "position": { "x": 3, @@ -7576,7 +7576,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 3, @@ -7599,7 +7599,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 6, @@ -7622,7 +7622,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 6, @@ -7645,7 +7645,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 4, @@ -7668,7 +7668,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 4, @@ -7691,7 +7691,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 433.5, + "noteOrder": 430.5, "time": 0.07759001037202518, "position": { "x": 5, @@ -7719,7 +7719,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 457.5, + "noteOrder": 453.5, "time": 0.08190056650380435, "position": { "x": 5, @@ -7747,7 +7747,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 577.5, + "noteOrder": 572.5, "time": 0.10345334716270023, "position": { "x": 5, @@ -7775,7 +7775,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 613.5, + "noteOrder": 608.5, "time": 0.109919181360369, "position": { "x": 5, @@ -7803,7 +7803,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 889.5, + "noteOrder": 882.5, "time": 0.15949057687582954, "position": { "x": 5, @@ -7831,7 +7831,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 913.5, + "noteOrder": 906.5, "time": 0.1638011330076087, "position": { "x": 5, @@ -7859,7 +7859,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 937.5, + "noteOrder": 930.5, "time": 0.1681116891393879, "position": { "x": 5, @@ -7887,7 +7887,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1801.5, + "noteOrder": 1787.5, "time": 0.32329170988343825, "position": { "x": 5, @@ -7915,7 +7915,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3433.5, + "noteOrder": 3406.5, "time": 0.6164095268444222, "position": { "x": 5, @@ -7943,7 +7943,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4201.5, + "noteOrder": 4167.5, "time": 0.7543473230613559, "position": { "x": 5, @@ -7971,7 +7971,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5281.5, + "noteOrder": 5239.5, "time": 0.9483223489914188, "position": { "x": 5, @@ -7999,7 +7999,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5305.5, + "noteOrder": 5263.5, "time": 0.9526329051231981, "position": { "x": 5, @@ -8027,7 +8027,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5377.5, + "noteOrder": 5334.5, "time": 0.9655645735185354, "position": { "x": 5, @@ -8068,7 +8068,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "3.23", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b_blockless.json index 09a552c5..e4921f9e 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 120, + "noteOrder": 119, "time": 0.021552780658895883, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 143, "time": 0.025863336790675057, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 214, "time": 0.03879500518601259, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 238, "time": 0.043105561317791766, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 286, "time": 0.051726673581350115, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 310, "time": 0.05603722971312929, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 333, "time": 0.060347785844908464, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 357, "time": 0.06465834197668764, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 476, "time": 0.08621112263558353, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 504, + "noteOrder": 500, "time": 0.0905216787673627, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 524, "time": 0.09483223489914189, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 552, + "noteOrder": 548, "time": 0.09914279103092107, "position": { "x": 5, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 690, "time": 0.12500612782159612, "position": { "x": 5, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 714, "time": 0.12931668395337528, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 762, "time": 0.13793779621693364, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 786, "time": 0.14224835234871283, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 952, "time": 0.17242224527116706, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 976, "time": 0.17673280140294623, "position": { "x": 3, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 1000, "time": 0.1810433575347254, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1024, "time": 0.1853539136665046, "position": { "x": 3, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 1190, "time": 0.21552780658895884, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 1214, "time": 0.219838362720738, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 1333, "time": 0.24139114337963385, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 1357, "time": 0.24570169951141307, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 1571, "time": 0.28449670469742566, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1608, + "noteOrder": 1595, "time": 0.2888072608292048, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 1714, "time": 0.3103600414881007, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 1738, "time": 0.31467059761987987, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 1809, "time": 0.3276022660152174, "position": { "x": 5, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 1833, "time": 0.3319128221469966, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 1857, "time": 0.3362233782787758, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1896, + "noteOrder": 1881, "time": 0.3405339344105549, "position": { "x": 5, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 2000, "time": 0.3620867150694508, "position": { "x": 5, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 2024, "time": 0.36639727120123, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2048, "time": 0.3707078273330092, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 2071, "time": 0.37501838346478833, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 2167, "time": 0.39226060799190504, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 2190, "time": 0.39657116412368426, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2232, + "noteOrder": 2214, "time": 0.4008817202554634, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 2238, "time": 0.4051922763872426, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 2262, "time": 0.4095028325190218, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 2381, "time": 0.4310556131779177, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 2405, "time": 0.4353661693096968, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 2428, "time": 0.439676725441476, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 2452, "time": 0.4439872815732552, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 2547, "time": 0.4612295061003719, "position": { "x": 6, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 2595, "time": 0.4698506183639303, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 2690, "time": 0.48709284289104693, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2784, + "noteOrder": 2762, "time": 0.5000245112863845, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 2786, "time": 0.5043350674181636, "position": { "x": 7, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 2809, "time": 0.5086456235499428, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 2833, "time": 0.512956179681722, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2976, + "noteOrder": 2952, "time": 0.5345089603406179, "position": { "x": 3, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 2976, "time": 0.538819516472397, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 3000, "time": 0.5431300726041762, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 3024, "time": 0.5474406287359554, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 3167, "time": 0.5733039655266304, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 3190, "time": 0.5776145216584097, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 3214, "time": 0.5819250777901889, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 3333, "time": 0.6034778584490846, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 3357, "time": 0.607788414580864, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 3452, "time": 0.6250306391079806, "position": { "x": 5, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 3476, "time": 0.6293411952397597, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 3500, "time": 0.633651751371539, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 3547, "time": 0.6422728636350973, "position": { "x": 5, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 3571, "time": 0.6465834197668765, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3624, + "noteOrder": 3595, "time": 0.6508939758986556, "position": { "x": 5, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3744, + "noteOrder": 3714, "time": 0.6724467565575516, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 3738, "time": 0.6767573126893307, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3792, + "noteOrder": 3762, "time": 0.6810678688211098, "position": { "x": 7, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 3786, "time": 0.6853784249528891, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 3928, "time": 0.7112417617435642, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 3952, "time": 0.7155523178753433, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 3976, "time": 0.7198628740071225, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4128, + "noteOrder": 4095, "time": 0.7414156546660184, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4119, "time": 0.7457262107977976, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 4214, "time": 0.7629684353249142, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 4238, "time": 0.7672789914566934, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4296, + "noteOrder": 4262, "time": 0.7715895475884726, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 4309, "time": 0.780210659852031, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 4333, "time": 0.7845212159838101, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 4357, "time": 0.7888317721155893, "position": { "x": 5, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4512, + "noteOrder": 4476, "time": 0.8103845527744852, "position": { "x": 7, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4500, "time": 0.8146951089062643, "position": { "x": 5, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4560, + "noteOrder": 4524, "time": 0.8190056650380436, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 6, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4547, "time": 0.8233162211698227, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4752, + "noteOrder": 4714, "time": 0.8534901140922769, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4776, + "noteOrder": 4738, "time": 0.857800670224056, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 6, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4896, + "noteOrder": 4857, "time": 0.879353450882952, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 4881, "time": 0.8836640070147311, "position": { "x": 7, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 5095, "time": 0.9224590122007438, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 5119, "time": 0.926769568332523, "position": { "x": 3, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 5238, "time": 0.9483223489914188, "position": { "x": 7, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 5262, "time": 0.9526329051231981, "position": { "x": 3, @@ -2447,7 +2447,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 95, "time": 0.017242224527116705, "position": { "x": 7, @@ -2470,7 +2470,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 167, "time": 0.030173892922454232, "position": { "x": 7, @@ -2493,7 +2493,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 190, "time": 0.03448444905423341, "position": { "x": 3, @@ -2516,7 +2516,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 264, + "noteOrder": 262, "time": 0.047416117449570944, "position": { "x": 3, @@ -2539,7 +2539,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 381, "time": 0.06896889810846682, "position": { "x": 6, @@ -2562,7 +2562,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 6, @@ -2585,7 +2585,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 408, + "noteOrder": 405, "time": 0.073279454240246, "position": { "x": 4, @@ -2608,7 +2608,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 429, "time": 0.07759001037202518, "position": { "x": 4, @@ -2631,7 +2631,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 636, + "noteOrder": 631, "time": 0.11422973749214818, "position": { "x": 7, @@ -2654,7 +2654,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 672, + "noteOrder": 667, "time": 0.12069557168981693, "position": { "x": 7, @@ -2677,7 +2677,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 660, + "noteOrder": 655, "time": 0.11854029362392735, "position": { "x": 3, @@ -2700,7 +2700,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 744, + "noteOrder": 738, "time": 0.13362724008515448, "position": { "x": 3, @@ -2723,7 +2723,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 809, "time": 0.146558908480492, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 833, "time": 0.15086946461227116, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 7, @@ -2838,7 +2838,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 7, @@ -2861,7 +2861,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 864, + "noteOrder": 857, "time": 0.15518002074405035, "position": { "x": 3, @@ -2884,7 +2884,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 929, "time": 0.1681116891393879, "position": { "x": 3, @@ -2907,7 +2907,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 1048, "time": 0.18966446979828377, "position": { "x": 7, @@ -2930,7 +2930,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 7, @@ -2953,7 +2953,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1080, + "noteOrder": 1071, "time": 0.19397502593006294, "position": { "x": 6, @@ -2976,7 +2976,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 6, @@ -2999,7 +2999,7 @@ { "lineGroupId": 43, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 5, @@ -3022,7 +3022,7 @@ { "lineGroupId": 43, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 1101.0, "time": 0.19828558206184213, "position": { "x": 5, @@ -3045,7 +3045,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 1095, "time": 0.19828558206184213, "position": { "x": 7, @@ -3068,7 +3068,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 7, @@ -3091,7 +3091,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1128, + "noteOrder": 1119, "time": 0.2025961381936213, "position": { "x": 6, @@ -3114,7 +3114,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 44, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 5, @@ -3160,7 +3160,7 @@ { "lineGroupId": 44, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 1149.0, "time": 0.20690669432540046, "position": { "x": 5, @@ -3183,7 +3183,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 1143, "time": 0.20690669432540046, "position": { "x": 7, @@ -3206,7 +3206,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 7, @@ -3229,7 +3229,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1164, + "noteOrder": 1155, "time": 0.20906197239129007, "position": { "x": 6, @@ -3252,7 +3252,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1170.0, + "noteOrder": 1161.0, "time": 0.20906197239129007, "position": { "x": 6, @@ -3275,7 +3275,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1176, + "noteOrder": 1167, "time": 0.21121725045717962, "position": { "x": 7, @@ -3298,7 +3298,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 7, @@ -3321,7 +3321,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1188, + "noteOrder": 1179, "time": 0.21337252852306923, "position": { "x": 6, @@ -3344,7 +3344,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1194.0, + "noteOrder": 1185.0, "time": 0.21337252852306923, "position": { "x": 6, @@ -3367,7 +3367,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 1238, "time": 0.22414891885251717, "position": { "x": 7, @@ -3390,7 +3390,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 1262, "time": 0.22845947498429636, "position": { "x": 7, @@ -3413,7 +3413,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 1286, "time": 0.23277003111607553, "position": { "x": 3, @@ -3436,7 +3436,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 1309, "time": 0.2370805872478547, "position": { "x": 3, @@ -3459,7 +3459,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 6, @@ -3482,7 +3482,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 6, @@ -3505,7 +3505,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 1381, "time": 0.25001225564319224, "position": { "x": 4, @@ -3528,7 +3528,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 1405, "time": 0.2543228117749714, "position": { "x": 4, @@ -3551,7 +3551,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 1429, "time": 0.25863336790675057, "position": { "x": 3, @@ -3574,7 +3574,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 3, @@ -3597,7 +3597,7 @@ { "lineGroupId": 57, "indexInLine": 3, - "noteOrder": 1464, + "noteOrder": 1452, "time": 0.2629439240385298, "position": { "x": 4, @@ -3620,7 +3620,7 @@ { "lineGroupId": 57, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 4, @@ -3643,7 +3643,7 @@ { "lineGroupId": 57, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 5, @@ -3666,7 +3666,7 @@ { "lineGroupId": 57, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 1482.0, "time": 0.26725448017030895, "position": { "x": 5, @@ -3689,7 +3689,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 1476, "time": 0.26725448017030895, "position": { "x": 3, @@ -3712,7 +3712,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 3, @@ -3735,7 +3735,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1512, + "noteOrder": 1500, "time": 0.2715650363020881, "position": { "x": 4, @@ -3758,7 +3758,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 4, @@ -3781,7 +3781,7 @@ { "lineGroupId": 58, "indexInLine": 5, - "noteOrder": 1536, + "noteOrder": 1524, "time": 0.2758755924338673, "position": { "x": 5, @@ -3804,99 +3804,99 @@ { "lineGroupId": 58, "indexInLine": 6, + "noteOrder": 1530.0, + "time": 0.2758755924338673, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 13, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 1, + "noteOrder": 1524, + "time": 0.2758755924338673, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 2, + "noteOrder": 1536, + "time": 0.2780308704997569, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 3, + "noteOrder": 1536, + "time": 0.2780308704997569, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 59, + "indexInLine": 4, "noteOrder": 1542.0, - "time": 0.2758755924338673, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 13, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 1, - "noteOrder": 1536, - "time": 0.2758755924338673, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 2, - "noteOrder": 1548, - "time": 0.2780308704997569, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 3, - "noteOrder": 1548, - "time": 0.2780308704997569, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 59, - "indexInLine": 4, - "noteOrder": 1554.0, "time": 0.2780308704997569, "position": { "x": 4, @@ -3919,7 +3919,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1560, + "noteOrder": 1548, "time": 0.2801861485656465, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 3, @@ -3965,7 +3965,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1572, + "noteOrder": 1559, "time": 0.28234142663153605, "position": { "x": 4, @@ -3988,7 +3988,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1578.0, + "noteOrder": 1565.0, "time": 0.28234142663153605, "position": { "x": 4, @@ -4011,7 +4011,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 1619, "time": 0.293117816960984, "position": { "x": 3, @@ -4034,7 +4034,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1656, + "noteOrder": 1643, "time": 0.2974283730927632, "position": { "x": 3, @@ -4057,7 +4057,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1680, + "noteOrder": 1667, "time": 0.3017389292245423, "position": { "x": 7, @@ -4080,7 +4080,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1704, + "noteOrder": 1690, "time": 0.30604948535632154, "position": { "x": 7, @@ -4103,7 +4103,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 4, @@ -4126,7 +4126,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 4, @@ -4149,7 +4149,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 1762, "time": 0.3189811537516591, "position": { "x": 6, @@ -4172,7 +4172,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 1786, "time": 0.32329170988343825, "position": { "x": 6, @@ -4195,7 +4195,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 1905, "time": 0.3448444905423341, "position": { "x": 7, @@ -4218,7 +4218,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 7, @@ -4241,7 +4241,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 1944, + "noteOrder": 1928, "time": 0.34915504667411335, "position": { "x": 6, @@ -4264,7 +4264,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 1950.0, + "noteOrder": 1934.0, "time": 0.34915504667411335, "position": { "x": 6, @@ -4287,7 +4287,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 1952, "time": 0.35346560280589245, "position": { "x": 3, @@ -4310,7 +4310,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 3, @@ -4333,7 +4333,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1992, + "noteOrder": 1976, "time": 0.3577761589376717, "position": { "x": 4, @@ -4356,7 +4356,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1998.0, + "noteOrder": 1982.0, "time": 0.3577761589376717, "position": { "x": 4, @@ -4379,7 +4379,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 4, @@ -4402,7 +4402,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 5, @@ -4425,7 +4425,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 2095, "time": 0.37932893959656755, "position": { "x": 6, @@ -4448,7 +4448,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 2143, "time": 0.3879500518601259, "position": { "x": 7, @@ -4471,7 +4471,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 2286, "time": 0.4138133886508009, "position": { "x": 3, @@ -4494,7 +4494,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 3, @@ -4517,7 +4517,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2328, + "noteOrder": 2309, "time": 0.41812394478258014, "position": { "x": 4, @@ -4540,7 +4540,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2334.0, + "noteOrder": 2315.0, "time": 0.41812394478258014, "position": { "x": 4, @@ -4563,7 +4563,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 2333, "time": 0.42243450091435925, "position": { "x": 7, @@ -4586,7 +4586,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 7, @@ -4609,7 +4609,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2376, + "noteOrder": 2357, "time": 0.42674505704613847, "position": { "x": 6, @@ -4632,7 +4632,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2382.0, + "noteOrder": 2363.0, "time": 0.42674505704613847, "position": { "x": 6, @@ -4655,7 +4655,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 5, @@ -4701,7 +4701,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 2476, "time": 0.44829783770503434, "position": { "x": 4, @@ -4724,7 +4724,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 2544, + "noteOrder": 2524, "time": 0.4569189499685927, "position": { "x": 3, @@ -4747,7 +4747,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 2571, "time": 0.46554006223215105, "position": { "x": 3, @@ -4770,7 +4770,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2664, + "noteOrder": 2643, "time": 0.4784717306274886, "position": { "x": 3, @@ -4793,7 +4793,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 2667, "time": 0.4827822867592677, "position": { "x": 7, @@ -4816,7 +4816,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2760, + "noteOrder": 2738, "time": 0.49571395515460526, "position": { "x": 7, @@ -4839,7 +4839,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 4, @@ -4862,7 +4862,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 4, @@ -4885,7 +4885,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 2857, "time": 0.5172667358135011, "position": { "x": 6, @@ -4908,7 +4908,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 2928, "time": 0.5301984042088387, "position": { "x": 6, @@ -4931,7 +4931,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 3047, "time": 0.5517511848677346, "position": { "x": 3, @@ -4954,7 +4954,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 3, @@ -4977,7 +4977,7 @@ { "lineGroupId": 119, "indexInLine": 3, - "noteOrder": 3096, + "noteOrder": 3071, "time": 0.5560617409995138, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 119, "indexInLine": 4, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 4, @@ -5023,7 +5023,7 @@ { "lineGroupId": 119, "indexInLine": 5, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 5, @@ -5046,7 +5046,7 @@ { "lineGroupId": 119, "indexInLine": 6, - "noteOrder": 3126.0, + "noteOrder": 3101.0, "time": 0.560372297131293, "position": { "x": 5, @@ -5069,7 +5069,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 3095, "time": 0.560372297131293, "position": { "x": 3, @@ -5092,7 +5092,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 3, @@ -5115,7 +5115,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 3144, + "noteOrder": 3119, "time": 0.5646828532630721, "position": { "x": 4, @@ -5138,7 +5138,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 4, @@ -5161,7 +5161,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 3168, + "noteOrder": 3143, "time": 0.5689934093948513, "position": { "x": 5, @@ -5184,7 +5184,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 3174.0, + "noteOrder": 3149.0, "time": 0.5689934093948513, "position": { "x": 5, @@ -5207,7 +5207,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 3238, "time": 0.586235633921968, "position": { "x": 7, @@ -5230,7 +5230,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 7, @@ -5253,7 +5253,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3288, + "noteOrder": 3262, "time": 0.5905461900537471, "position": { "x": 6, @@ -5276,7 +5276,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3294.0, + "noteOrder": 3268.0, "time": 0.5905461900537471, "position": { "x": 6, @@ -5299,7 +5299,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 3286, "time": 0.5948567461855264, "position": { "x": 3, @@ -5322,7 +5322,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3336, + "noteOrder": 3309, "time": 0.5991673023173055, "position": { "x": 4, @@ -5368,7 +5368,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3342.0, + "noteOrder": 3315.0, "time": 0.5991673023173055, "position": { "x": 4, @@ -5391,7 +5391,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 4, @@ -5414,7 +5414,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 4, @@ -5437,7 +5437,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3408, + "noteOrder": 3381, "time": 0.6120989707126431, "position": { "x": 6, @@ -5460,7 +5460,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3432, + "noteOrder": 3405, "time": 0.6164095268444222, "position": { "x": 6, @@ -5483,7 +5483,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 3428, "time": 0.6207200829762014, "position": { "x": 3, @@ -5506,7 +5506,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 3, @@ -5529,7 +5529,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 3524, "time": 0.6379623075033182, "position": { "x": 7, @@ -5552,7 +5552,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 7, @@ -5575,7 +5575,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 3619, "time": 0.6552045320304348, "position": { "x": 3, @@ -5598,7 +5598,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 3643, "time": 0.659515088162214, "position": { "x": 3, @@ -5621,7 +5621,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 3666, "time": 0.6638256442939932, "position": { "x": 7, @@ -5644,7 +5644,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 3690, "time": 0.6681362004257724, "position": { "x": 7, @@ -5667,7 +5667,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 3809, "time": 0.6896889810846683, "position": { "x": 7, @@ -5690,7 +5690,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 7, @@ -5713,7 +5713,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 3864, + "noteOrder": 3833, "time": 0.6939995372164474, "position": { "x": 6, @@ -5736,7 +5736,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 6, @@ -5759,7 +5759,7 @@ { "lineGroupId": 149, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 5, @@ -5782,7 +5782,7 @@ { "lineGroupId": 149, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 3863.0, "time": 0.6983100933482267, "position": { "x": 5, @@ -5805,7 +5805,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 3857, "time": 0.6983100933482267, "position": { "x": 7, @@ -5828,7 +5828,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 7, @@ -5851,7 +5851,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 3912, + "noteOrder": 3881, "time": 0.7026206494800058, "position": { "x": 6, @@ -5874,7 +5874,7 @@ { "lineGroupId": 150, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 6, @@ -5897,7 +5897,7 @@ { "lineGroupId": 150, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 3905, "time": 0.7069312056117849, "position": { "x": 5, @@ -5920,7 +5920,7 @@ { "lineGroupId": 150, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 3911.0, "time": 0.7069312056117849, "position": { "x": 5, @@ -5943,7 +5943,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 4000, "time": 0.7241734301389016, "position": { "x": 3, @@ -5966,7 +5966,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 3, @@ -5989,7 +5989,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 4056, + "noteOrder": 4024, "time": 0.7284839862706809, "position": { "x": 4, @@ -6012,7 +6012,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 4062.0, + "noteOrder": 4030.0, "time": 0.7284839862706809, "position": { "x": 4, @@ -6035,7 +6035,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 4047, "time": 0.73279454240246, "position": { "x": 7, @@ -6058,7 +6058,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 7, @@ -6081,7 +6081,7 @@ { "lineGroupId": 156, "indexInLine": 3, - "noteOrder": 4104, + "noteOrder": 4071, "time": 0.7371050985342391, "position": { "x": 6, @@ -6104,7 +6104,7 @@ { "lineGroupId": 156, "indexInLine": 4, - "noteOrder": 4110.0, + "noteOrder": 4077.0, "time": 0.7371050985342391, "position": { "x": 6, @@ -6127,7 +6127,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 6, @@ -6150,7 +6150,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 6, @@ -6173,7 +6173,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4143, "time": 0.7500367669295767, "position": { "x": 4, @@ -6196,7 +6196,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 4166, "time": 0.7543473230613559, "position": { "x": 4, @@ -6219,7 +6219,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 4190, "time": 0.7586578791931351, "position": { "x": 7, @@ -6242,7 +6242,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 7, @@ -6265,7 +6265,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 4286, "time": 0.7759001037202518, "position": { "x": 3, @@ -6288,7 +6288,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 3, @@ -6311,7 +6311,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 4381, "time": 0.7931423282473685, "position": { "x": 7, @@ -6334,7 +6334,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4440, + "noteOrder": 4405, "time": 0.7974528843791476, "position": { "x": 7, @@ -6357,7 +6357,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 4464, + "noteOrder": 4428, "time": 0.8017634405109269, "position": { "x": 3, @@ -6380,7 +6380,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4452, "time": 0.8060739966427061, "position": { "x": 3, @@ -6403,7 +6403,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4608, + "noteOrder": 4571, "time": 0.8276267773016018, "position": { "x": 3, @@ -6426,7 +6426,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 3, @@ -6449,7 +6449,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 4632, + "noteOrder": 4595, "time": 0.8319373334333812, "position": { "x": 4, @@ -6472,7 +6472,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 4, @@ -6495,7 +6495,7 @@ { "lineGroupId": 179, "indexInLine": 5, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 5, @@ -6518,7 +6518,7 @@ { "lineGroupId": 179, "indexInLine": 6, - "noteOrder": 4662.0, + "noteOrder": 4625.0, "time": 0.8362478895651603, "position": { "x": 5, @@ -6541,7 +6541,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 4656, + "noteOrder": 4619, "time": 0.8362478895651603, "position": { "x": 3, @@ -6564,7 +6564,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 3, @@ -6587,7 +6587,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 4680, + "noteOrder": 4643, "time": 0.8405584456969394, "position": { "x": 4, @@ -6610,7 +6610,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 4, @@ -6633,7 +6633,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 5, @@ -6656,7 +6656,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 4710.0, + "noteOrder": 4672.0, "time": 0.8448690018287185, "position": { "x": 5, @@ -6679,7 +6679,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 4666, "time": 0.8448690018287185, "position": { "x": 3, @@ -6702,7 +6702,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 3, @@ -6725,7 +6725,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4716, + "noteOrder": 4678, "time": 0.8470242798946083, "position": { "x": 4, @@ -6748,7 +6748,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 4722.0, + "noteOrder": 4684.0, "time": 0.8470242798946083, "position": { "x": 4, @@ -6771,7 +6771,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4728, + "noteOrder": 4690, "time": 0.8491795579604978, "position": { "x": 3, @@ -6794,7 +6794,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 3, @@ -6817,7 +6817,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 4740, + "noteOrder": 4702, "time": 0.8513348360263874, "position": { "x": 4, @@ -6840,7 +6840,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 4746.0, + "noteOrder": 4708.0, "time": 0.8513348360263874, "position": { "x": 4, @@ -6863,7 +6863,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4800, + "noteOrder": 4762, "time": 0.8621112263558354, "position": { "x": 3, @@ -6886,7 +6886,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4824, + "noteOrder": 4785, "time": 0.8664217824876145, "position": { "x": 3, @@ -6909,7 +6909,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 4848, + "noteOrder": 4809, "time": 0.8707323386193936, "position": { "x": 7, @@ -6932,7 +6932,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 4833, "time": 0.8750428947511728, "position": { "x": 7, @@ -6955,7 +6955,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 4, @@ -6978,7 +6978,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 4, @@ -7001,7 +7001,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 4944, + "noteOrder": 4905, "time": 0.8879745631465104, "position": { "x": 6, @@ -7024,7 +7024,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 4968, + "noteOrder": 4928, "time": 0.8922851192782896, "position": { "x": 6, @@ -7047,7 +7047,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 4992, + "noteOrder": 4952, "time": 0.8965956754100687, "position": { "x": 7, @@ -7070,7 +7070,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 7, @@ -7093,7 +7093,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 5016, + "noteOrder": 4976, "time": 0.9009062315418479, "position": { "x": 6, @@ -7116,7 +7116,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 6, @@ -7139,7 +7139,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 5, @@ -7162,7 +7162,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 5046.0, + "noteOrder": 5006.0, "time": 0.905216787673627, "position": { "x": 5, @@ -7185,7 +7185,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 5040, + "noteOrder": 5000, "time": 0.905216787673627, "position": { "x": 7, @@ -7208,7 +7208,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 7, @@ -7231,7 +7231,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 5064, + "noteOrder": 5024, "time": 0.9095273438054062, "position": { "x": 6, @@ -7254,7 +7254,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 6, @@ -7277,7 +7277,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 5, @@ -7300,7 +7300,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 5094.0, + "noteOrder": 5053.0, "time": 0.9138378999371854, "position": { "x": 5, @@ -7323,7 +7323,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 5047, "time": 0.9138378999371854, "position": { "x": 7, @@ -7346,7 +7346,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 7, @@ -7369,7 +7369,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 5100, + "noteOrder": 5059, "time": 0.915993178003075, "position": { "x": 6, @@ -7392,7 +7392,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 5106.0, + "noteOrder": 5065.0, "time": 0.915993178003075, "position": { "x": 6, @@ -7415,7 +7415,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 5112, + "noteOrder": 5071, "time": 0.9181484560689646, "position": { "x": 7, @@ -7438,7 +7438,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 7, @@ -7461,7 +7461,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 5124, + "noteOrder": 5083, "time": 0.9203037341348541, "position": { "x": 6, @@ -7484,7 +7484,7 @@ { "lineGroupId": 196, "indexInLine": 4, - "noteOrder": 5130.0, + "noteOrder": 5089.0, "time": 0.9203037341348541, "position": { "x": 6, @@ -7507,7 +7507,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 5143, "time": 0.9310801244643021, "position": { "x": 7, @@ -7530,7 +7530,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5208, + "noteOrder": 5166, "time": 0.9353906805960812, "position": { "x": 7, @@ -7553,7 +7553,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5232, + "noteOrder": 5190, "time": 0.9397012367278605, "position": { "x": 3, @@ -7576,7 +7576,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 5214, "time": 0.9440117928596397, "position": { "x": 3, @@ -7599,7 +7599,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 6, @@ -7622,7 +7622,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 6, @@ -7645,7 +7645,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 5328, + "noteOrder": 5285, "time": 0.9569434612549772, "position": { "x": 4, @@ -7668,7 +7668,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 5376, + "noteOrder": 5333, "time": 0.9655645735185354, "position": { "x": 4, @@ -7703,7 +7703,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 124, + "BPM": 123, "NPS": "3.23", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/info.json b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/info.json index 8320f050..636c5fdf 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/オネガイディスコミュージック/info.json @@ -3,7 +3,7 @@ "SongName": "\u30aa\u30cd\u30ac\u30a4\u30fb\u30c7\u30a3\u30b9\u30b3\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af", "SongLength": "112.261474", "SongAuthorName": "\u661f\u91ce\u594f\u5b50 Prod by.uno", - "Bpm": "124", + "Bpm": "123", "SongPath": "267.ogg", "CreateTicks": 637606080000000000, "CreateTime": "637606080000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a.json index 85d6777b..caa0eba8 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3 difficulty_1a", "sphereNodes": [ { - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 5, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 507, + "noteOrder": 504, "time": 0.05333175295778065, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 528, "time": 0.055871360241484494, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 579, + "noteOrder": 576, "time": 0.060950574808892176, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 603, + "noteOrder": 600, "time": 0.06349018209259602, "position": { "x": 5, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 624, "time": 0.06602978937629986, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 676, + "noteOrder": 672, "time": 0.07110900394370755, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 700, + "noteOrder": 696, "time": 0.07364861122741138, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 724, + "noteOrder": 720, "time": 0.07618821851111522, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 768, "time": 0.08126743307852291, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 792, "time": 0.08380704036222675, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 820, + "noteOrder": 816, "time": 0.08634664764593059, "position": { "x": 2, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 869, + "noteOrder": 864, "time": 0.09142586221333827, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 888, "time": 0.09396546949704211, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 912, "time": 0.09650507678074594, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 936, "time": 0.09904468406444977, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 965, + "noteOrder": 960, "time": 0.10158429134815362, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 984, "time": 0.10412389863185746, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1008, "time": 0.1066635059155613, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1032, "time": 0.10920311319926514, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1062, + "noteOrder": 1056, "time": 0.11174272048296899, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1086, + "noteOrder": 1080, "time": 0.11428232776667283, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1104, "time": 0.11682193505037666, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1128, "time": 0.1193615423340805, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1152, "time": 0.12190114961778435, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1176, "time": 0.12444075690148819, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1200, "time": 0.12698036418519204, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1224, "time": 0.12951997146889588, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1848, "time": 0.19554976084519574, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1872, "time": 0.19808936812889955, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1896, "time": 0.2006289754126034, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1920, "time": 0.20316858269630725, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1944, "time": 0.20570818998001109, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2003, + "noteOrder": 1992, "time": 0.2107874045474188, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2268, + "noteOrder": 2256, "time": 0.238723084668161, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2304, "time": 0.2438022992355687, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2340, + "noteOrder": 2328, "time": 0.24634190651927254, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2376, "time": 0.25142112108668024, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2461, + "noteOrder": 2448, "time": 0.25903994293779176, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2558, + "noteOrder": 2544, "time": 0.2691983720726071, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2832, "time": 0.2996736594770532, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2880, "time": 0.3047528740444609, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2992, + "noteOrder": 2976, "time": 0.3149113031792763, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3000, "time": 0.3174509104629801, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3024, "time": 0.3199905177466839, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3088, + "noteOrder": 3072, "time": 0.32506973231409164, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3113, + "noteOrder": 3096, "time": 0.3276093395977954, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3120, "time": 0.33014894688149926, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4176, "time": 0.4418916673644683, "position": { "x": 5, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4681, + "noteOrder": 4656, "time": 0.4926838130385451, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5115, + "noteOrder": 5088, "time": 0.5383967441452142, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5139, + "noteOrder": 5112, "time": 0.5409363514289182, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5212, + "noteOrder": 5184, "time": 0.5485551732800297, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5208, "time": 0.5510947805637334, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5280, "time": 0.5587136024148449, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 5304, "time": 0.5612532096985489, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5328, "time": 0.5637928169822526, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5381, + "noteOrder": 5352, "time": 0.5663324242659564, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 2, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 2, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 2, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 8, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 8, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 8, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 6515, + "noteOrder": 6480, "time": 0.685693966600037, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 6901, + "noteOrder": 6864, "time": 0.7263276831392984, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 6949, + "noteOrder": 6912, "time": 0.7314068977067062, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7045, + "noteOrder": 7008, "time": 0.7415653268415214, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7070, + "noteOrder": 7032, "time": 0.7441049341252253, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7094, + "noteOrder": 7056, "time": 0.7466445414089292, "position": { "x": 3, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7142, + "noteOrder": 7104, "time": 0.7517237559763369, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7166, + "noteOrder": 7128, "time": 0.7542633632600407, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7335, + "noteOrder": 7296, "time": 0.7720406142459675, "position": { "x": 5, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7359, + "noteOrder": 7320, "time": 0.7745802215296714, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7383, + "noteOrder": 7344, "time": 0.7771198288133753, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7407, + "noteOrder": 7368, "time": 0.7796594360970791, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 2, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7456, + "noteOrder": 7416, "time": 0.7847386506644867, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7480, + "noteOrder": 7440, "time": 0.7872782579481906, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7504, + "noteOrder": 7464, "time": 0.7898178652318945, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7552, + "noteOrder": 7512, "time": 0.7948970797993021, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7576, + "noteOrder": 7536, "time": 0.797436687083006, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7600, + "noteOrder": 7560, "time": 0.7999762943667098, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7649, + "noteOrder": 7608, "time": 0.8050555089341175, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7673, + "noteOrder": 7632, "time": 0.8075951162178213, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 5, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 5, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8686, + "noteOrder": 8640, "time": 0.9142586221333826, "position": { "x": 5, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 4, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8734, + "noteOrder": 8688, "time": 0.9193378367007903, "position": { "x": 3, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8783, + "noteOrder": 8736, "time": 0.9244170512681981, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8831, + "noteOrder": 8784, "time": 0.9294962658356057, "position": { "x": 6, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8879, + "noteOrder": 8832, "time": 0.9345754804030133, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8927, + "noteOrder": 8880, "time": 0.939654694970421, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 8928, "time": 0.9447339095378288, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 7, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 8976, "time": 0.9498131241052364, "position": { "x": 8, @@ -2687,7 +2687,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 97, + "noteOrder": 96, "time": 0.010158429134815364, "position": { "x": 7, @@ -2710,7 +2710,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 145, + "noteOrder": 144, "time": 0.015237643702223044, "position": { "x": 6, @@ -2733,7 +2733,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 193, + "noteOrder": 192, "time": 0.020316858269630728, "position": { "x": 3, @@ -2756,7 +2756,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 241, + "noteOrder": 240, "time": 0.025396072837038406, "position": { "x": 4, @@ -2779,7 +2779,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 8, @@ -2802,7 +2802,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 338, + "noteOrder": 336, "time": 0.03555450197185377, "position": { "x": 6, @@ -2825,7 +2825,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 2, @@ -2848,7 +2848,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 434, + "noteOrder": 432, "time": 0.04571293110666914, "position": { "x": 4, @@ -2871,7 +2871,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1255, + "noteOrder": 1248, "time": 0.13205957875259972, "position": { "x": 8, @@ -2894,7 +2894,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1351, + "noteOrder": 1344, "time": 0.1422180078874151, "position": { "x": 8, @@ -2917,7 +2917,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 6, @@ -2940,7 +2940,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 6, @@ -2963,7 +2963,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 1496, + "noteOrder": 1488, "time": 0.15745565158963815, "position": { "x": 5, @@ -2986,7 +2986,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 6, @@ -3009,7 +3009,7 @@ { "lineGroupId": 37, "indexInLine": 7, - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 6, @@ -3032,7 +3032,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1303, + "noteOrder": 1296, "time": 0.13713879332000742, "position": { "x": 4, @@ -3055,7 +3055,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 4, @@ -3078,7 +3078,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 3, @@ -3101,7 +3101,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 3, @@ -3124,7 +3124,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 4, @@ -3147,7 +3147,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1641, + "noteOrder": 1632, "time": 0.17269329529186117, "position": { "x": 7, @@ -3170,7 +3170,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1665, + "noteOrder": 1656, "time": 0.175232902575565, "position": { "x": 7, @@ -3193,7 +3193,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1665, + "noteOrder": 1656, "time": 0.175232902575565, "position": { "x": 6, @@ -3216,7 +3216,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 6, @@ -3239,7 +3239,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 5, @@ -3262,7 +3262,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1695.0, + "noteOrder": 1686.0, "time": 0.17777250985926885, "position": { "x": 5, @@ -3285,7 +3285,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 7, @@ -3308,7 +3308,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1713, + "noteOrder": 1704, "time": 0.18031211714297268, "position": { "x": 7, @@ -3331,7 +3331,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1713, + "noteOrder": 1704, "time": 0.18031211714297268, "position": { "x": 6, @@ -3354,7 +3354,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 6, @@ -3377,7 +3377,7 @@ { "lineGroupId": 40, "indexInLine": 5, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 5, @@ -3400,7 +3400,7 @@ { "lineGroupId": 40, "indexInLine": 6, - "noteOrder": 1743.0, + "noteOrder": 1734.0, "time": 0.18285172442667655, "position": { "x": 5, @@ -3423,7 +3423,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 7, @@ -3446,7 +3446,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1761, + "noteOrder": 1752, "time": 0.18539133171038036, "position": { "x": 7, @@ -3469,7 +3469,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1761, + "noteOrder": 1752, "time": 0.18539133171038036, "position": { "x": 6, @@ -3492,7 +3492,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 6, @@ -3515,7 +3515,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 5, @@ -3538,7 +3538,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1791.0, + "noteOrder": 1782.0, "time": 0.18793093899408422, "position": { "x": 5, @@ -3561,7 +3561,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 7, @@ -3584,7 +3584,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1810, + "noteOrder": 1800, "time": 0.19047054627778806, "position": { "x": 7, @@ -3607,7 +3607,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1810, + "noteOrder": 1800, "time": 0.19047054627778806, "position": { "x": 6, @@ -3630,7 +3630,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 6, @@ -3653,7 +3653,7 @@ { "lineGroupId": 42, "indexInLine": 5, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 5, @@ -3676,7 +3676,7 @@ { "lineGroupId": 42, "indexInLine": 6, - "noteOrder": 1840.0, + "noteOrder": 1830.0, "time": 0.19301015356149187, "position": { "x": 5, @@ -3699,7 +3699,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2027, + "noteOrder": 2016, "time": 0.2133270118311226, "position": { "x": 3, @@ -3722,7 +3722,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 3, @@ -3745,7 +3745,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 4, @@ -3768,7 +3768,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 4, @@ -3791,7 +3791,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 5, @@ -3814,7 +3814,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 2081.0, + "noteOrder": 2070.0, "time": 0.21840622639853027, "position": { "x": 5, @@ -3837,7 +3837,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 3, @@ -3860,7 +3860,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 3, @@ -3883,7 +3883,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 4, @@ -3906,7 +3906,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 4, @@ -3929,7 +3929,7 @@ { "lineGroupId": 52, "indexInLine": 5, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 5, @@ -3952,7 +3952,7 @@ { "lineGroupId": 52, "indexInLine": 6, - "noteOrder": 2129.0, + "noteOrder": 2118.0, "time": 0.22348544096593798, "position": { "x": 5, @@ -3975,7 +3975,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 3, @@ -3998,7 +3998,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2147, + "noteOrder": 2136, "time": 0.2260250482496418, "position": { "x": 3, @@ -4021,7 +4021,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 2147, + "noteOrder": 2136, "time": 0.2260250482496418, "position": { "x": 4, @@ -4044,7 +4044,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 4, @@ -4067,7 +4067,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 5, @@ -4090,7 +4090,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 2178.0, + "noteOrder": 2166.0, "time": 0.22856465553334565, "position": { "x": 5, @@ -4113,7 +4113,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 3, @@ -4136,7 +4136,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2196, + "noteOrder": 2184, "time": 0.23110426281704952, "position": { "x": 3, @@ -4159,7 +4159,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 2196, + "noteOrder": 2184, "time": 0.23110426281704952, "position": { "x": 4, @@ -4182,7 +4182,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 4, @@ -4205,7 +4205,7 @@ { "lineGroupId": 54, "indexInLine": 5, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 5, @@ -4228,7 +4228,7 @@ { "lineGroupId": 54, "indexInLine": 6, - "noteOrder": 2226.0, + "noteOrder": 2214.0, "time": 0.23364387010075333, "position": { "x": 5, @@ -4251,7 +4251,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2413, + "noteOrder": 2400, "time": 0.2539607283703841, "position": { "x": 3, @@ -4274,7 +4274,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 5, @@ -4297,7 +4297,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 3, @@ -4320,7 +4320,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 6, @@ -4343,7 +4343,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2654, + "noteOrder": 2640, "time": 0.27935680120742246, "position": { "x": 6, @@ -4366,7 +4366,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 3, @@ -4389,7 +4389,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2751, + "noteOrder": 2736, "time": 0.2895152303422378, "position": { "x": 3, @@ -4412,7 +4412,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 3, @@ -4435,7 +4435,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 5, @@ -4458,7 +4458,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3185, + "noteOrder": 3168, "time": 0.335228161448907, "position": { "x": 7, @@ -4481,7 +4481,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 5, @@ -4504,7 +4504,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 7, @@ -4527,7 +4527,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 3, @@ -4550,7 +4550,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 5, @@ -4573,7 +4573,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 3, @@ -4596,7 +4596,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 7, @@ -4619,7 +4619,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 5, @@ -4642,7 +4642,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 7, @@ -4665,7 +4665,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 3, @@ -4688,7 +4688,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 5, @@ -4711,7 +4711,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 3, @@ -4734,7 +4734,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 6, @@ -4757,7 +4757,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 4, @@ -4780,7 +4780,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 6, @@ -4803,7 +4803,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 4, @@ -4826,7 +4826,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 6, @@ -4849,7 +4849,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 4, @@ -4872,7 +4872,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 6, @@ -4895,7 +4895,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 4, @@ -4918,7 +4918,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 6, @@ -4941,7 +4941,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 4, @@ -4964,7 +4964,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 6, @@ -4987,7 +4987,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 7, @@ -5010,7 +5010,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3981, + "noteOrder": 3960, "time": 0.4190352018111337, "position": { "x": 7, @@ -5033,7 +5033,7 @@ { "lineGroupId": 97, "indexInLine": 3, - "noteOrder": 3981, + "noteOrder": 3960, "time": 0.4190352018111337, "position": { "x": 6, @@ -5056,7 +5056,7 @@ { "lineGroupId": 97, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 6, @@ -5079,7 +5079,7 @@ { "lineGroupId": 97, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 5, @@ -5102,7 +5102,7 @@ { "lineGroupId": 97, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 3990.0, "time": 0.4215748090948376, "position": { "x": 5, @@ -5125,7 +5125,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 7, @@ -5148,7 +5148,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 4008, "time": 0.4241144163785414, "position": { "x": 7, @@ -5171,7 +5171,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 4029, + "noteOrder": 4008, "time": 0.4241144163785414, "position": { "x": 6, @@ -5194,7 +5194,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 6, @@ -5217,7 +5217,7 @@ { "lineGroupId": 98, "indexInLine": 5, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 5, @@ -5240,7 +5240,7 @@ { "lineGroupId": 98, "indexInLine": 6, - "noteOrder": 4060.0, + "noteOrder": 4038.0, "time": 0.4266540236622452, "position": { "x": 5, @@ -5263,7 +5263,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 7, @@ -5286,7 +5286,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 4078, + "noteOrder": 4056, "time": 0.42919363094594903, "position": { "x": 7, @@ -5309,7 +5309,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 4078, + "noteOrder": 4056, "time": 0.42919363094594903, "position": { "x": 6, @@ -5332,7 +5332,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 6, @@ -5355,7 +5355,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 5, @@ -5378,7 +5378,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 4108.0, + "noteOrder": 4086.0, "time": 0.4317332382296529, "position": { "x": 5, @@ -5401,7 +5401,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 7, @@ -5424,7 +5424,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 4126, + "noteOrder": 4104, "time": 0.43427284551335676, "position": { "x": 7, @@ -5447,7 +5447,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 4126, + "noteOrder": 4104, "time": 0.43427284551335676, "position": { "x": 6, @@ -5470,7 +5470,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 6, @@ -5493,7 +5493,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 5, @@ -5516,7 +5516,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 4156.0, + "noteOrder": 4134.0, "time": 0.43681245279706055, "position": { "x": 5, @@ -5539,7 +5539,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 7, @@ -5562,7 +5562,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 5, @@ -5585,7 +5585,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 4343, + "noteOrder": 4320, "time": 0.4571293110666913, "position": { "x": 3, @@ -5608,7 +5608,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 4367, + "noteOrder": 4344, "time": 0.45966891835039514, "position": { "x": 3, @@ -5631,7 +5631,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 4367, + "noteOrder": 4344, "time": 0.45966891835039514, "position": { "x": 4, @@ -5654,7 +5654,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 4, @@ -5677,7 +5677,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 5, @@ -5700,7 +5700,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 4397.0, + "noteOrder": 4374.0, "time": 0.46220852563409903, "position": { "x": 5, @@ -5723,7 +5723,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 3, @@ -5746,7 +5746,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4415, + "noteOrder": 4392, "time": 0.46474813291780287, "position": { "x": 3, @@ -5769,7 +5769,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 4415, + "noteOrder": 4392, "time": 0.46474813291780287, "position": { "x": 4, @@ -5792,7 +5792,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 4, @@ -5815,7 +5815,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 5, @@ -5838,7 +5838,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 4422.0, "time": 0.46728774020150665, "position": { "x": 5, @@ -5861,30 +5861,30 @@ { "lineGroupId": 107, "indexInLine": 1, + "noteOrder": 4416, + "time": 0.46728774020150665, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, "noteOrder": 4440, - "time": 0.46728774020150665, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 107, - "indexInLine": 2, - "noteOrder": 4464, "time": 0.4698273474852105, "position": { "x": 3, @@ -5907,7 +5907,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 4464, + "noteOrder": 4440, "time": 0.4698273474852105, "position": { "x": 4, @@ -5930,7 +5930,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 4, @@ -5953,7 +5953,7 @@ { "lineGroupId": 107, "indexInLine": 5, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 5, @@ -5976,7 +5976,7 @@ { "lineGroupId": 107, "indexInLine": 6, - "noteOrder": 4494.0, + "noteOrder": 4470.0, "time": 0.4723669547689144, "position": { "x": 5, @@ -5999,7 +5999,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 3, @@ -6022,7 +6022,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 4512, + "noteOrder": 4488, "time": 0.4749065620526182, "position": { "x": 3, @@ -6045,7 +6045,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 4512, + "noteOrder": 4488, "time": 0.4749065620526182, "position": { "x": 4, @@ -6068,7 +6068,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 4, @@ -6091,7 +6091,7 @@ { "lineGroupId": 108, "indexInLine": 5, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 5, @@ -6114,7 +6114,7 @@ { "lineGroupId": 108, "indexInLine": 6, - "noteOrder": 4542.0, + "noteOrder": 4518.0, "time": 0.477446169336322, "position": { "x": 5, @@ -6137,7 +6137,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 3, @@ -6160,7 +6160,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 4681, + "noteOrder": 4656, "time": 0.4926838130385451, "position": { "x": 5, @@ -6183,7 +6183,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 4729, + "noteOrder": 4704, "time": 0.49776302760595276, "position": { "x": 7, @@ -6206,7 +6206,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 4777, + "noteOrder": 4752, "time": 0.5028422421733605, "position": { "x": 7, @@ -6229,7 +6229,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 4826, + "noteOrder": 4800, "time": 0.5079214567407682, "position": { "x": 4, @@ -6252,7 +6252,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 4, @@ -6275,7 +6275,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 4922, + "noteOrder": 4896, "time": 0.5180798858755835, "position": { "x": 6, @@ -6298,7 +6298,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 4970, + "noteOrder": 4944, "time": 0.5231591004429912, "position": { "x": 6, @@ -6321,7 +6321,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 5019, + "noteOrder": 4992, "time": 0.5282383150103989, "position": { "x": 3, @@ -6344,7 +6344,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 3, @@ -6367,7 +6367,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 5405, + "noteOrder": 5376, "time": 0.5688720315496604, "position": { "x": 3, @@ -6390,7 +6390,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 5598, + "noteOrder": 5568, "time": 0.5891888898192911, "position": { "x": 3, @@ -6413,7 +6413,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 5694, + "noteOrder": 5664, "time": 0.5993473189541064, "position": { "x": 3, @@ -6436,7 +6436,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 5, @@ -6459,7 +6459,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 3, @@ -6482,7 +6482,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 5, @@ -6505,7 +6505,7 @@ { "lineGroupId": 136, "indexInLine": 5, - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 3, @@ -6528,7 +6528,7 @@ { "lineGroupId": 136, "indexInLine": 6, - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 5, @@ -6551,7 +6551,7 @@ { "lineGroupId": 136, "indexInLine": 7, - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 3, @@ -6574,7 +6574,7 @@ { "lineGroupId": 136, "indexInLine": 8, - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 5, @@ -6597,7 +6597,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 6080, + "noteOrder": 6048, "time": 0.6399810354933678, "position": { "x": 7, @@ -6620,7 +6620,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 5, @@ -6643,7 +6643,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 7, @@ -6666,7 +6666,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 5, @@ -6689,7 +6689,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 7, @@ -6712,7 +6712,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 5, @@ -6735,7 +6735,7 @@ { "lineGroupId": 144, "indexInLine": 7, - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 7, @@ -6758,7 +6758,7 @@ { "lineGroupId": 144, "indexInLine": 8, - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 5, @@ -6781,7 +6781,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 6466, + "noteOrder": 6432, "time": 0.6806147520326293, "position": { "x": 7, @@ -6804,7 +6804,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 5, @@ -6827,7 +6827,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 7, @@ -6850,7 +6850,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 4, @@ -6873,7 +6873,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 6708, + "noteOrder": 6672, "time": 0.7060108248696677, "position": { "x": 4, @@ -6896,7 +6896,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 6756, + "noteOrder": 6720, "time": 0.7110900394370754, "position": { "x": 7, @@ -6919,7 +6919,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 7, @@ -6942,7 +6942,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 6852, + "noteOrder": 6816, "time": 0.7212484685718907, "position": { "x": 7, @@ -6965,7 +6965,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 5, @@ -6988,7 +6988,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 7190, + "noteOrder": 7152, "time": 0.7568029705437445, "position": { "x": 6, @@ -7011,7 +7011,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 7238, + "noteOrder": 7200, "time": 0.7618821851111522, "position": { "x": 6, @@ -7034,7 +7034,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 7721, + "noteOrder": 7680, "time": 0.812674330785229, "position": { "x": 3, @@ -7057,7 +7057,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 7769, + "noteOrder": 7728, "time": 0.8177535453526367, "position": { "x": 4, @@ -7080,7 +7080,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 7818, + "noteOrder": 7776, "time": 0.8228327599200443, "position": { "x": 7, @@ -7103,7 +7103,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 7866, + "noteOrder": 7824, "time": 0.8279119744874521, "position": { "x": 6, @@ -7126,7 +7126,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 7914, + "noteOrder": 7872, "time": 0.8329911890548597, "position": { "x": 2, @@ -7149,7 +7149,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 7962, + "noteOrder": 7920, "time": 0.8380704036222674, "position": { "x": 4, @@ -7172,7 +7172,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 8011, + "noteOrder": 7968, "time": 0.8431496181896752, "position": { "x": 8, @@ -7195,7 +7195,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 8059, + "noteOrder": 8016, "time": 0.8482288327570828, "position": { "x": 6, @@ -7218,7 +7218,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 8107, + "noteOrder": 8064, "time": 0.8533080473244904, "position": { "x": 7, @@ -7241,7 +7241,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 7, @@ -7264,7 +7264,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 8107, + "noteOrder": 8064, "time": 0.8533080473244904, "position": { "x": 3, @@ -7287,7 +7287,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 3, @@ -7310,7 +7310,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 8300, + "noteOrder": 8256, "time": 0.8736249055941211, "position": { "x": 7, @@ -7333,7 +7333,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 8324, + "noteOrder": 8280, "time": 0.876164512877825, "position": { "x": 7, @@ -7356,7 +7356,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 8324, + "noteOrder": 8280, "time": 0.876164512877825, "position": { "x": 6, @@ -7379,7 +7379,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 6, @@ -7402,7 +7402,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 5, @@ -7425,7 +7425,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 8354.0, + "noteOrder": 8310.0, "time": 0.8787041201615289, "position": { "x": 5, @@ -7448,7 +7448,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 7, @@ -7471,7 +7471,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 8373, + "noteOrder": 8328, "time": 0.8812437274452327, "position": { "x": 7, @@ -7494,7 +7494,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 8373, + "noteOrder": 8328, "time": 0.8812437274452327, "position": { "x": 6, @@ -7517,7 +7517,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 6, @@ -7540,7 +7540,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 5, @@ -7563,7 +7563,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 8403.0, + "noteOrder": 8358.0, "time": 0.8837833347289366, "position": { "x": 5, @@ -7586,7 +7586,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 7, @@ -7609,7 +7609,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 6, @@ -7632,7 +7632,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 8493, + "noteOrder": 8448, "time": 0.8939417638637519, "position": { "x": 3, @@ -7655,7 +7655,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 8517, + "noteOrder": 8472, "time": 0.8964813711474557, "position": { "x": 3, @@ -7678,7 +7678,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 8517, + "noteOrder": 8472, "time": 0.8964813711474557, "position": { "x": 4, @@ -7701,7 +7701,7 @@ { "lineGroupId": 197, "indexInLine": 4, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 4, @@ -7724,7 +7724,7 @@ { "lineGroupId": 197, "indexInLine": 5, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 5, @@ -7747,7 +7747,7 @@ { "lineGroupId": 197, "indexInLine": 6, - "noteOrder": 8547.0, + "noteOrder": 8502.0, "time": 0.8990209784311596, "position": { "x": 5, @@ -7770,7 +7770,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 3, @@ -7793,7 +7793,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 8566, + "noteOrder": 8520, "time": 0.9015605857148635, "position": { "x": 3, @@ -7816,7 +7816,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 8566, + "noteOrder": 8520, "time": 0.9015605857148635, "position": { "x": 4, @@ -7839,7 +7839,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 4, @@ -7862,7 +7862,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 5, @@ -7885,7 +7885,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 8596.0, + "noteOrder": 8550.0, "time": 0.9041001929985673, "position": { "x": 5, @@ -7908,7 +7908,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 3, @@ -7931,7 +7931,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 4, @@ -7954,7 +7954,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 9120, + "noteOrder": 9072, "time": 0.9599715532400518, "position": { "x": 7, @@ -7977,7 +7977,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 9241, + "noteOrder": 9192, "time": 0.972669589658571, "position": { "x": 6, @@ -8028,7 +8028,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 556.5, + "noteOrder": 553.5, "time": 0.05841096752518833, "position": { "x": 5, @@ -8056,7 +8056,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 652.5, + "noteOrder": 649.5, "time": 0.06856939666000371, "position": { "x": 5, @@ -8084,7 +8084,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 749.5, + "noteOrder": 745.5, "time": 0.07872782579481907, "position": { "x": 5, @@ -8112,7 +8112,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2655.5, + "noteOrder": 2641.5, "time": 0.27935680120742246, "position": { "x": 5, @@ -8140,7 +8140,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2752.5, + "noteOrder": 2737.5, "time": 0.2895152303422378, "position": { "x": 5, @@ -8168,7 +8168,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4778.5, + "noteOrder": 4753.5, "time": 0.5028422421733605, "position": { "x": 5, @@ -8196,7 +8196,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4875.5, + "noteOrder": 4849.5, "time": 0.5130006713081757, "position": { "x": 5, @@ -8224,7 +8224,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4971.5, + "noteOrder": 4945.5, "time": 0.5231591004429912, "position": { "x": 5, @@ -8252,7 +8252,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5068.5, + "noteOrder": 5041.5, "time": 0.5333175295778065, "position": { "x": 5, @@ -8280,7 +8280,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5454.5, + "noteOrder": 5425.5, "time": 0.5739512461170679, "position": { "x": 5, @@ -8308,7 +8308,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5502.5, + "noteOrder": 5473.5, "time": 0.5790304606844756, "position": { "x": 5, @@ -8336,7 +8336,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5551.5, + "noteOrder": 5521.5, "time": 0.5841096752518834, "position": { "x": 5, @@ -8364,7 +8364,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5599.5, + "noteOrder": 5569.5, "time": 0.5891888898192911, "position": { "x": 5, @@ -8392,7 +8392,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6709.5, + "noteOrder": 6673.5, "time": 0.7060108248696677, "position": { "x": 5, @@ -8420,7 +8420,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6805.5, + "noteOrder": 6769.5, "time": 0.7161692540044831, "position": { "x": 5, @@ -8448,7 +8448,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7239.5, + "noteOrder": 7201.5, "time": 0.7618821851111522, "position": { "x": 5, @@ -8476,7 +8476,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8205.5, + "noteOrder": 8161.5, "time": 0.8634664764593059, "position": { "x": 5, @@ -8504,7 +8504,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8760.5, + "noteOrder": 8713.5, "time": 0.9218774439844942, "position": { "x": 5, @@ -8532,7 +8532,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8856.5, + "noteOrder": 8809.5, "time": 0.9320358731193095, "position": { "x": 5, @@ -8560,7 +8560,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8953.5, + "noteOrder": 8905.5, "time": 0.9421943022541249, "position": { "x": 5, @@ -8588,7 +8588,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9049.5, + "noteOrder": 9001.5, "time": 0.9523527313889403, "position": { "x": 5, @@ -8616,7 +8616,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9253.0, + "noteOrder": 9204.0, "time": 0.972669589658571, "position": { "x": 5, @@ -8644,7 +8644,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 9266.5, + "noteOrder": 9217.5, "time": 0.9752091969422748, "position": { "x": 5, @@ -8685,7 +8685,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 188, + "BPM": 187, "NPS": "3.08", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a_blockless.json index 2a298278..cb92ce55 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3 difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 5, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 507, + "noteOrder": 504, "time": 0.05333175295778065, "position": { "x": 6, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 528, "time": 0.055871360241484494, "position": { "x": 7, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 579, + "noteOrder": 576, "time": 0.060950574808892176, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 603, + "noteOrder": 600, "time": 0.06349018209259602, "position": { "x": 5, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 624, "time": 0.06602978937629986, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 676, + "noteOrder": 672, "time": 0.07110900394370755, "position": { "x": 3, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 700, + "noteOrder": 696, "time": 0.07364861122741138, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 724, + "noteOrder": 720, "time": 0.07618821851111522, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 768, "time": 0.08126743307852291, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 796, + "noteOrder": 792, "time": 0.08380704036222675, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 820, + "noteOrder": 816, "time": 0.08634664764593059, "position": { "x": 2, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 869, + "noteOrder": 864, "time": 0.09142586221333827, "position": { "x": 5, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 888, "time": 0.09396546949704211, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 912, "time": 0.09650507678074594, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 936, "time": 0.09904468406444977, "position": { "x": 5, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 965, + "noteOrder": 960, "time": 0.10158429134815362, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 984, "time": 0.10412389863185746, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1008, "time": 0.1066635059155613, "position": { "x": 7, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1032, "time": 0.10920311319926514, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1062, + "noteOrder": 1056, "time": 0.11174272048296899, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1086, + "noteOrder": 1080, "time": 0.11428232776667283, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1104, "time": 0.11682193505037666, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1128, "time": 0.1193615423340805, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1152, "time": 0.12190114961778435, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1176, "time": 0.12444075690148819, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1200, "time": 0.12698036418519204, "position": { "x": 7, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1224, "time": 0.12951997146889588, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1858, + "noteOrder": 1848, "time": 0.19554976084519574, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1872, "time": 0.19808936812889955, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1906, + "noteOrder": 1896, "time": 0.2006289754126034, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1920, "time": 0.20316858269630725, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1954, + "noteOrder": 1944, "time": 0.20570818998001109, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2003, + "noteOrder": 1992, "time": 0.2107874045474188, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2268, + "noteOrder": 2256, "time": 0.238723084668161, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2316, + "noteOrder": 2304, "time": 0.2438022992355687, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2340, + "noteOrder": 2328, "time": 0.24634190651927254, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2389, + "noteOrder": 2376, "time": 0.25142112108668024, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2461, + "noteOrder": 2448, "time": 0.25903994293779176, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2558, + "noteOrder": 2544, "time": 0.2691983720726071, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2832, "time": 0.2996736594770532, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2880, "time": 0.3047528740444609, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2992, + "noteOrder": 2976, "time": 0.3149113031792763, "position": { "x": 7, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3000, "time": 0.3174509104629801, "position": { "x": 4, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3024, "time": 0.3199905177466839, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3088, + "noteOrder": 3072, "time": 0.32506973231409164, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3113, + "noteOrder": 3096, "time": 0.3276093395977954, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3137, + "noteOrder": 3120, "time": 0.33014894688149926, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 3, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 3, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4176, "time": 0.4418916673644683, "position": { "x": 5, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 5, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4681, + "noteOrder": 4656, "time": 0.4926838130385451, "position": { "x": 7, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5115, + "noteOrder": 5088, "time": 0.5383967441452142, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 5139, + "noteOrder": 5112, "time": 0.5409363514289182, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 5212, + "noteOrder": 5184, "time": 0.5485551732800297, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 5236, + "noteOrder": 5208, "time": 0.5510947805637334, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 5, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 5308, + "noteOrder": 5280, "time": 0.5587136024148449, "position": { "x": 3, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 5332, + "noteOrder": 5304, "time": 0.5612532096985489, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 5356, + "noteOrder": 5328, "time": 0.5637928169822526, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 5381, + "noteOrder": 5352, "time": 0.5663324242659564, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 2, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 2, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 2, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 8, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 8, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 8, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 6515, + "noteOrder": 6480, "time": 0.685693966600037, "position": { "x": 5, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 5, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 6901, + "noteOrder": 6864, "time": 0.7263276831392984, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 6949, + "noteOrder": 6912, "time": 0.7314068977067062, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7045, + "noteOrder": 7008, "time": 0.7415653268415214, "position": { "x": 3, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7070, + "noteOrder": 7032, "time": 0.7441049341252253, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7094, + "noteOrder": 7056, "time": 0.7466445414089292, "position": { "x": 3, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7142, + "noteOrder": 7104, "time": 0.7517237559763369, "position": { "x": 5, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7166, + "noteOrder": 7128, "time": 0.7542633632600407, "position": { "x": 3, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7335, + "noteOrder": 7296, "time": 0.7720406142459675, "position": { "x": 5, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7359, + "noteOrder": 7320, "time": 0.7745802215296714, "position": { "x": 7, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7383, + "noteOrder": 7344, "time": 0.7771198288133753, "position": { "x": 4, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7407, + "noteOrder": 7368, "time": 0.7796594360970791, "position": { "x": 5, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 2, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7456, + "noteOrder": 7416, "time": 0.7847386506644867, "position": { "x": 4, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7480, + "noteOrder": 7440, "time": 0.7872782579481906, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7504, + "noteOrder": 7464, "time": 0.7898178652318945, "position": { "x": 7, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7552, + "noteOrder": 7512, "time": 0.7948970797993021, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7576, + "noteOrder": 7536, "time": 0.797436687083006, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7600, + "noteOrder": 7560, "time": 0.7999762943667098, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7649, + "noteOrder": 7608, "time": 0.8050555089341175, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7673, + "noteOrder": 7632, "time": 0.8075951162178213, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 5, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 5, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8686, + "noteOrder": 8640, "time": 0.9142586221333826, "position": { "x": 5, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 4, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8734, + "noteOrder": 8688, "time": 0.9193378367007903, "position": { "x": 3, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8783, + "noteOrder": 8736, "time": 0.9244170512681981, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 5, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8831, + "noteOrder": 8784, "time": 0.9294962658356057, "position": { "x": 6, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8879, + "noteOrder": 8832, "time": 0.9345754804030133, "position": { "x": 7, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8927, + "noteOrder": 8880, "time": 0.939654694970421, "position": { "x": 5, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8976, + "noteOrder": 8928, "time": 0.9447339095378288, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 7, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 9024, + "noteOrder": 8976, "time": 0.9498131241052364, "position": { "x": 8, @@ -2687,7 +2687,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 97, + "noteOrder": 96, "time": 0.010158429134815364, "position": { "x": 7, @@ -2710,7 +2710,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 145, + "noteOrder": 144, "time": 0.015237643702223044, "position": { "x": 6, @@ -2733,7 +2733,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 193, + "noteOrder": 192, "time": 0.020316858269630728, "position": { "x": 3, @@ -2756,7 +2756,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 241, + "noteOrder": 240, "time": 0.025396072837038406, "position": { "x": 4, @@ -2779,7 +2779,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 8, @@ -2802,7 +2802,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 338, + "noteOrder": 336, "time": 0.03555450197185377, "position": { "x": 6, @@ -2825,7 +2825,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 2, @@ -2848,7 +2848,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 434, + "noteOrder": 432, "time": 0.04571293110666914, "position": { "x": 4, @@ -2871,7 +2871,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1255, + "noteOrder": 1248, "time": 0.13205957875259972, "position": { "x": 8, @@ -2894,7 +2894,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1351, + "noteOrder": 1344, "time": 0.1422180078874151, "position": { "x": 8, @@ -2917,7 +2917,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 6, @@ -2940,7 +2940,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 6, @@ -2963,7 +2963,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 1496, + "noteOrder": 1488, "time": 0.15745565158963815, "position": { "x": 5, @@ -2986,7 +2986,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 6, @@ -3009,7 +3009,7 @@ { "lineGroupId": 37, "indexInLine": 7, - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 6, @@ -3032,7 +3032,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1303, + "noteOrder": 1296, "time": 0.13713879332000742, "position": { "x": 4, @@ -3055,7 +3055,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 4, @@ -3078,7 +3078,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 3, @@ -3101,7 +3101,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 3, @@ -3124,7 +3124,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 4, @@ -3147,7 +3147,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1641, + "noteOrder": 1632, "time": 0.17269329529186117, "position": { "x": 7, @@ -3170,7 +3170,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1665, + "noteOrder": 1656, "time": 0.175232902575565, "position": { "x": 7, @@ -3193,7 +3193,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1665, + "noteOrder": 1656, "time": 0.175232902575565, "position": { "x": 6, @@ -3216,7 +3216,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 6, @@ -3239,7 +3239,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 5, @@ -3262,7 +3262,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1695.0, + "noteOrder": 1686.0, "time": 0.17777250985926885, "position": { "x": 5, @@ -3285,7 +3285,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 7, @@ -3308,7 +3308,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1713, + "noteOrder": 1704, "time": 0.18031211714297268, "position": { "x": 7, @@ -3331,7 +3331,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1713, + "noteOrder": 1704, "time": 0.18031211714297268, "position": { "x": 6, @@ -3354,7 +3354,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 6, @@ -3377,7 +3377,7 @@ { "lineGroupId": 40, "indexInLine": 5, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 5, @@ -3400,7 +3400,7 @@ { "lineGroupId": 40, "indexInLine": 6, - "noteOrder": 1743.0, + "noteOrder": 1734.0, "time": 0.18285172442667655, "position": { "x": 5, @@ -3423,7 +3423,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 7, @@ -3446,7 +3446,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1761, + "noteOrder": 1752, "time": 0.18539133171038036, "position": { "x": 7, @@ -3469,7 +3469,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1761, + "noteOrder": 1752, "time": 0.18539133171038036, "position": { "x": 6, @@ -3492,7 +3492,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 6, @@ -3515,7 +3515,7 @@ { "lineGroupId": 41, "indexInLine": 5, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 5, @@ -3538,7 +3538,7 @@ { "lineGroupId": 41, "indexInLine": 6, - "noteOrder": 1791.0, + "noteOrder": 1782.0, "time": 0.18793093899408422, "position": { "x": 5, @@ -3561,7 +3561,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 7, @@ -3584,7 +3584,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1810, + "noteOrder": 1800, "time": 0.19047054627778806, "position": { "x": 7, @@ -3607,7 +3607,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1810, + "noteOrder": 1800, "time": 0.19047054627778806, "position": { "x": 6, @@ -3630,7 +3630,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 6, @@ -3653,7 +3653,7 @@ { "lineGroupId": 42, "indexInLine": 5, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 5, @@ -3676,7 +3676,7 @@ { "lineGroupId": 42, "indexInLine": 6, - "noteOrder": 1840.0, + "noteOrder": 1830.0, "time": 0.19301015356149187, "position": { "x": 5, @@ -3699,7 +3699,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2027, + "noteOrder": 2016, "time": 0.2133270118311226, "position": { "x": 3, @@ -3722,7 +3722,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 3, @@ -3745,7 +3745,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 4, @@ -3768,7 +3768,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 4, @@ -3791,7 +3791,7 @@ { "lineGroupId": 51, "indexInLine": 5, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 5, @@ -3814,7 +3814,7 @@ { "lineGroupId": 51, "indexInLine": 6, - "noteOrder": 2081.0, + "noteOrder": 2070.0, "time": 0.21840622639853027, "position": { "x": 5, @@ -3837,7 +3837,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 3, @@ -3860,7 +3860,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 3, @@ -3883,7 +3883,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 4, @@ -3906,7 +3906,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 4, @@ -3929,7 +3929,7 @@ { "lineGroupId": 52, "indexInLine": 5, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 5, @@ -3952,7 +3952,7 @@ { "lineGroupId": 52, "indexInLine": 6, - "noteOrder": 2129.0, + "noteOrder": 2118.0, "time": 0.22348544096593798, "position": { "x": 5, @@ -3975,7 +3975,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 3, @@ -3998,7 +3998,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2147, + "noteOrder": 2136, "time": 0.2260250482496418, "position": { "x": 3, @@ -4021,7 +4021,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 2147, + "noteOrder": 2136, "time": 0.2260250482496418, "position": { "x": 4, @@ -4044,7 +4044,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 4, @@ -4067,7 +4067,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 5, @@ -4090,7 +4090,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 2178.0, + "noteOrder": 2166.0, "time": 0.22856465553334565, "position": { "x": 5, @@ -4113,7 +4113,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 3, @@ -4136,7 +4136,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2196, + "noteOrder": 2184, "time": 0.23110426281704952, "position": { "x": 3, @@ -4159,7 +4159,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 2196, + "noteOrder": 2184, "time": 0.23110426281704952, "position": { "x": 4, @@ -4182,7 +4182,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 4, @@ -4205,7 +4205,7 @@ { "lineGroupId": 54, "indexInLine": 5, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 5, @@ -4228,7 +4228,7 @@ { "lineGroupId": 54, "indexInLine": 6, - "noteOrder": 2226.0, + "noteOrder": 2214.0, "time": 0.23364387010075333, "position": { "x": 5, @@ -4251,7 +4251,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2413, + "noteOrder": 2400, "time": 0.2539607283703841, "position": { "x": 3, @@ -4274,7 +4274,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 5, @@ -4297,7 +4297,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 3, @@ -4320,7 +4320,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 6, @@ -4343,7 +4343,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2654, + "noteOrder": 2640, "time": 0.27935680120742246, "position": { "x": 6, @@ -4366,7 +4366,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 3, @@ -4389,7 +4389,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2751, + "noteOrder": 2736, "time": 0.2895152303422378, "position": { "x": 3, @@ -4412,7 +4412,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 3, @@ -4435,7 +4435,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 5, @@ -4458,7 +4458,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3185, + "noteOrder": 3168, "time": 0.335228161448907, "position": { "x": 7, @@ -4481,7 +4481,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 5, @@ -4504,7 +4504,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 7, @@ -4527,7 +4527,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 3, @@ -4550,7 +4550,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 5, @@ -4573,7 +4573,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 3, @@ -4596,7 +4596,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 7, @@ -4619,7 +4619,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 5, @@ -4642,7 +4642,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 7, @@ -4665,7 +4665,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 3, @@ -4688,7 +4688,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 5, @@ -4711,7 +4711,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 3, @@ -4734,7 +4734,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 6, @@ -4757,7 +4757,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 4, @@ -4780,7 +4780,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 6, @@ -4803,7 +4803,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 4, @@ -4826,7 +4826,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 6, @@ -4849,7 +4849,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 4, @@ -4872,7 +4872,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 6, @@ -4895,7 +4895,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 4, @@ -4918,7 +4918,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 6, @@ -4941,7 +4941,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 4, @@ -4964,7 +4964,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 6, @@ -4987,7 +4987,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 7, @@ -5010,7 +5010,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3981, + "noteOrder": 3960, "time": 0.4190352018111337, "position": { "x": 7, @@ -5033,7 +5033,7 @@ { "lineGroupId": 97, "indexInLine": 3, - "noteOrder": 3981, + "noteOrder": 3960, "time": 0.4190352018111337, "position": { "x": 6, @@ -5056,7 +5056,7 @@ { "lineGroupId": 97, "indexInLine": 4, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 6, @@ -5079,7 +5079,7 @@ { "lineGroupId": 97, "indexInLine": 5, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 5, @@ -5102,7 +5102,7 @@ { "lineGroupId": 97, "indexInLine": 6, - "noteOrder": 4011.0, + "noteOrder": 3990.0, "time": 0.4215748090948376, "position": { "x": 5, @@ -5125,7 +5125,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 7, @@ -5148,7 +5148,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 4008, "time": 0.4241144163785414, "position": { "x": 7, @@ -5171,7 +5171,7 @@ { "lineGroupId": 98, "indexInLine": 3, - "noteOrder": 4029, + "noteOrder": 4008, "time": 0.4241144163785414, "position": { "x": 6, @@ -5194,7 +5194,7 @@ { "lineGroupId": 98, "indexInLine": 4, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 6, @@ -5217,7 +5217,7 @@ { "lineGroupId": 98, "indexInLine": 5, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 5, @@ -5240,7 +5240,7 @@ { "lineGroupId": 98, "indexInLine": 6, - "noteOrder": 4060.0, + "noteOrder": 4038.0, "time": 0.4266540236622452, "position": { "x": 5, @@ -5263,7 +5263,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 7, @@ -5286,7 +5286,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 4078, + "noteOrder": 4056, "time": 0.42919363094594903, "position": { "x": 7, @@ -5309,7 +5309,7 @@ { "lineGroupId": 99, "indexInLine": 3, - "noteOrder": 4078, + "noteOrder": 4056, "time": 0.42919363094594903, "position": { "x": 6, @@ -5332,7 +5332,7 @@ { "lineGroupId": 99, "indexInLine": 4, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 6, @@ -5355,7 +5355,7 @@ { "lineGroupId": 99, "indexInLine": 5, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 5, @@ -5378,7 +5378,7 @@ { "lineGroupId": 99, "indexInLine": 6, - "noteOrder": 4108.0, + "noteOrder": 4086.0, "time": 0.4317332382296529, "position": { "x": 5, @@ -5401,7 +5401,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 7, @@ -5424,7 +5424,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 4126, + "noteOrder": 4104, "time": 0.43427284551335676, "position": { "x": 7, @@ -5447,7 +5447,7 @@ { "lineGroupId": 100, "indexInLine": 3, - "noteOrder": 4126, + "noteOrder": 4104, "time": 0.43427284551335676, "position": { "x": 6, @@ -5470,7 +5470,7 @@ { "lineGroupId": 100, "indexInLine": 4, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 6, @@ -5493,7 +5493,7 @@ { "lineGroupId": 100, "indexInLine": 5, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 5, @@ -5516,7 +5516,7 @@ { "lineGroupId": 100, "indexInLine": 6, - "noteOrder": 4156.0, + "noteOrder": 4134.0, "time": 0.43681245279706055, "position": { "x": 5, @@ -5539,7 +5539,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 7, @@ -5562,7 +5562,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 5, @@ -5585,7 +5585,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 4343, + "noteOrder": 4320, "time": 0.4571293110666913, "position": { "x": 3, @@ -5608,7 +5608,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 4367, + "noteOrder": 4344, "time": 0.45966891835039514, "position": { "x": 3, @@ -5631,7 +5631,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 4367, + "noteOrder": 4344, "time": 0.45966891835039514, "position": { "x": 4, @@ -5654,7 +5654,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 4, @@ -5677,7 +5677,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 5, @@ -5700,7 +5700,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 4397.0, + "noteOrder": 4374.0, "time": 0.46220852563409903, "position": { "x": 5, @@ -5723,7 +5723,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 3, @@ -5746,7 +5746,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4415, + "noteOrder": 4392, "time": 0.46474813291780287, "position": { "x": 3, @@ -5769,7 +5769,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 4415, + "noteOrder": 4392, "time": 0.46474813291780287, "position": { "x": 4, @@ -5792,7 +5792,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 4, @@ -5815,7 +5815,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 5, @@ -5838,7 +5838,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 4422.0, "time": 0.46728774020150665, "position": { "x": 5, @@ -5861,30 +5861,30 @@ { "lineGroupId": 107, "indexInLine": 1, + "noteOrder": 4416, + "time": 0.46728774020150665, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 12, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "isPlayAudio": false, + "postionOffset": null, + "isSliding": false + }, + { + "lineGroupId": 107, + "indexInLine": 2, "noteOrder": 4440, - "time": 0.46728774020150665, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 12, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "isPlayAudio": false, - "postionOffset": null, - "isSliding": false - }, - { - "lineGroupId": 107, - "indexInLine": 2, - "noteOrder": 4464, "time": 0.4698273474852105, "position": { "x": 3, @@ -5907,7 +5907,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 4464, + "noteOrder": 4440, "time": 0.4698273474852105, "position": { "x": 4, @@ -5930,7 +5930,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 4, @@ -5953,7 +5953,7 @@ { "lineGroupId": 107, "indexInLine": 5, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 5, @@ -5976,7 +5976,7 @@ { "lineGroupId": 107, "indexInLine": 6, - "noteOrder": 4494.0, + "noteOrder": 4470.0, "time": 0.4723669547689144, "position": { "x": 5, @@ -5999,7 +5999,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 3, @@ -6022,7 +6022,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 4512, + "noteOrder": 4488, "time": 0.4749065620526182, "position": { "x": 3, @@ -6045,7 +6045,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 4512, + "noteOrder": 4488, "time": 0.4749065620526182, "position": { "x": 4, @@ -6068,7 +6068,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 4, @@ -6091,7 +6091,7 @@ { "lineGroupId": 108, "indexInLine": 5, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 5, @@ -6114,7 +6114,7 @@ { "lineGroupId": 108, "indexInLine": 6, - "noteOrder": 4542.0, + "noteOrder": 4518.0, "time": 0.477446169336322, "position": { "x": 5, @@ -6137,7 +6137,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 3, @@ -6160,7 +6160,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 4681, + "noteOrder": 4656, "time": 0.4926838130385451, "position": { "x": 5, @@ -6183,7 +6183,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 4729, + "noteOrder": 4704, "time": 0.49776302760595276, "position": { "x": 7, @@ -6206,7 +6206,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 4777, + "noteOrder": 4752, "time": 0.5028422421733605, "position": { "x": 7, @@ -6229,7 +6229,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 4826, + "noteOrder": 4800, "time": 0.5079214567407682, "position": { "x": 4, @@ -6252,7 +6252,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 4, @@ -6275,7 +6275,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 4922, + "noteOrder": 4896, "time": 0.5180798858755835, "position": { "x": 6, @@ -6298,7 +6298,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 4970, + "noteOrder": 4944, "time": 0.5231591004429912, "position": { "x": 6, @@ -6321,7 +6321,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 5019, + "noteOrder": 4992, "time": 0.5282383150103989, "position": { "x": 3, @@ -6344,7 +6344,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 3, @@ -6367,7 +6367,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 5405, + "noteOrder": 5376, "time": 0.5688720315496604, "position": { "x": 3, @@ -6390,7 +6390,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 5598, + "noteOrder": 5568, "time": 0.5891888898192911, "position": { "x": 3, @@ -6413,7 +6413,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 5694, + "noteOrder": 5664, "time": 0.5993473189541064, "position": { "x": 3, @@ -6436,7 +6436,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 5, @@ -6459,7 +6459,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 3, @@ -6482,7 +6482,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 5, @@ -6505,7 +6505,7 @@ { "lineGroupId": 136, "indexInLine": 5, - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 3, @@ -6528,7 +6528,7 @@ { "lineGroupId": 136, "indexInLine": 6, - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 5, @@ -6551,7 +6551,7 @@ { "lineGroupId": 136, "indexInLine": 7, - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 3, @@ -6574,7 +6574,7 @@ { "lineGroupId": 136, "indexInLine": 8, - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 5, @@ -6597,7 +6597,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 6080, + "noteOrder": 6048, "time": 0.6399810354933678, "position": { "x": 7, @@ -6620,7 +6620,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 5, @@ -6643,7 +6643,7 @@ { "lineGroupId": 144, "indexInLine": 3, - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 7, @@ -6666,7 +6666,7 @@ { "lineGroupId": 144, "indexInLine": 4, - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 5, @@ -6689,7 +6689,7 @@ { "lineGroupId": 144, "indexInLine": 5, - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 7, @@ -6712,7 +6712,7 @@ { "lineGroupId": 144, "indexInLine": 6, - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 5, @@ -6735,7 +6735,7 @@ { "lineGroupId": 144, "indexInLine": 7, - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 7, @@ -6758,7 +6758,7 @@ { "lineGroupId": 144, "indexInLine": 8, - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 5, @@ -6781,7 +6781,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 6466, + "noteOrder": 6432, "time": 0.6806147520326293, "position": { "x": 7, @@ -6804,7 +6804,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 5, @@ -6827,7 +6827,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 7, @@ -6850,7 +6850,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 4, @@ -6873,7 +6873,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 6708, + "noteOrder": 6672, "time": 0.7060108248696677, "position": { "x": 4, @@ -6896,7 +6896,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 6756, + "noteOrder": 6720, "time": 0.7110900394370754, "position": { "x": 7, @@ -6919,7 +6919,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 7, @@ -6942,7 +6942,7 @@ { "lineGroupId": 160, "indexInLine": 1, - "noteOrder": 6852, + "noteOrder": 6816, "time": 0.7212484685718907, "position": { "x": 7, @@ -6965,7 +6965,7 @@ { "lineGroupId": 160, "indexInLine": 2, - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 5, @@ -6988,7 +6988,7 @@ { "lineGroupId": 169, "indexInLine": 1, - "noteOrder": 7190, + "noteOrder": 7152, "time": 0.7568029705437445, "position": { "x": 6, @@ -7011,7 +7011,7 @@ { "lineGroupId": 169, "indexInLine": 2, - "noteOrder": 7238, + "noteOrder": 7200, "time": 0.7618821851111522, "position": { "x": 6, @@ -7034,7 +7034,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 7721, + "noteOrder": 7680, "time": 0.812674330785229, "position": { "x": 3, @@ -7057,7 +7057,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 7769, + "noteOrder": 7728, "time": 0.8177535453526367, "position": { "x": 4, @@ -7080,7 +7080,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 7818, + "noteOrder": 7776, "time": 0.8228327599200443, "position": { "x": 7, @@ -7103,7 +7103,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 7866, + "noteOrder": 7824, "time": 0.8279119744874521, "position": { "x": 6, @@ -7126,7 +7126,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 7914, + "noteOrder": 7872, "time": 0.8329911890548597, "position": { "x": 2, @@ -7149,7 +7149,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 7962, + "noteOrder": 7920, "time": 0.8380704036222674, "position": { "x": 4, @@ -7172,7 +7172,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 8011, + "noteOrder": 7968, "time": 0.8431496181896752, "position": { "x": 8, @@ -7195,7 +7195,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 8059, + "noteOrder": 8016, "time": 0.8482288327570828, "position": { "x": 6, @@ -7218,7 +7218,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 8107, + "noteOrder": 8064, "time": 0.8533080473244904, "position": { "x": 7, @@ -7241,7 +7241,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 7, @@ -7264,7 +7264,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 8107, + "noteOrder": 8064, "time": 0.8533080473244904, "position": { "x": 3, @@ -7287,7 +7287,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 3, @@ -7310,7 +7310,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 8300, + "noteOrder": 8256, "time": 0.8736249055941211, "position": { "x": 7, @@ -7333,7 +7333,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 8324, + "noteOrder": 8280, "time": 0.876164512877825, "position": { "x": 7, @@ -7356,7 +7356,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 8324, + "noteOrder": 8280, "time": 0.876164512877825, "position": { "x": 6, @@ -7379,7 +7379,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 6, @@ -7402,7 +7402,7 @@ { "lineGroupId": 193, "indexInLine": 5, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 5, @@ -7425,7 +7425,7 @@ { "lineGroupId": 193, "indexInLine": 6, - "noteOrder": 8354.0, + "noteOrder": 8310.0, "time": 0.8787041201615289, "position": { "x": 5, @@ -7448,7 +7448,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 7, @@ -7471,7 +7471,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 8373, + "noteOrder": 8328, "time": 0.8812437274452327, "position": { "x": 7, @@ -7494,7 +7494,7 @@ { "lineGroupId": 194, "indexInLine": 3, - "noteOrder": 8373, + "noteOrder": 8328, "time": 0.8812437274452327, "position": { "x": 6, @@ -7517,7 +7517,7 @@ { "lineGroupId": 194, "indexInLine": 4, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 6, @@ -7540,7 +7540,7 @@ { "lineGroupId": 194, "indexInLine": 5, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 5, @@ -7563,7 +7563,7 @@ { "lineGroupId": 194, "indexInLine": 6, - "noteOrder": 8403.0, + "noteOrder": 8358.0, "time": 0.8837833347289366, "position": { "x": 5, @@ -7586,7 +7586,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 7, @@ -7609,7 +7609,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 6, @@ -7632,7 +7632,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 8493, + "noteOrder": 8448, "time": 0.8939417638637519, "position": { "x": 3, @@ -7655,7 +7655,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 8517, + "noteOrder": 8472, "time": 0.8964813711474557, "position": { "x": 3, @@ -7678,7 +7678,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 8517, + "noteOrder": 8472, "time": 0.8964813711474557, "position": { "x": 4, @@ -7701,7 +7701,7 @@ { "lineGroupId": 197, "indexInLine": 4, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 4, @@ -7724,7 +7724,7 @@ { "lineGroupId": 197, "indexInLine": 5, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 5, @@ -7747,7 +7747,7 @@ { "lineGroupId": 197, "indexInLine": 6, - "noteOrder": 8547.0, + "noteOrder": 8502.0, "time": 0.8990209784311596, "position": { "x": 5, @@ -7770,7 +7770,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 3, @@ -7793,7 +7793,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 8566, + "noteOrder": 8520, "time": 0.9015605857148635, "position": { "x": 3, @@ -7816,7 +7816,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 8566, + "noteOrder": 8520, "time": 0.9015605857148635, "position": { "x": 4, @@ -7839,7 +7839,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 4, @@ -7862,7 +7862,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 5, @@ -7885,7 +7885,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 8596.0, + "noteOrder": 8550.0, "time": 0.9041001929985673, "position": { "x": 5, @@ -7908,7 +7908,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 3, @@ -7931,7 +7931,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 4, @@ -7954,7 +7954,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 9120, + "noteOrder": 9072, "time": 0.9599715532400518, "position": { "x": 7, @@ -7977,7 +7977,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 9241, + "noteOrder": 9192, "time": 0.972669589658571, "position": { "x": 6, @@ -8012,7 +8012,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 188, + "BPM": 187, "NPS": "3.08", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b.json index e472a9f6..ad39e62d 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3 difficulty_1b", "sphereNodes": [ { - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 8, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 528, "time": 0.055871360241484494, "position": { "x": 8, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 579, + "noteOrder": 576, "time": 0.060950574808892176, "position": { "x": 5, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 624, "time": 0.06602978937629986, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 676, + "noteOrder": 672, "time": 0.07110900394370755, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 724, + "noteOrder": 720, "time": 0.07618821851111522, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 768, "time": 0.08126743307852291, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 820, + "noteOrder": 816, "time": 0.08634664764593059, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 869, + "noteOrder": 864, "time": 0.09142586221333827, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 888, "time": 0.09396546949704211, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 912, "time": 0.09650507678074594, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 936, "time": 0.09904468406444977, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 965, + "noteOrder": 960, "time": 0.10158429134815362, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 984, "time": 0.10412389863185746, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1008, "time": 0.1066635059155613, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1032, "time": 0.10920311319926514, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1062, + "noteOrder": 1056, "time": 0.11174272048296899, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1086, + "noteOrder": 1080, "time": 0.11428232776667283, "position": { "x": 2, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1104, "time": 0.11682193505037666, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1128, "time": 0.1193615423340805, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1152, "time": 0.12190114961778435, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1176, "time": 0.12444075690148819, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1200, "time": 0.12698036418519204, "position": { "x": 8, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1224, "time": 0.12951997146889588, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1296, "time": 0.13713879332000742, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1344, "time": 0.1422180078874151, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1488, "time": 0.15745565158963815, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1872, "time": 0.19808936812889955, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1920, "time": 0.20316858269630725, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2823, + "noteOrder": 2808, "time": 0.2971340521933493, "position": { "x": 8, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2832, "time": 0.2996736594770532, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2880, "time": 0.3047528740444609, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2920, + "noteOrder": 2904, "time": 0.3072924813281647, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2992, + "noteOrder": 2976, "time": 0.3149113031792763, "position": { "x": 2, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3000, "time": 0.3174509104629801, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3024, "time": 0.3199905177466839, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 3168, "time": 0.335228161448907, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3499, + "noteOrder": 3480, "time": 0.3682430561370569, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4176, "time": 0.4418916673644683, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4777, + "noteOrder": 4752, "time": 0.5028422421733605, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4826, + "noteOrder": 4800, "time": 0.5079214567407682, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4944, "time": 0.5231591004429912, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5019, + "noteOrder": 4992, "time": 0.5282383150103989, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7383, + "noteOrder": 7344, "time": 0.7771198288133753, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7480, + "noteOrder": 7440, "time": 0.7872782579481906, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7576, + "noteOrder": 7536, "time": 0.797436687083006, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7673, + "noteOrder": 7632, "time": 0.8075951162178213, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7769, + "noteOrder": 7728, "time": 0.8177535453526367, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7866, + "noteOrder": 7824, "time": 0.8279119744874521, "position": { "x": 4, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7962, + "noteOrder": 7920, "time": 0.8380704036222674, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 8059, + "noteOrder": 8016, "time": 0.8482288327570828, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 4, @@ -2127,7 +2127,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 193, + "noteOrder": 192, "time": 0.020316858269630728, "position": { "x": 4, @@ -2150,7 +2150,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 4, @@ -2173,7 +2173,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 6, @@ -2196,7 +2196,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 6, @@ -2219,7 +2219,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 4, @@ -2242,7 +2242,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 4, @@ -2265,7 +2265,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1641, + "noteOrder": 1632, "time": 0.17269329529186117, "position": { "x": 2, @@ -2288,7 +2288,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 5, @@ -2311,7 +2311,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 8, @@ -2334,7 +2334,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 5, @@ -2357,7 +2357,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 2027, + "noteOrder": 2016, "time": 0.2133270118311226, "position": { "x": 2, @@ -2380,7 +2380,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 2, @@ -2403,7 +2403,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 4, @@ -2426,7 +2426,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 2057.0, + "noteOrder": 2046.0, "time": 0.21586661911482646, "position": { "x": 4, @@ -2449,7 +2449,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 2, @@ -2472,7 +2472,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 2, @@ -2495,7 +2495,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 4, @@ -2518,7 +2518,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 2105.0, + "noteOrder": 2094.0, "time": 0.22094583368223414, "position": { "x": 4, @@ -2541,7 +2541,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 2, @@ -2564,7 +2564,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 4, @@ -2587,7 +2587,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 8, @@ -2610,7 +2610,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 8, @@ -2633,7 +2633,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 6, @@ -2656,7 +2656,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 2238.0, "time": 0.2361834773844572, "position": { "x": 6, @@ -2679,7 +2679,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2268, + "noteOrder": 2256, "time": 0.238723084668161, "position": { "x": 8, @@ -2702,7 +2702,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 8, @@ -2725,7 +2725,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 6, @@ -2748,7 +2748,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 2298.0, + "noteOrder": 2286.0, "time": 0.24126269195186487, "position": { "x": 6, @@ -2771,7 +2771,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2316, + "noteOrder": 2304, "time": 0.2438022992355687, "position": { "x": 8, @@ -2794,7 +2794,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 6, @@ -2817,7 +2817,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2413, + "noteOrder": 2400, "time": 0.2539607283703841, "position": { "x": 3, @@ -2840,7 +2840,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 3, @@ -2863,7 +2863,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 4, @@ -2886,7 +2886,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 4, @@ -2909,7 +2909,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 6, @@ -2932,7 +2932,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 6, @@ -2955,7 +2955,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 8, @@ -2978,7 +2978,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 8, @@ -3001,7 +3001,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 7, @@ -3024,7 +3024,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 7, @@ -3047,7 +3047,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 3, @@ -3070,7 +3070,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 3, @@ -3093,7 +3093,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 7, @@ -3116,7 +3116,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 7, @@ -3139,7 +3139,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 3, @@ -3162,7 +3162,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 3, @@ -3185,7 +3185,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 4343, + "noteOrder": 4320, "time": 0.4571293110666913, "position": { "x": 3, @@ -3208,7 +3208,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 4, @@ -3231,7 +3231,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 7, @@ -3254,7 +3254,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 6, @@ -3277,7 +3277,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 4729, + "noteOrder": 4704, "time": 0.49776302760595276, "position": { "x": 8, @@ -3300,7 +3300,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 5, @@ -3323,7 +3323,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4922, + "noteOrder": 4896, "time": 0.5180798858755835, "position": { "x": 2, @@ -3346,7 +3346,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 5, @@ -3369,7 +3369,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 5115, + "noteOrder": 5088, "time": 0.5383967441452142, "position": { "x": 7, @@ -3392,7 +3392,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 7, @@ -3415,7 +3415,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 5184, "time": 0.5485551732800297, "position": { "x": 3, @@ -3438,7 +3438,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 3, @@ -3461,7 +3461,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 5694, + "noteOrder": 5664, "time": 0.5993473189541064, "position": { "x": 2, @@ -3484,7 +3484,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 5718, + "noteOrder": 5688, "time": 0.6018869262378101, "position": { "x": 2, @@ -3507,7 +3507,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 5718, + "noteOrder": 5688, "time": 0.6018869262378101, "position": { "x": 4, @@ -3530,7 +3530,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 5724.0, + "noteOrder": 5694.0, "time": 0.6018869262378101, "position": { "x": 4, @@ -3553,7 +3553,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 2, @@ -3576,7 +3576,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 5767, + "noteOrder": 5736, "time": 0.6069661408052179, "position": { "x": 2, @@ -3599,7 +3599,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 5767, + "noteOrder": 5736, "time": 0.6069661408052179, "position": { "x": 4, @@ -3622,7 +3622,7 @@ { "lineGroupId": 122, "indexInLine": 4, - "noteOrder": 5773.0, + "noteOrder": 5742.0, "time": 0.6069661408052179, "position": { "x": 4, @@ -3645,7 +3645,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 2, @@ -3668,7 +3668,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 4, @@ -3691,7 +3691,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 8, @@ -3714,7 +3714,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 5911, + "noteOrder": 5880, "time": 0.622203784507441, "position": { "x": 8, @@ -3737,7 +3737,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 5911, + "noteOrder": 5880, "time": 0.622203784507441, "position": { "x": 6, @@ -3760,7 +3760,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 5917.0, + "noteOrder": 5886.0, "time": 0.622203784507441, "position": { "x": 6, @@ -3783,7 +3783,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 8, @@ -3806,7 +3806,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 5960, + "noteOrder": 5928, "time": 0.6272829990748486, "position": { "x": 8, @@ -3829,7 +3829,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 5960, + "noteOrder": 5928, "time": 0.6272829990748486, "position": { "x": 6, @@ -3852,7 +3852,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 5966.0, + "noteOrder": 5934.0, "time": 0.6272829990748486, "position": { "x": 6, @@ -3875,7 +3875,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 8, @@ -3898,7 +3898,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 6, @@ -3921,7 +3921,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 6080, + "noteOrder": 6048, "time": 0.6399810354933678, "position": { "x": 2, @@ -3944,7 +3944,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 6104, + "noteOrder": 6072, "time": 0.6425206427770717, "position": { "x": 2, @@ -3967,7 +3967,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 6104, + "noteOrder": 6072, "time": 0.6425206427770717, "position": { "x": 4, @@ -3990,7 +3990,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 6110.0, + "noteOrder": 6078.0, "time": 0.6425206427770717, "position": { "x": 4, @@ -4013,7 +4013,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 2, @@ -4036,7 +4036,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 6153, + "noteOrder": 6120, "time": 0.6475998573444793, "position": { "x": 2, @@ -4059,7 +4059,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 6153, + "noteOrder": 6120, "time": 0.6475998573444793, "position": { "x": 4, @@ -4082,7 +4082,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 6159.0, + "noteOrder": 6126.0, "time": 0.6475998573444793, "position": { "x": 4, @@ -4105,7 +4105,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 2, @@ -4128,7 +4128,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 4, @@ -4151,7 +4151,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 7, @@ -4174,7 +4174,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 6297, + "noteOrder": 6264, "time": 0.6628375010467024, "position": { "x": 7, @@ -4197,7 +4197,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 6297, + "noteOrder": 6264, "time": 0.6628375010467024, "position": { "x": 6, @@ -4220,7 +4220,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 6303.0, + "noteOrder": 6270.0, "time": 0.6628375010467024, "position": { "x": 6, @@ -4243,7 +4243,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 3, @@ -4266,7 +4266,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 6346, + "noteOrder": 6312, "time": 0.66791671561411, "position": { "x": 3, @@ -4289,7 +4289,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 6346, + "noteOrder": 6312, "time": 0.66791671561411, "position": { "x": 4, @@ -4312,7 +4312,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 6352.0, + "noteOrder": 6318.0, "time": 0.66791671561411, "position": { "x": 4, @@ -4335,7 +4335,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 6, @@ -4358,7 +4358,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 6, @@ -4381,7 +4381,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 6466, + "noteOrder": 6432, "time": 0.6806147520326293, "position": { "x": 8, @@ -4404,7 +4404,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 6491, + "noteOrder": 6456, "time": 0.6831543593163331, "position": { "x": 8, @@ -4427,7 +4427,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 6491, + "noteOrder": 6456, "time": 0.6831543593163331, "position": { "x": 6, @@ -4450,7 +4450,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 6497.0, + "noteOrder": 6462.0, "time": 0.6831543593163331, "position": { "x": 6, @@ -4473,7 +4473,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 6515, + "noteOrder": 6480, "time": 0.685693966600037, "position": { "x": 8, @@ -4496,7 +4496,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 6539, + "noteOrder": 6504, "time": 0.6882335738837408, "position": { "x": 8, @@ -4519,7 +4519,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 6539, + "noteOrder": 6504, "time": 0.6882335738837408, "position": { "x": 6, @@ -4542,7 +4542,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 6545.0, + "noteOrder": 6510.0, "time": 0.6882335738837408, "position": { "x": 6, @@ -4565,7 +4565,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 8, @@ -4588,7 +4588,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 6, @@ -4611,7 +4611,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 2, @@ -4634,7 +4634,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 6684, + "noteOrder": 6648, "time": 0.7034712175859638, "position": { "x": 2, @@ -4657,7 +4657,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 6684, + "noteOrder": 6648, "time": 0.7034712175859638, "position": { "x": 4, @@ -4680,7 +4680,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 6690.0, + "noteOrder": 6654.0, "time": 0.7034712175859638, "position": { "x": 4, @@ -4703,7 +4703,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 6708, + "noteOrder": 6672, "time": 0.7060108248696677, "position": { "x": 2, @@ -4726,7 +4726,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 6732, + "noteOrder": 6696, "time": 0.7085504321533715, "position": { "x": 2, @@ -4749,7 +4749,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 6732, + "noteOrder": 6696, "time": 0.7085504321533715, "position": { "x": 4, @@ -4772,7 +4772,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 6738.0, + "noteOrder": 6702.0, "time": 0.7085504321533715, "position": { "x": 4, @@ -4795,7 +4795,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 6756, + "noteOrder": 6720, "time": 0.7110900394370754, "position": { "x": 2, @@ -4818,7 +4818,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 4, @@ -4841,7 +4841,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 6852, + "noteOrder": 6816, "time": 0.7212484685718907, "position": { "x": 8, @@ -4864,7 +4864,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 6877, + "noteOrder": 6840, "time": 0.7237880758555946, "position": { "x": 8, @@ -4887,7 +4887,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 6877, + "noteOrder": 6840, "time": 0.7237880758555946, "position": { "x": 6, @@ -4910,7 +4910,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 6883.0, + "noteOrder": 6846.0, "time": 0.7237880758555946, "position": { "x": 6, @@ -4933,7 +4933,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 6901, + "noteOrder": 6864, "time": 0.7263276831392984, "position": { "x": 8, @@ -4956,7 +4956,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 6925, + "noteOrder": 6888, "time": 0.7288672904230022, "position": { "x": 8, @@ -4979,7 +4979,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 6925, + "noteOrder": 6888, "time": 0.7288672904230022, "position": { "x": 6, @@ -5002,7 +5002,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 6931.0, + "noteOrder": 6894.0, "time": 0.7288672904230022, "position": { "x": 6, @@ -5025,7 +5025,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 6949, + "noteOrder": 6912, "time": 0.7314068977067062, "position": { "x": 8, @@ -5048,7 +5048,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 6973, + "noteOrder": 6936, "time": 0.7339465049904099, "position": { "x": 8, @@ -5071,7 +5071,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 6973, + "noteOrder": 6936, "time": 0.7339465049904099, "position": { "x": 6, @@ -5094,7 +5094,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 6979.0, + "noteOrder": 6942.0, "time": 0.7339465049904099, "position": { "x": 6, @@ -5117,7 +5117,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 8, @@ -5140,7 +5140,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 7021, + "noteOrder": 6984, "time": 0.7390257195578177, "position": { "x": 8, @@ -5163,7 +5163,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 7021, + "noteOrder": 6984, "time": 0.7390257195578177, "position": { "x": 6, @@ -5186,7 +5186,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 7027.0, + "noteOrder": 6990.0, "time": 0.7390257195578177, "position": { "x": 6, @@ -5209,7 +5209,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 7045, + "noteOrder": 7008, "time": 0.7415653268415214, "position": { "x": 7, @@ -5232,7 +5232,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 7094, + "noteOrder": 7056, "time": 0.7466445414089292, "position": { "x": 7, @@ -5255,7 +5255,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 7142, + "noteOrder": 7104, "time": 0.7517237559763369, "position": { "x": 4, @@ -5278,7 +5278,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 7190, + "noteOrder": 7152, "time": 0.7568029705437445, "position": { "x": 4, @@ -5301,7 +5301,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 7335, + "noteOrder": 7296, "time": 0.7720406142459675, "position": { "x": 6, @@ -5324,7 +5324,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 6, @@ -5347,7 +5347,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 4, @@ -5370,7 +5370,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 4, @@ -5393,7 +5393,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 6, @@ -5416,7 +5416,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 6, @@ -5439,7 +5439,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 4, @@ -5462,7 +5462,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 7721, + "noteOrder": 7680, "time": 0.812674330785229, "position": { "x": 4, @@ -5485,7 +5485,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 8155, + "noteOrder": 8112, "time": 0.8583872618918981, "position": { "x": 6, @@ -5508,7 +5508,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 6, @@ -5531,7 +5531,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 8300, + "noteOrder": 8256, "time": 0.8736249055941211, "position": { "x": 2, @@ -5554,7 +5554,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 5, @@ -5577,7 +5577,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 8493, + "noteOrder": 8448, "time": 0.8939417638637519, "position": { "x": 8, @@ -5600,7 +5600,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 5, @@ -5623,7 +5623,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 8686, + "noteOrder": 8640, "time": 0.9142586221333826, "position": { "x": 3, @@ -5646,7 +5646,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 3, @@ -5669,7 +5669,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 4, @@ -5692,7 +5692,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 8716.0, + "noteOrder": 8670.0, "time": 0.9167982294170866, "position": { "x": 4, @@ -5715,7 +5715,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 8734, + "noteOrder": 8688, "time": 0.9193378367007903, "position": { "x": 7, @@ -5738,7 +5738,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 8759, + "noteOrder": 8712, "time": 0.9218774439844942, "position": { "x": 7, @@ -5761,7 +5761,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 8759, + "noteOrder": 8712, "time": 0.9218774439844942, "position": { "x": 6, @@ -5784,7 +5784,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 8765.0, + "noteOrder": 8718.0, "time": 0.9218774439844942, "position": { "x": 6, @@ -5807,7 +5807,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 8783, + "noteOrder": 8736, "time": 0.9244170512681981, "position": { "x": 3, @@ -5830,7 +5830,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 3, @@ -5853,7 +5853,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 4, @@ -5876,7 +5876,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 8813.0, + "noteOrder": 8766.0, "time": 0.9269566585519018, "position": { "x": 4, @@ -5899,7 +5899,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 8831, + "noteOrder": 8784, "time": 0.9294962658356057, "position": { "x": 7, @@ -5922,7 +5922,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 8855, + "noteOrder": 8808, "time": 0.9320358731193095, "position": { "x": 7, @@ -5945,7 +5945,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 8855, + "noteOrder": 8808, "time": 0.9320358731193095, "position": { "x": 6, @@ -5968,7 +5968,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 8861.0, + "noteOrder": 8814.0, "time": 0.9320358731193095, "position": { "x": 6, @@ -5991,7 +5991,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 8879, + "noteOrder": 8832, "time": 0.9345754804030133, "position": { "x": 3, @@ -6014,7 +6014,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 3, @@ -6037,7 +6037,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 4, @@ -6060,7 +6060,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 8909.0, + "noteOrder": 8862.0, "time": 0.9371150876867173, "position": { "x": 4, @@ -6083,7 +6083,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 8927, + "noteOrder": 8880, "time": 0.939654694970421, "position": { "x": 7, @@ -6106,7 +6106,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 8952, + "noteOrder": 8904, "time": 0.9421943022541249, "position": { "x": 7, @@ -6129,7 +6129,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 8952, + "noteOrder": 8904, "time": 0.9421943022541249, "position": { "x": 6, @@ -6152,7 +6152,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 8958.0, + "noteOrder": 8910.0, "time": 0.9421943022541249, "position": { "x": 6, @@ -6175,7 +6175,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 8976, + "noteOrder": 8928, "time": 0.9447339095378288, "position": { "x": 3, @@ -6198,7 +6198,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 3, @@ -6221,7 +6221,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 4, @@ -6244,7 +6244,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 9006.0, + "noteOrder": 8958.0, "time": 0.9472735168215325, "position": { "x": 4, @@ -6267,7 +6267,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 9024, + "noteOrder": 8976, "time": 0.9498131241052364, "position": { "x": 7, @@ -6290,7 +6290,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 9048, + "noteOrder": 9000, "time": 0.9523527313889403, "position": { "x": 7, @@ -6313,7 +6313,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 9048, + "noteOrder": 9000, "time": 0.9523527313889403, "position": { "x": 6, @@ -6336,7 +6336,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 9054.0, + "noteOrder": 9006.0, "time": 0.9523527313889403, "position": { "x": 6, @@ -6359,7 +6359,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 9120, + "noteOrder": 9072, "time": 0.9599715532400518, "position": { "x": 2, @@ -6382,7 +6382,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 9241, + "noteOrder": 9192, "time": 0.972669589658571, "position": { "x": 4, @@ -6405,7 +6405,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 9265, + "noteOrder": 9216, "time": 0.9752091969422748, "position": { "x": 4, @@ -6428,7 +6428,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 98.5, + "noteOrder": 97.5, "time": 0.010158429134815364, "position": { "x": 5, @@ -6456,7 +6456,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1256.5, + "noteOrder": 1249.5, "time": 0.13205957875259972, "position": { "x": 5, @@ -6484,7 +6484,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3089.5, + "noteOrder": 3073.5, "time": 0.32506973231409164, "position": { "x": 5, @@ -6512,7 +6512,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3149.0, + "noteOrder": 3132.0, "time": 0.33014894688149926, "position": { "x": 5, @@ -6540,7 +6540,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5320.0, + "noteOrder": 5292.0, "time": 0.5587136024148449, "position": { "x": 5, @@ -6568,7 +6568,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5406.5, + "noteOrder": 5377.5, "time": 0.5688720315496604, "position": { "x": 5, @@ -6596,7 +6596,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5502.5, + "noteOrder": 5473.5, "time": 0.5790304606844756, "position": { "x": 5, @@ -6624,7 +6624,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5599.5, + "noteOrder": 5569.5, "time": 0.5891888898192911, "position": { "x": 5, @@ -6652,7 +6652,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6419.5, + "noteOrder": 6385.5, "time": 0.6755355374652215, "position": { "x": 5, @@ -6680,7 +6680,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7095.5, + "noteOrder": 7057.5, "time": 0.7466445414089292, "position": { "x": 5, @@ -6708,7 +6708,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7191.5, + "noteOrder": 7153.5, "time": 0.7568029705437445, "position": { "x": 5, @@ -6736,7 +6736,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7722.5, + "noteOrder": 7681.5, "time": 0.812674330785229, "position": { "x": 5, @@ -6764,7 +6764,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7819.5, + "noteOrder": 7777.5, "time": 0.8228327599200443, "position": { "x": 5, @@ -6792,7 +6792,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7915.5, + "noteOrder": 7873.5, "time": 0.8329911890548597, "position": { "x": 5, @@ -6820,7 +6820,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8012.5, + "noteOrder": 7969.5, "time": 0.8431496181896752, "position": { "x": 5, @@ -6848,7 +6848,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8108.5, + "noteOrder": 8065.5, "time": 0.8533080473244904, "position": { "x": 5, @@ -6876,7 +6876,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8205.5, + "noteOrder": 8161.5, "time": 0.8634664764593059, "position": { "x": 5, @@ -6917,7 +6917,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 188, + "BPM": 187, "NPS": "2.45", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b_blockless.json index 008f967e..408ea4a2 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3 difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 8, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 531, + "noteOrder": 528, "time": 0.055871360241484494, "position": { "x": 8, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 579, + "noteOrder": 576, "time": 0.060950574808892176, "position": { "x": 5, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 627, + "noteOrder": 624, "time": 0.06602978937629986, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 676, + "noteOrder": 672, "time": 0.07110900394370755, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 724, + "noteOrder": 720, "time": 0.07618821851111522, "position": { "x": 7, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 772, + "noteOrder": 768, "time": 0.08126743307852291, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 820, + "noteOrder": 816, "time": 0.08634664764593059, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 869, + "noteOrder": 864, "time": 0.09142586221333827, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 893, + "noteOrder": 888, "time": 0.09396546949704211, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 917, + "noteOrder": 912, "time": 0.09650507678074594, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 941, + "noteOrder": 936, "time": 0.09904468406444977, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 965, + "noteOrder": 960, "time": 0.10158429134815362, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 989, + "noteOrder": 984, "time": 0.10412389863185746, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1013, + "noteOrder": 1008, "time": 0.1066635059155613, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1038, + "noteOrder": 1032, "time": 0.10920311319926514, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1062, + "noteOrder": 1056, "time": 0.11174272048296899, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1086, + "noteOrder": 1080, "time": 0.11428232776667283, "position": { "x": 2, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1110, + "noteOrder": 1104, "time": 0.11682193505037666, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1134, + "noteOrder": 1128, "time": 0.1193615423340805, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1158, + "noteOrder": 1152, "time": 0.12190114961778435, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1182, + "noteOrder": 1176, "time": 0.12444075690148819, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1206, + "noteOrder": 1200, "time": 0.12698036418519204, "position": { "x": 8, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1231, + "noteOrder": 1224, "time": 0.12951997146889588, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1303, + "noteOrder": 1296, "time": 0.13713879332000742, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1344, "time": 0.1422180078874151, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1399, + "noteOrder": 1392, "time": 0.14729722245482277, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1448, + "noteOrder": 1440, "time": 0.15237643702223044, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1496, + "noteOrder": 1488, "time": 0.15745565158963815, "position": { "x": 3, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1544, + "noteOrder": 1536, "time": 0.16253486615704582, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1592, + "noteOrder": 1584, "time": 0.1676140807244535, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1689, + "noteOrder": 1680, "time": 0.17777250985926885, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1737, + "noteOrder": 1728, "time": 0.18285172442667655, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1882, + "noteOrder": 1872, "time": 0.19808936812889955, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1930, + "noteOrder": 1920, "time": 0.20316858269630725, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2823, + "noteOrder": 2808, "time": 0.2971340521933493, "position": { "x": 8, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2847, + "noteOrder": 2832, "time": 0.2996736594770532, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2895, + "noteOrder": 2880, "time": 0.3047528740444609, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2920, + "noteOrder": 2904, "time": 0.3072924813281647, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2944, + "noteOrder": 2928, "time": 0.30983208861186856, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2992, + "noteOrder": 2976, "time": 0.3149113031792763, "position": { "x": 2, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3016, + "noteOrder": 3000, "time": 0.3174509104629801, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3040, + "noteOrder": 3024, "time": 0.3199905177466839, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3185, + "noteOrder": 3168, "time": 0.335228161448907, "position": { "x": 3, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3233, + "noteOrder": 3216, "time": 0.34030737601631467, "position": { "x": 7, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3281, + "noteOrder": 3264, "time": 0.34538659058372234, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3330, + "noteOrder": 3312, "time": 0.35046580515113, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3378, + "noteOrder": 3360, "time": 0.3555450197185377, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3426, + "noteOrder": 3408, "time": 0.36062423428594537, "position": { "x": 7, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3474, + "noteOrder": 3456, "time": 0.3657034488533531, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3499, + "noteOrder": 3480, "time": 0.3682430561370569, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3523, + "noteOrder": 3504, "time": 0.3707826634207607, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3957, + "noteOrder": 3936, "time": 0.41649559452742985, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4005, + "noteOrder": 3984, "time": 0.4215748090948376, "position": { "x": 7, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 4032, "time": 0.4266540236622452, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4102, + "noteOrder": 4080, "time": 0.4317332382296529, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4150, + "noteOrder": 4128, "time": 0.43681245279706055, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4198, + "noteOrder": 4176, "time": 0.4418916673644683, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4247, + "noteOrder": 4224, "time": 0.44697088193187595, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4295, + "noteOrder": 4272, "time": 0.4520500964992836, "position": { "x": 5, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 4512, "time": 0.477446169336322, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4584, + "noteOrder": 4560, "time": 0.48252538390372973, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4633, + "noteOrder": 4608, "time": 0.4876045984711374, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4777, + "noteOrder": 4752, "time": 0.5028422421733605, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4826, + "noteOrder": 4800, "time": 0.5079214567407682, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4970, + "noteOrder": 4944, "time": 0.5231591004429912, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5019, + "noteOrder": 4992, "time": 0.5282383150103989, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 5, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7383, + "noteOrder": 7344, "time": 0.7771198288133753, "position": { "x": 7, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7480, + "noteOrder": 7440, "time": 0.7872782579481906, "position": { "x": 3, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7576, + "noteOrder": 7536, "time": 0.797436687083006, "position": { "x": 6, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7673, + "noteOrder": 7632, "time": 0.8075951162178213, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7769, + "noteOrder": 7728, "time": 0.8177535453526367, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7866, + "noteOrder": 7824, "time": 0.8279119744874521, "position": { "x": 4, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7962, + "noteOrder": 7920, "time": 0.8380704036222674, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 8059, + "noteOrder": 8016, "time": 0.8482288327570828, "position": { "x": 3, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 8348, + "noteOrder": 8304, "time": 0.8787041201615289, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 8397, + "noteOrder": 8352, "time": 0.8837833347289366, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 8541, + "noteOrder": 8496, "time": 0.8990209784311596, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 8590, + "noteOrder": 8544, "time": 0.9041001929985673, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 4, @@ -2127,7 +2127,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 193, + "noteOrder": 192, "time": 0.020316858269630728, "position": { "x": 4, @@ -2150,7 +2150,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 4, @@ -2173,7 +2173,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 290, + "noteOrder": 288, "time": 0.030475287404446088, "position": { "x": 6, @@ -2196,7 +2196,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 6, @@ -2219,7 +2219,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 386, + "noteOrder": 384, "time": 0.040633716539261455, "position": { "x": 4, @@ -2242,7 +2242,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 483, + "noteOrder": 480, "time": 0.05079214567407681, "position": { "x": 4, @@ -2265,7 +2265,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1641, + "noteOrder": 1632, "time": 0.17269329529186117, "position": { "x": 2, @@ -2288,7 +2288,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1785, + "noteOrder": 1776, "time": 0.18793093899408422, "position": { "x": 5, @@ -2311,7 +2311,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1834, + "noteOrder": 1824, "time": 0.19301015356149187, "position": { "x": 8, @@ -2334,7 +2334,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1979, + "noteOrder": 1968, "time": 0.20824779726371492, "position": { "x": 5, @@ -2357,7 +2357,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 2027, + "noteOrder": 2016, "time": 0.2133270118311226, "position": { "x": 2, @@ -2380,7 +2380,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 2, @@ -2403,7 +2403,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 2051, + "noteOrder": 2040, "time": 0.21586661911482646, "position": { "x": 4, @@ -2426,7 +2426,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 2057.0, + "noteOrder": 2046.0, "time": 0.21586661911482646, "position": { "x": 4, @@ -2449,7 +2449,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 2075, + "noteOrder": 2064, "time": 0.21840622639853027, "position": { "x": 2, @@ -2472,7 +2472,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 2, @@ -2495,7 +2495,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 2099, + "noteOrder": 2088, "time": 0.22094583368223414, "position": { "x": 4, @@ -2518,7 +2518,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 2105.0, + "noteOrder": 2094.0, "time": 0.22094583368223414, "position": { "x": 4, @@ -2541,7 +2541,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 2123, + "noteOrder": 2112, "time": 0.22348544096593798, "position": { "x": 2, @@ -2564,7 +2564,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 2172, + "noteOrder": 2160, "time": 0.22856465553334565, "position": { "x": 4, @@ -2587,7 +2587,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 2220, + "noteOrder": 2208, "time": 0.23364387010075333, "position": { "x": 8, @@ -2610,7 +2610,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 8, @@ -2633,7 +2633,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 2232, "time": 0.2361834773844572, "position": { "x": 6, @@ -2656,7 +2656,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 2238.0, "time": 0.2361834773844572, "position": { "x": 6, @@ -2679,7 +2679,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2268, + "noteOrder": 2256, "time": 0.238723084668161, "position": { "x": 8, @@ -2702,7 +2702,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 8, @@ -2725,7 +2725,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 2292, + "noteOrder": 2280, "time": 0.24126269195186487, "position": { "x": 6, @@ -2748,7 +2748,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 2298.0, + "noteOrder": 2286.0, "time": 0.24126269195186487, "position": { "x": 6, @@ -2771,7 +2771,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 2316, + "noteOrder": 2304, "time": 0.2438022992355687, "position": { "x": 8, @@ -2794,7 +2794,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 2365, + "noteOrder": 2352, "time": 0.24888151380297638, "position": { "x": 6, @@ -2817,7 +2817,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 2413, + "noteOrder": 2400, "time": 0.2539607283703841, "position": { "x": 3, @@ -2840,7 +2840,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 3, @@ -2863,7 +2863,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 2509, + "noteOrder": 2496, "time": 0.26411915750519943, "position": { "x": 4, @@ -2886,7 +2886,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 4, @@ -2909,7 +2909,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 2606, + "noteOrder": 2592, "time": 0.27427758664001484, "position": { "x": 6, @@ -2932,7 +2932,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 6, @@ -2955,7 +2955,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2688, "time": 0.2844360157748302, "position": { "x": 8, @@ -2978,7 +2978,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2799, + "noteOrder": 2784, "time": 0.29459444490964554, "position": { "x": 8, @@ -3001,7 +3001,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 3571, + "noteOrder": 3552, "time": 0.37586187798816845, "position": { "x": 7, @@ -3024,7 +3024,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 3619, + "noteOrder": 3600, "time": 0.3809410925555761, "position": { "x": 7, @@ -3047,7 +3047,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 3668, + "noteOrder": 3648, "time": 0.38602030712298374, "position": { "x": 3, @@ -3070,7 +3070,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 3716, + "noteOrder": 3696, "time": 0.39109952169039147, "position": { "x": 3, @@ -3093,7 +3093,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3764, + "noteOrder": 3744, "time": 0.3961787362577991, "position": { "x": 7, @@ -3116,7 +3116,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3812, + "noteOrder": 3792, "time": 0.4012579508252068, "position": { "x": 7, @@ -3139,7 +3139,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 3861, + "noteOrder": 3840, "time": 0.4063371653926145, "position": { "x": 3, @@ -3162,7 +3162,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 3909, + "noteOrder": 3888, "time": 0.41141637996002217, "position": { "x": 3, @@ -3185,7 +3185,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 4343, + "noteOrder": 4320, "time": 0.4571293110666913, "position": { "x": 3, @@ -3208,7 +3208,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 4391, + "noteOrder": 4368, "time": 0.46220852563409903, "position": { "x": 4, @@ -3231,7 +3231,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 4416, "time": 0.46728774020150665, "position": { "x": 7, @@ -3254,7 +3254,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 4488, + "noteOrder": 4464, "time": 0.4723669547689144, "position": { "x": 6, @@ -3277,7 +3277,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 4729, + "noteOrder": 4704, "time": 0.49776302760595276, "position": { "x": 8, @@ -3300,7 +3300,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 4874, + "noteOrder": 4848, "time": 0.5130006713081757, "position": { "x": 5, @@ -3323,7 +3323,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4922, + "noteOrder": 4896, "time": 0.5180798858755835, "position": { "x": 2, @@ -3346,7 +3346,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 5067, + "noteOrder": 5040, "time": 0.5333175295778065, "position": { "x": 5, @@ -3369,7 +3369,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 5115, + "noteOrder": 5088, "time": 0.5383967441452142, "position": { "x": 7, @@ -3392,7 +3392,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 5163, + "noteOrder": 5136, "time": 0.5434759587126219, "position": { "x": 7, @@ -3415,7 +3415,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 5212, + "noteOrder": 5184, "time": 0.5485551732800297, "position": { "x": 3, @@ -3438,7 +3438,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 5260, + "noteOrder": 5232, "time": 0.5536343878474372, "position": { "x": 3, @@ -3461,7 +3461,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 5694, + "noteOrder": 5664, "time": 0.5993473189541064, "position": { "x": 2, @@ -3484,7 +3484,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 5718, + "noteOrder": 5688, "time": 0.6018869262378101, "position": { "x": 2, @@ -3507,7 +3507,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 5718, + "noteOrder": 5688, "time": 0.6018869262378101, "position": { "x": 4, @@ -3530,7 +3530,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 5724.0, + "noteOrder": 5694.0, "time": 0.6018869262378101, "position": { "x": 4, @@ -3553,7 +3553,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 5743, + "noteOrder": 5712, "time": 0.6044265335215141, "position": { "x": 2, @@ -3576,7 +3576,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 5767, + "noteOrder": 5736, "time": 0.6069661408052179, "position": { "x": 2, @@ -3599,7 +3599,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 5767, + "noteOrder": 5736, "time": 0.6069661408052179, "position": { "x": 4, @@ -3622,7 +3622,7 @@ { "lineGroupId": 122, "indexInLine": 4, - "noteOrder": 5773.0, + "noteOrder": 5742.0, "time": 0.6069661408052179, "position": { "x": 4, @@ -3645,7 +3645,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 5791, + "noteOrder": 5760, "time": 0.6095057480889218, "position": { "x": 2, @@ -3668,7 +3668,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 5839, + "noteOrder": 5808, "time": 0.6145849626563294, "position": { "x": 4, @@ -3691,7 +3691,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 5887, + "noteOrder": 5856, "time": 0.6196641772237371, "position": { "x": 8, @@ -3714,7 +3714,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 5911, + "noteOrder": 5880, "time": 0.622203784507441, "position": { "x": 8, @@ -3737,7 +3737,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 5911, + "noteOrder": 5880, "time": 0.622203784507441, "position": { "x": 6, @@ -3760,7 +3760,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 5917.0, + "noteOrder": 5886.0, "time": 0.622203784507441, "position": { "x": 6, @@ -3783,7 +3783,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 5936, + "noteOrder": 5904, "time": 0.6247433917911448, "position": { "x": 8, @@ -3806,7 +3806,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 5960, + "noteOrder": 5928, "time": 0.6272829990748486, "position": { "x": 8, @@ -3829,7 +3829,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 5960, + "noteOrder": 5928, "time": 0.6272829990748486, "position": { "x": 6, @@ -3852,7 +3852,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 5966.0, + "noteOrder": 5934.0, "time": 0.6272829990748486, "position": { "x": 6, @@ -3875,7 +3875,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 5984, + "noteOrder": 5952, "time": 0.6298226063585526, "position": { "x": 8, @@ -3898,7 +3898,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 6032, + "noteOrder": 6000, "time": 0.6349018209259601, "position": { "x": 6, @@ -3921,7 +3921,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 6080, + "noteOrder": 6048, "time": 0.6399810354933678, "position": { "x": 2, @@ -3944,7 +3944,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 6104, + "noteOrder": 6072, "time": 0.6425206427770717, "position": { "x": 2, @@ -3967,7 +3967,7 @@ { "lineGroupId": 129, "indexInLine": 3, - "noteOrder": 6104, + "noteOrder": 6072, "time": 0.6425206427770717, "position": { "x": 4, @@ -3990,7 +3990,7 @@ { "lineGroupId": 129, "indexInLine": 4, - "noteOrder": 6110.0, + "noteOrder": 6078.0, "time": 0.6425206427770717, "position": { "x": 4, @@ -4013,7 +4013,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 6129, + "noteOrder": 6096, "time": 0.6450602500607755, "position": { "x": 2, @@ -4036,7 +4036,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 6153, + "noteOrder": 6120, "time": 0.6475998573444793, "position": { "x": 2, @@ -4059,7 +4059,7 @@ { "lineGroupId": 130, "indexInLine": 3, - "noteOrder": 6153, + "noteOrder": 6120, "time": 0.6475998573444793, "position": { "x": 4, @@ -4082,7 +4082,7 @@ { "lineGroupId": 130, "indexInLine": 4, - "noteOrder": 6159.0, + "noteOrder": 6126.0, "time": 0.6475998573444793, "position": { "x": 4, @@ -4105,7 +4105,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 6177, + "noteOrder": 6144, "time": 0.6501394646281833, "position": { "x": 2, @@ -4128,7 +4128,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 6225, + "noteOrder": 6192, "time": 0.6552186791955908, "position": { "x": 4, @@ -4151,7 +4151,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 6273, + "noteOrder": 6240, "time": 0.6602978937629985, "position": { "x": 7, @@ -4174,7 +4174,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 6297, + "noteOrder": 6264, "time": 0.6628375010467024, "position": { "x": 7, @@ -4197,7 +4197,7 @@ { "lineGroupId": 133, "indexInLine": 3, - "noteOrder": 6297, + "noteOrder": 6264, "time": 0.6628375010467024, "position": { "x": 6, @@ -4220,7 +4220,7 @@ { "lineGroupId": 133, "indexInLine": 4, - "noteOrder": 6303.0, + "noteOrder": 6270.0, "time": 0.6628375010467024, "position": { "x": 6, @@ -4243,7 +4243,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 6322, + "noteOrder": 6288, "time": 0.6653771083304063, "position": { "x": 3, @@ -4266,7 +4266,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 6346, + "noteOrder": 6312, "time": 0.66791671561411, "position": { "x": 3, @@ -4289,7 +4289,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 6346, + "noteOrder": 6312, "time": 0.66791671561411, "position": { "x": 4, @@ -4312,7 +4312,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 6352.0, + "noteOrder": 6318.0, "time": 0.66791671561411, "position": { "x": 4, @@ -4335,7 +4335,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 6370, + "noteOrder": 6336, "time": 0.670456322897814, "position": { "x": 6, @@ -4358,7 +4358,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 6418, + "noteOrder": 6384, "time": 0.6755355374652215, "position": { "x": 6, @@ -4381,7 +4381,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 6466, + "noteOrder": 6432, "time": 0.6806147520326293, "position": { "x": 8, @@ -4404,7 +4404,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 6491, + "noteOrder": 6456, "time": 0.6831543593163331, "position": { "x": 8, @@ -4427,7 +4427,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 6491, + "noteOrder": 6456, "time": 0.6831543593163331, "position": { "x": 6, @@ -4450,7 +4450,7 @@ { "lineGroupId": 137, "indexInLine": 4, - "noteOrder": 6497.0, + "noteOrder": 6462.0, "time": 0.6831543593163331, "position": { "x": 6, @@ -4473,7 +4473,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 6515, + "noteOrder": 6480, "time": 0.685693966600037, "position": { "x": 8, @@ -4496,7 +4496,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 6539, + "noteOrder": 6504, "time": 0.6882335738837408, "position": { "x": 8, @@ -4519,7 +4519,7 @@ { "lineGroupId": 138, "indexInLine": 3, - "noteOrder": 6539, + "noteOrder": 6504, "time": 0.6882335738837408, "position": { "x": 6, @@ -4542,7 +4542,7 @@ { "lineGroupId": 138, "indexInLine": 4, - "noteOrder": 6545.0, + "noteOrder": 6510.0, "time": 0.6882335738837408, "position": { "x": 6, @@ -4565,7 +4565,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 6563, + "noteOrder": 6528, "time": 0.6907731811674447, "position": { "x": 8, @@ -4588,7 +4588,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 6611, + "noteOrder": 6576, "time": 0.6958523957348524, "position": { "x": 6, @@ -4611,7 +4611,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 6659, + "noteOrder": 6624, "time": 0.70093161030226, "position": { "x": 2, @@ -4634,7 +4634,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 6684, + "noteOrder": 6648, "time": 0.7034712175859638, "position": { "x": 2, @@ -4657,7 +4657,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 6684, + "noteOrder": 6648, "time": 0.7034712175859638, "position": { "x": 4, @@ -4680,7 +4680,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 6690.0, + "noteOrder": 6654.0, "time": 0.7034712175859638, "position": { "x": 4, @@ -4703,7 +4703,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 6708, + "noteOrder": 6672, "time": 0.7060108248696677, "position": { "x": 2, @@ -4726,7 +4726,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 6732, + "noteOrder": 6696, "time": 0.7085504321533715, "position": { "x": 2, @@ -4749,7 +4749,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 6732, + "noteOrder": 6696, "time": 0.7085504321533715, "position": { "x": 4, @@ -4772,7 +4772,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 6738.0, + "noteOrder": 6702.0, "time": 0.7085504321533715, "position": { "x": 4, @@ -4795,7 +4795,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 6756, + "noteOrder": 6720, "time": 0.7110900394370754, "position": { "x": 2, @@ -4818,7 +4818,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 6804, + "noteOrder": 6768, "time": 0.7161692540044831, "position": { "x": 4, @@ -4841,7 +4841,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 6852, + "noteOrder": 6816, "time": 0.7212484685718907, "position": { "x": 8, @@ -4864,7 +4864,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 6877, + "noteOrder": 6840, "time": 0.7237880758555946, "position": { "x": 8, @@ -4887,7 +4887,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 6877, + "noteOrder": 6840, "time": 0.7237880758555946, "position": { "x": 6, @@ -4910,7 +4910,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 6883.0, + "noteOrder": 6846.0, "time": 0.7237880758555946, "position": { "x": 6, @@ -4933,7 +4933,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 6901, + "noteOrder": 6864, "time": 0.7263276831392984, "position": { "x": 8, @@ -4956,7 +4956,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 6925, + "noteOrder": 6888, "time": 0.7288672904230022, "position": { "x": 8, @@ -4979,7 +4979,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 6925, + "noteOrder": 6888, "time": 0.7288672904230022, "position": { "x": 6, @@ -5002,7 +5002,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 6931.0, + "noteOrder": 6894.0, "time": 0.7288672904230022, "position": { "x": 6, @@ -5025,7 +5025,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 6949, + "noteOrder": 6912, "time": 0.7314068977067062, "position": { "x": 8, @@ -5048,7 +5048,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 6973, + "noteOrder": 6936, "time": 0.7339465049904099, "position": { "x": 8, @@ -5071,7 +5071,7 @@ { "lineGroupId": 147, "indexInLine": 3, - "noteOrder": 6973, + "noteOrder": 6936, "time": 0.7339465049904099, "position": { "x": 6, @@ -5094,7 +5094,7 @@ { "lineGroupId": 147, "indexInLine": 4, - "noteOrder": 6979.0, + "noteOrder": 6942.0, "time": 0.7339465049904099, "position": { "x": 6, @@ -5117,7 +5117,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 6997, + "noteOrder": 6960, "time": 0.7364861122741138, "position": { "x": 8, @@ -5140,7 +5140,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 7021, + "noteOrder": 6984, "time": 0.7390257195578177, "position": { "x": 8, @@ -5163,7 +5163,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 7021, + "noteOrder": 6984, "time": 0.7390257195578177, "position": { "x": 6, @@ -5186,7 +5186,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 7027.0, + "noteOrder": 6990.0, "time": 0.7390257195578177, "position": { "x": 6, @@ -5209,7 +5209,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 7045, + "noteOrder": 7008, "time": 0.7415653268415214, "position": { "x": 7, @@ -5232,7 +5232,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 7094, + "noteOrder": 7056, "time": 0.7466445414089292, "position": { "x": 7, @@ -5255,7 +5255,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 7142, + "noteOrder": 7104, "time": 0.7517237559763369, "position": { "x": 4, @@ -5278,7 +5278,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 7190, + "noteOrder": 7152, "time": 0.7568029705437445, "position": { "x": 4, @@ -5301,7 +5301,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 7335, + "noteOrder": 7296, "time": 0.7720406142459675, "position": { "x": 6, @@ -5324,7 +5324,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 6, @@ -5347,7 +5347,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 7432, + "noteOrder": 7392, "time": 0.7821990433807829, "position": { "x": 4, @@ -5370,7 +5370,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 4, @@ -5393,7 +5393,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 7528, + "noteOrder": 7488, "time": 0.7923574725155982, "position": { "x": 6, @@ -5416,7 +5416,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 6, @@ -5439,7 +5439,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 7625, + "noteOrder": 7584, "time": 0.8025159016504136, "position": { "x": 4, @@ -5462,7 +5462,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 7721, + "noteOrder": 7680, "time": 0.812674330785229, "position": { "x": 4, @@ -5485,7 +5485,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 8155, + "noteOrder": 8112, "time": 0.8583872618918981, "position": { "x": 6, @@ -5508,7 +5508,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 8204, + "noteOrder": 8160, "time": 0.8634664764593059, "position": { "x": 6, @@ -5531,7 +5531,7 @@ { "lineGroupId": 172, "indexInLine": 1, - "noteOrder": 8300, + "noteOrder": 8256, "time": 0.8736249055941211, "position": { "x": 2, @@ -5554,7 +5554,7 @@ { "lineGroupId": 172, "indexInLine": 2, - "noteOrder": 8445, + "noteOrder": 8400, "time": 0.8888625492963442, "position": { "x": 5, @@ -5577,7 +5577,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 8493, + "noteOrder": 8448, "time": 0.8939417638637519, "position": { "x": 8, @@ -5600,7 +5600,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 8638, + "noteOrder": 8592, "time": 0.909179407565975, "position": { "x": 5, @@ -5623,7 +5623,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 8686, + "noteOrder": 8640, "time": 0.9142586221333826, "position": { "x": 3, @@ -5646,7 +5646,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 3, @@ -5669,7 +5669,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 8710, + "noteOrder": 8664, "time": 0.9167982294170866, "position": { "x": 4, @@ -5692,7 +5692,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 8716.0, + "noteOrder": 8670.0, "time": 0.9167982294170866, "position": { "x": 4, @@ -5715,7 +5715,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 8734, + "noteOrder": 8688, "time": 0.9193378367007903, "position": { "x": 7, @@ -5738,7 +5738,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 8759, + "noteOrder": 8712, "time": 0.9218774439844942, "position": { "x": 7, @@ -5761,7 +5761,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 8759, + "noteOrder": 8712, "time": 0.9218774439844942, "position": { "x": 6, @@ -5784,7 +5784,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 8765.0, + "noteOrder": 8718.0, "time": 0.9218774439844942, "position": { "x": 6, @@ -5807,7 +5807,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 8783, + "noteOrder": 8736, "time": 0.9244170512681981, "position": { "x": 3, @@ -5830,7 +5830,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 3, @@ -5853,7 +5853,7 @@ { "lineGroupId": 182, "indexInLine": 3, - "noteOrder": 8807, + "noteOrder": 8760, "time": 0.9269566585519018, "position": { "x": 4, @@ -5876,7 +5876,7 @@ { "lineGroupId": 182, "indexInLine": 4, - "noteOrder": 8813.0, + "noteOrder": 8766.0, "time": 0.9269566585519018, "position": { "x": 4, @@ -5899,7 +5899,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 8831, + "noteOrder": 8784, "time": 0.9294962658356057, "position": { "x": 7, @@ -5922,7 +5922,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 8855, + "noteOrder": 8808, "time": 0.9320358731193095, "position": { "x": 7, @@ -5945,7 +5945,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 8855, + "noteOrder": 8808, "time": 0.9320358731193095, "position": { "x": 6, @@ -5968,7 +5968,7 @@ { "lineGroupId": 183, "indexInLine": 4, - "noteOrder": 8861.0, + "noteOrder": 8814.0, "time": 0.9320358731193095, "position": { "x": 6, @@ -5991,7 +5991,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 8879, + "noteOrder": 8832, "time": 0.9345754804030133, "position": { "x": 3, @@ -6014,7 +6014,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 3, @@ -6037,7 +6037,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 8903, + "noteOrder": 8856, "time": 0.9371150876867173, "position": { "x": 4, @@ -6060,7 +6060,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 8909.0, + "noteOrder": 8862.0, "time": 0.9371150876867173, "position": { "x": 4, @@ -6083,7 +6083,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 8927, + "noteOrder": 8880, "time": 0.939654694970421, "position": { "x": 7, @@ -6106,7 +6106,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 8952, + "noteOrder": 8904, "time": 0.9421943022541249, "position": { "x": 7, @@ -6129,7 +6129,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 8952, + "noteOrder": 8904, "time": 0.9421943022541249, "position": { "x": 6, @@ -6152,7 +6152,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 8958.0, + "noteOrder": 8910.0, "time": 0.9421943022541249, "position": { "x": 6, @@ -6175,7 +6175,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 8976, + "noteOrder": 8928, "time": 0.9447339095378288, "position": { "x": 3, @@ -6198,7 +6198,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 3, @@ -6221,7 +6221,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 9000, + "noteOrder": 8952, "time": 0.9472735168215325, "position": { "x": 4, @@ -6244,7 +6244,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 9006.0, + "noteOrder": 8958.0, "time": 0.9472735168215325, "position": { "x": 4, @@ -6267,7 +6267,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 9024, + "noteOrder": 8976, "time": 0.9498131241052364, "position": { "x": 7, @@ -6290,7 +6290,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 9048, + "noteOrder": 9000, "time": 0.9523527313889403, "position": { "x": 7, @@ -6313,7 +6313,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 9048, + "noteOrder": 9000, "time": 0.9523527313889403, "position": { "x": 6, @@ -6336,7 +6336,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 9054.0, + "noteOrder": 9006.0, "time": 0.9523527313889403, "position": { "x": 6, @@ -6359,7 +6359,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 9120, + "noteOrder": 9072, "time": 0.9599715532400518, "position": { "x": 2, @@ -6382,7 +6382,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 9241, + "noteOrder": 9192, "time": 0.972669589658571, "position": { "x": 4, @@ -6405,7 +6405,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 9265, + "noteOrder": 9216, "time": 0.9752091969422748, "position": { "x": 4, @@ -6440,7 +6440,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 188, + "BPM": 187, "NPS": "2.45", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/info.json b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/info.json index b337e03d..7aaddb1b 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/スーパー戦湯ババンバーン/info.json @@ -3,7 +3,7 @@ "SongName": "\u30b9\u30fc\u30d1\u30fc\u6226\u6e6f\u30d0\u30d0\u30f3\u30d0\u30fc\u30f3", "SongLength": "126.340454", "SongAuthorName": "\u3059\u308f\u3072\u3067\u304a,\u79cb\u6210,\u304b\u307c\u3061\u3083,\u85cd\u6708\u306a\u304f\u308b,NU-KO by BEMANI Sound Team \"\u516b\u6238\u4e80\u751f\u7f85\"", - "Bpm": "188", + "Bpm": "187", "SongPath": "294.ogg", "CreateTicks": 637643232000000000, "CreateTime": "637643232000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a.json index 383138e6..6bf85cbc 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u30cf\u30c3\u30d4\u30fc\u30b7\u30f3\u30bb\u30b5\u30a4\u30b6 difficulty_1a", "sphereNodes": [ { - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 5, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 590, + "noteOrder": 576, "time": 0.11538445022204512, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 614, + "noteOrder": 600, "time": 0.12018747169702573, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 663, + "noteOrder": 648, "time": 0.12980369053994245, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 688, + "noteOrder": 672, "time": 0.13460671201492308, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 786, + "noteOrder": 768, "time": 0.15383914970075652, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 884, + "noteOrder": 864, "time": 0.17307158738658993, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 909, + "noteOrder": 888, "time": 0.17787460886157055, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 960, "time": 0.19230402507242336, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1007, + "noteOrder": 984, "time": 0.197107046547404, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1008, "time": 0.2019100680223846, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1056, "time": 0.2115262868653013, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1080, "time": 0.21633948423323743, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1104, "time": 0.22114250570821803, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1179, + "noteOrder": 1152, "time": 0.23075872455113475, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1176, "time": 0.23557192191907084, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1228, + "noteOrder": 1200, "time": 0.24037494339405147, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1572, + "noteOrder": 1536, "time": 0.30767829940151303, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1695, + "noteOrder": 1656, "time": 0.33171375856232704, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1720, + "noteOrder": 1680, "time": 0.3365269559302631, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 1692, "time": 0.3389284666677535, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1793, + "noteOrder": 1752, "time": 0.3509461962481605, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1843, + "noteOrder": 1800, "time": 0.3605624150910772, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1843, + "noteOrder": 1800, "time": 0.3605624150910772, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1848, "time": 0.3701786339339939, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1896, "time": 0.3797948527769106, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1896, "time": 0.3797948527769106, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1965, + "noteOrder": 1920, "time": 0.3845978742518913, "position": { "x": 8, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1944, "time": 0.38941107161982735, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2014, + "noteOrder": 1968, "time": 0.394214093094808, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2016, "time": 0.40383031193772473, "position": { "x": 2, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2064, "time": 0.4134465307806414, "position": { "x": 8, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2136, "time": 0.4278657710985387, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2328, "time": 0.46633064647020556, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2808, "time": 0.5624724831134618, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2899, + "noteOrder": 2832, "time": 0.5672856804813978, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2973, + "noteOrder": 2904, "time": 0.5817049207992953, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3071, + "noteOrder": 3000, "time": 0.6009373584851286, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3048, "time": 0.6105535773280454, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3192, "time": 0.6394022338567955, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3304, + "noteOrder": 3228, "time": 0.6466067660692665, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3636, + "noteOrder": 3552, "time": 0.7115086113392377, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3685, + "noteOrder": 3600, "time": 0.7211248301821545, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3685, + "noteOrder": 3600, "time": 0.7211248301821545, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3759, + "noteOrder": 3672, "time": 0.7355440705000518, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3857, + "noteOrder": 3768, "time": 0.7547765081858852, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 3960, "time": 0.793241383557552, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4090, + "noteOrder": 3996, "time": 0.800445915770023, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4103, + "noteOrder": 4008, "time": 0.8028474265075133, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 4224, "time": 0.8461153233541607, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4373, + "noteOrder": 4272, "time": 0.8557315421970774, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4344, "time": 0.8701609584079303, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4392, "time": 0.8797771772508469, "position": { "x": 3, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4392, "time": 0.8797771772508469, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 5, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 5, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 4, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 7, @@ -2447,7 +2447,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 393, + "noteOrder": 384, "time": 0.07691957485037826, "position": { "x": 3, @@ -2470,7 +2470,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 3, @@ -2493,7 +2493,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 442, + "noteOrder": 432, "time": 0.08653579369329496, "position": { "x": 7, @@ -2516,7 +2516,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 7, @@ -2539,7 +2539,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 4, @@ -2562,7 +2562,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 4, @@ -2585,7 +2585,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 6, @@ -2608,7 +2608,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 6, @@ -2631,7 +2631,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 639, + "noteOrder": 624, "time": 0.12499049317200635, "position": { "x": 6, @@ -2654,7 +2654,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 663, + "noteOrder": 648, "time": 0.12980369053994245, "position": { "x": 6, @@ -2677,7 +2677,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 737, + "noteOrder": 720, "time": 0.1442229308578398, "position": { "x": 4, @@ -2700,7 +2700,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 4, @@ -2723,7 +2723,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 835, + "noteOrder": 816, "time": 0.1634553685436732, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 934, + "noteOrder": 912, "time": 0.18268780622950664, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1277, + "noteOrder": 1248, "time": 0.24999116223696818, "position": { "x": 7, @@ -2838,7 +2838,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 7, @@ -2861,7 +2861,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 6, @@ -2884,7 +2884,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 4, @@ -2907,7 +2907,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 4, @@ -2930,7 +2930,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 4, @@ -2953,7 +2953,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 4, @@ -2976,7 +2976,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 7, @@ -2999,7 +2999,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1400, + "noteOrder": 1368, "time": 0.2740266213977822, "position": { "x": 6, @@ -3022,7 +3022,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1425, + "noteOrder": 1392, "time": 0.27883981876571834, "position": { "x": 7, @@ -3045,7 +3045,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 5, @@ -3068,7 +3068,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 3, @@ -3091,7 +3091,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1499, + "noteOrder": 1464, "time": 0.29325905908361566, "position": { "x": 5, @@ -3114,7 +3114,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 6, @@ -3160,7 +3160,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1523, + "noteOrder": 1488, "time": 0.2980620805585963, "position": { "x": 3, @@ -3183,7 +3183,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 5, @@ -3206,7 +3206,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1597, + "noteOrder": 1560, "time": 0.3124914967694491, "position": { "x": 5, @@ -3229,7 +3229,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 5, @@ -3252,7 +3252,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 3, @@ -3275,7 +3275,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 3, @@ -3298,7 +3298,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 5, @@ -3321,7 +3321,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 5, @@ -3344,7 +3344,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1728, "time": 0.34614317477317985, "position": { "x": 3, @@ -3367,7 +3367,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 3, @@ -3390,7 +3390,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1867, + "noteOrder": 1824, "time": 0.36536543656605786, "position": { "x": 7, @@ -3413,7 +3413,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 7, @@ -3436,7 +3436,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2039, + "noteOrder": 1992, "time": 0.39902729046274404, "position": { "x": 4, @@ -3459,7 +3459,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 4, @@ -3482,7 +3482,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 6, @@ -3505,7 +3505,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 6, @@ -3528,7 +3528,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2162, + "noteOrder": 2112, "time": 0.42306274962355817, "position": { "x": 3, @@ -3551,7 +3551,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2160, "time": 0.43267896846647486, "position": { "x": 3, @@ -3574,7 +3574,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2211, + "noteOrder": 2160, "time": 0.43267896846647486, "position": { "x": 6, @@ -3597,7 +3597,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 6, @@ -3620,7 +3620,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 3, @@ -3643,7 +3643,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 3, @@ -3666,7 +3666,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 5, @@ -3689,7 +3689,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 5, @@ -3712,7 +3712,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2358, + "noteOrder": 2304, "time": 0.4615174491022695, "position": { "x": 7, @@ -3735,7 +3735,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2408, + "noteOrder": 2352, "time": 0.47113366794518624, "position": { "x": 7, @@ -3758,7 +3758,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2408, + "noteOrder": 2352, "time": 0.47113366794518624, "position": { "x": 3, @@ -3781,7 +3781,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 3, @@ -3804,7 +3804,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 4, @@ -3827,7 +3827,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 4, @@ -3850,7 +3850,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 6, @@ -3873,7 +3873,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 6, @@ -3896,7 +3896,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2555, + "noteOrder": 2496, "time": 0.49998232447393637, "position": { "x": 3, @@ -3919,7 +3919,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2604, + "noteOrder": 2544, "time": 0.5095985433168531, "position": { "x": 7, @@ -3965,7 +3965,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 7, @@ -3988,7 +3988,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2592, "time": 0.5192147621597698, "position": { "x": 3, @@ -4011,7 +4011,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 3, @@ -4034,7 +4034,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2640, "time": 0.5288208051097311, "position": { "x": 7, @@ -4057,7 +4057,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 7, @@ -4080,7 +4080,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2751, + "noteOrder": 2688, "time": 0.5384370239526477, "position": { "x": 3, @@ -4103,7 +4103,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 3, @@ -4126,7 +4126,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2801, + "noteOrder": 2736, "time": 0.5480532427955644, "position": { "x": 7, @@ -4149,7 +4149,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 7, @@ -4172,7 +4172,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2850, + "noteOrder": 2784, "time": 0.5576694616384812, "position": { "x": 4, @@ -4195,7 +4195,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2899, + "noteOrder": 2832, "time": 0.5672856804813978, "position": { "x": 4, @@ -4218,7 +4218,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 2973, + "noteOrder": 2904, "time": 0.5817049207992953, "position": { "x": 6, @@ -4241,7 +4241,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 6, @@ -4264,7 +4264,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3071, + "noteOrder": 3000, "time": 0.6009373584851286, "position": { "x": 4, @@ -4287,7 +4287,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 4, @@ -4310,7 +4310,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 6, @@ -4333,7 +4333,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 6, @@ -4356,7 +4356,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 8, @@ -4379,7 +4379,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 8, @@ -4402,7 +4402,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 5, @@ -4425,7 +4425,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 5, @@ -4448,7 +4448,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 3, @@ -4471,7 +4471,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 3, @@ -4494,7 +4494,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 5, @@ -4517,7 +4517,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 5, @@ -4540,7 +4540,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 3, @@ -4563,7 +4563,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 3, @@ -4586,7 +4586,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 3, @@ -4609,7 +4609,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 4, @@ -4632,7 +4632,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 3415, + "noteOrder": 3336, "time": 0.6682407144925901, "position": { "x": 4, @@ -4655,7 +4655,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 6, @@ -4701,7 +4701,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3390, + "noteOrder": 3312, "time": 0.6634376930176096, "position": { "x": 8, @@ -4724,7 +4724,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3415, + "noteOrder": 3336, "time": 0.6682407144925901, "position": { "x": 6, @@ -4747,7 +4747,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 6, @@ -4770,7 +4770,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3439, + "noteOrder": 3360, "time": 0.6730539118605262, "position": { "x": 3, @@ -4793,7 +4793,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 4, @@ -4816,7 +4816,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3513, + "noteOrder": 3432, "time": 0.6874731521784236, "position": { "x": 4, @@ -4839,7 +4839,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3488, + "noteOrder": 3408, "time": 0.6826599548104876, "position": { "x": 8, @@ -4862,7 +4862,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3513, + "noteOrder": 3432, "time": 0.6874731521784236, "position": { "x": 6, @@ -4885,7 +4885,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3538, + "noteOrder": 3456, "time": 0.6922761736534043, "position": { "x": 5, @@ -4908,7 +4908,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3562, + "noteOrder": 3480, "time": 0.6970893710213404, "position": { "x": 5, @@ -4931,7 +4931,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3480, "time": 0.6970893710213404, "position": { "x": 7, @@ -4954,7 +4954,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 7, @@ -4977,7 +4977,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3611, + "noteOrder": 3528, "time": 0.706705589864257, "position": { "x": 4, @@ -5023,7 +5023,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3611, + "noteOrder": 3528, "time": 0.706705589864257, "position": { "x": 6, @@ -5046,7 +5046,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 6, @@ -5069,7 +5069,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3734, + "noteOrder": 3648, "time": 0.7307410490250712, "position": { "x": 4, @@ -5092,7 +5092,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3759, + "noteOrder": 3672, "time": 0.7355440705000518, "position": { "x": 4, @@ -5115,7 +5115,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 7, @@ -5138,7 +5138,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3857, + "noteOrder": 3768, "time": 0.7547765081858852, "position": { "x": 7, @@ -5161,7 +5161,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 6, @@ -5184,7 +5184,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 6, @@ -5207,7 +5207,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3955, + "noteOrder": 3864, "time": 0.7740089458717186, "position": { "x": 4, @@ -5230,7 +5230,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 4, @@ -5253,7 +5253,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 5, @@ -5276,7 +5276,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4078, + "noteOrder": 3984, "time": 0.7980444050325326, "position": { "x": 5, @@ -5299,7 +5299,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4078, + "noteOrder": 3984, "time": 0.7980444050325326, "position": { "x": 3, @@ -5322,7 +5322,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4090, + "noteOrder": 3996, "time": 0.800445915770023, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4127, + "noteOrder": 4032, "time": 0.8076606238754495, "position": { "x": 3, @@ -5368,7 +5368,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 3, @@ -5391,7 +5391,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4080, "time": 0.8172768427183661, "position": { "x": 7, @@ -5414,7 +5414,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 7, @@ -5437,7 +5437,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 4226, + "noteOrder": 4128, "time": 0.8268930615612828, "position": { "x": 3, @@ -5460,7 +5460,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 3, @@ -5483,7 +5483,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4176, "time": 0.8365092804041995, "position": { "x": 7, @@ -5506,7 +5506,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 7, @@ -5529,7 +5529,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 4, @@ -5552,7 +5552,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 4, @@ -5575,7 +5575,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 6, @@ -5598,7 +5598,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 6, @@ -5621,7 +5621,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 3, @@ -5644,7 +5644,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 3, @@ -5667,7 +5667,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 5, @@ -5690,7 +5690,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 5, @@ -5713,7 +5713,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 198.5, + "noteOrder": 193.5, "time": 0.03846487537166686, "position": { "x": 5, @@ -5741,7 +5741,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 247.5, + "noteOrder": 241.5, "time": 0.04807091832162811, "position": { "x": 5, @@ -5769,7 +5769,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 296.5, + "noteOrder": 289.5, "time": 0.057687137164544815, "position": { "x": 5, @@ -5797,7 +5797,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 345.5, + "noteOrder": 337.5, "time": 0.06730335600746154, "position": { "x": 5, @@ -5825,7 +5825,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 517.5, + "noteOrder": 505.5, "time": 0.1009550340111923, "position": { "x": 5, @@ -5853,7 +5853,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 552.0, + "noteOrder": 540.0, "time": 0.1057682313791284, "position": { "x": 5, @@ -5881,7 +5881,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1450.5, + "noteOrder": 1417.5, "time": 0.2836428402406989, "position": { "x": 5, @@ -5909,7 +5909,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1549.5, + "noteOrder": 1513.5, "time": 0.30287527792653235, "position": { "x": 5, @@ -5937,7 +5937,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2310.5, + "noteOrder": 2257.5, "time": 0.4519012302593528, "position": { "x": 5, @@ -5965,7 +5965,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2335.5, + "noteOrder": 2281.5, "time": 0.45671442762728887, "position": { "x": 5, @@ -5993,7 +5993,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2507.5, + "noteOrder": 2449.5, "time": 0.4903661056310197, "position": { "x": 5, @@ -6021,7 +6021,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2531.5, + "noteOrder": 2473.5, "time": 0.4951691271060003, "position": { "x": 5, @@ -6049,7 +6049,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3981.5, + "noteOrder": 3889.5, "time": 0.7788119673466992, "position": { "x": 5, @@ -6077,7 +6077,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4005.5, + "noteOrder": 3913.5, "time": 0.7836251647146353, "position": { "x": 5, @@ -6105,7 +6105,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4595.5, + "noteOrder": 4489.5, "time": 0.898999439043725, "position": { "x": 5, @@ -6146,7 +6146,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 130, + "BPM": 127, "NPS": "2.84", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a_blockless.json index 0acdde83..7bcce80f 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u30cf\u30c3\u30d4\u30fc\u30b7\u30f3\u30bb\u30b5\u30a4\u30b6 difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 5, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 590, + "noteOrder": 576, "time": 0.11538445022204512, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 614, + "noteOrder": 600, "time": 0.12018747169702573, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 663, + "noteOrder": 648, "time": 0.12980369053994245, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 688, + "noteOrder": 672, "time": 0.13460671201492308, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 7, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 786, + "noteOrder": 768, "time": 0.15383914970075652, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 3, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 884, + "noteOrder": 864, "time": 0.17307158738658993, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 909, + "noteOrder": 888, "time": 0.17787460886157055, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 960, "time": 0.19230402507242336, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1007, + "noteOrder": 984, "time": 0.197107046547404, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1032, + "noteOrder": 1008, "time": 0.2019100680223846, "position": { "x": 5, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1056, "time": 0.2115262868653013, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1080, "time": 0.21633948423323743, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1104, "time": 0.22114250570821803, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 5, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1179, + "noteOrder": 1152, "time": 0.23075872455113475, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1176, "time": 0.23557192191907084, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1228, + "noteOrder": 1200, "time": 0.24037494339405147, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1572, + "noteOrder": 1536, "time": 0.30767829940151303, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1695, + "noteOrder": 1656, "time": 0.33171375856232704, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1720, + "noteOrder": 1680, "time": 0.3365269559302631, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1732, + "noteOrder": 1692, "time": 0.3389284666677535, "position": { "x": 3, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1793, + "noteOrder": 1752, "time": 0.3509461962481605, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 5, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1843, + "noteOrder": 1800, "time": 0.3605624150910772, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1843, + "noteOrder": 1800, "time": 0.3605624150910772, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1892, + "noteOrder": 1848, "time": 0.3701786339339939, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1896, "time": 0.3797948527769106, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1941, + "noteOrder": 1896, "time": 0.3797948527769106, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1965, + "noteOrder": 1920, "time": 0.3845978742518913, "position": { "x": 8, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1944, "time": 0.38941107161982735, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2014, + "noteOrder": 1968, "time": 0.394214093094808, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2016, "time": 0.40383031193772473, "position": { "x": 2, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2064, "time": 0.4134465307806414, "position": { "x": 8, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2186, + "noteOrder": 2136, "time": 0.4278657710985387, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2383, + "noteOrder": 2328, "time": 0.46633064647020556, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 5, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 5, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2874, + "noteOrder": 2808, "time": 0.5624724831134618, "position": { "x": 7, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2899, + "noteOrder": 2832, "time": 0.5672856804813978, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 3, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2973, + "noteOrder": 2904, "time": 0.5817049207992953, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 3, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3071, + "noteOrder": 3000, "time": 0.6009373584851286, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3048, "time": 0.6105535773280454, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3267, + "noteOrder": 3192, "time": 0.6394022338567955, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3304, + "noteOrder": 3228, "time": 0.6466067660692665, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 5, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3636, + "noteOrder": 3552, "time": 0.7115086113392377, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3685, + "noteOrder": 3600, "time": 0.7211248301821545, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3685, + "noteOrder": 3600, "time": 0.7211248301821545, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3759, + "noteOrder": 3672, "time": 0.7355440705000518, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 5, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3857, + "noteOrder": 3768, "time": 0.7547765081858852, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 3, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 5, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4054, + "noteOrder": 3960, "time": 0.793241383557552, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4090, + "noteOrder": 3996, "time": 0.800445915770023, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4103, + "noteOrder": 4008, "time": 0.8028474265075133, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 5, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 5, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4324, + "noteOrder": 4224, "time": 0.8461153233541607, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4373, + "noteOrder": 4272, "time": 0.8557315421970774, "position": { "x": 7, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 3, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4344, "time": 0.8701609584079303, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4392, "time": 0.8797771772508469, "position": { "x": 3, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4496, + "noteOrder": 4392, "time": 0.8797771772508469, "position": { "x": 7, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 5, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 5, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 5, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 3, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 5, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 5, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 7, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 4, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 7, @@ -2447,7 +2447,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 393, + "noteOrder": 384, "time": 0.07691957485037826, "position": { "x": 3, @@ -2470,7 +2470,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 3, @@ -2493,7 +2493,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 442, + "noteOrder": 432, "time": 0.08653579369329496, "position": { "x": 7, @@ -2516,7 +2516,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 7, @@ -2539,7 +2539,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 4, @@ -2562,7 +2562,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 4, @@ -2585,7 +2585,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 6, @@ -2608,7 +2608,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 6, @@ -2631,7 +2631,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 639, + "noteOrder": 624, "time": 0.12499049317200635, "position": { "x": 6, @@ -2654,7 +2654,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 663, + "noteOrder": 648, "time": 0.12980369053994245, "position": { "x": 6, @@ -2677,7 +2677,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 737, + "noteOrder": 720, "time": 0.1442229308578398, "position": { "x": 4, @@ -2700,7 +2700,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 4, @@ -2723,7 +2723,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 835, + "noteOrder": 816, "time": 0.1634553685436732, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 934, + "noteOrder": 912, "time": 0.18268780622950664, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1277, + "noteOrder": 1248, "time": 0.24999116223696818, "position": { "x": 7, @@ -2838,7 +2838,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 7, @@ -2861,7 +2861,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 6, @@ -2884,7 +2884,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 4, @@ -2907,7 +2907,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 4, @@ -2930,7 +2930,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 4, @@ -2953,7 +2953,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 4, @@ -2976,7 +2976,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 7, @@ -2999,7 +2999,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1400, + "noteOrder": 1368, "time": 0.2740266213977822, "position": { "x": 6, @@ -3022,7 +3022,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1425, + "noteOrder": 1392, "time": 0.27883981876571834, "position": { "x": 7, @@ -3045,7 +3045,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 5, @@ -3068,7 +3068,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 3, @@ -3091,7 +3091,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1499, + "noteOrder": 1464, "time": 0.29325905908361566, "position": { "x": 5, @@ -3114,7 +3114,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 6, @@ -3160,7 +3160,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1523, + "noteOrder": 1488, "time": 0.2980620805585963, "position": { "x": 3, @@ -3183,7 +3183,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 5, @@ -3206,7 +3206,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1597, + "noteOrder": 1560, "time": 0.3124914967694491, "position": { "x": 5, @@ -3229,7 +3229,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 5, @@ -3252,7 +3252,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 3, @@ -3275,7 +3275,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 3, @@ -3298,7 +3298,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 5, @@ -3321,7 +3321,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 5, @@ -3344,7 +3344,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1728, "time": 0.34614317477317985, "position": { "x": 3, @@ -3367,7 +3367,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 3, @@ -3390,7 +3390,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1867, + "noteOrder": 1824, "time": 0.36536543656605786, "position": { "x": 7, @@ -3413,7 +3413,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 7, @@ -3436,7 +3436,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2039, + "noteOrder": 1992, "time": 0.39902729046274404, "position": { "x": 4, @@ -3459,7 +3459,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 4, @@ -3482,7 +3482,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 6, @@ -3505,7 +3505,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 6, @@ -3528,7 +3528,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2162, + "noteOrder": 2112, "time": 0.42306274962355817, "position": { "x": 3, @@ -3551,7 +3551,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2160, "time": 0.43267896846647486, "position": { "x": 3, @@ -3574,7 +3574,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2211, + "noteOrder": 2160, "time": 0.43267896846647486, "position": { "x": 6, @@ -3597,7 +3597,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 6, @@ -3620,7 +3620,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 3, @@ -3643,7 +3643,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 3, @@ -3666,7 +3666,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 5, @@ -3689,7 +3689,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 5, @@ -3712,7 +3712,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2358, + "noteOrder": 2304, "time": 0.4615174491022695, "position": { "x": 7, @@ -3735,7 +3735,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2408, + "noteOrder": 2352, "time": 0.47113366794518624, "position": { "x": 7, @@ -3758,7 +3758,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2408, + "noteOrder": 2352, "time": 0.47113366794518624, "position": { "x": 3, @@ -3781,7 +3781,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 3, @@ -3804,7 +3804,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 4, @@ -3827,7 +3827,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 4, @@ -3850,7 +3850,7 @@ { "lineGroupId": 96, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 6, @@ -3873,7 +3873,7 @@ { "lineGroupId": 96, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 6, @@ -3896,7 +3896,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 2555, + "noteOrder": 2496, "time": 0.49998232447393637, "position": { "x": 3, @@ -3919,7 +3919,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 2604, + "noteOrder": 2544, "time": 0.5095985433168531, "position": { "x": 7, @@ -3965,7 +3965,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 7, @@ -3988,7 +3988,7 @@ { "lineGroupId": 103, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2592, "time": 0.5192147621597698, "position": { "x": 3, @@ -4011,7 +4011,7 @@ { "lineGroupId": 103, "indexInLine": 2, - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 3, @@ -4034,7 +4034,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2640, "time": 0.5288208051097311, "position": { "x": 7, @@ -4057,7 +4057,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 7, @@ -4080,7 +4080,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2751, + "noteOrder": 2688, "time": 0.5384370239526477, "position": { "x": 3, @@ -4103,7 +4103,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 3, @@ -4126,7 +4126,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2801, + "noteOrder": 2736, "time": 0.5480532427955644, "position": { "x": 7, @@ -4149,7 +4149,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 7, @@ -4172,7 +4172,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2850, + "noteOrder": 2784, "time": 0.5576694616384812, "position": { "x": 4, @@ -4195,7 +4195,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2899, + "noteOrder": 2832, "time": 0.5672856804813978, "position": { "x": 4, @@ -4218,7 +4218,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 2973, + "noteOrder": 2904, "time": 0.5817049207992953, "position": { "x": 6, @@ -4241,7 +4241,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 6, @@ -4264,7 +4264,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3071, + "noteOrder": 3000, "time": 0.6009373584851286, "position": { "x": 4, @@ -4287,7 +4287,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 4, @@ -4310,7 +4310,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 6, @@ -4333,7 +4333,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 6, @@ -4356,7 +4356,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 8, @@ -4379,7 +4379,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 8, @@ -4402,7 +4402,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 5, @@ -4425,7 +4425,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 5, @@ -4448,7 +4448,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 3, @@ -4471,7 +4471,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 3, @@ -4494,7 +4494,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 5, @@ -4517,7 +4517,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 5, @@ -4540,7 +4540,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 3, @@ -4563,7 +4563,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 3, @@ -4586,7 +4586,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 3, @@ -4609,7 +4609,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 4, @@ -4632,7 +4632,7 @@ { "lineGroupId": 137, "indexInLine": 3, - "noteOrder": 3415, + "noteOrder": 3336, "time": 0.6682407144925901, "position": { "x": 4, @@ -4655,7 +4655,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 6, @@ -4701,7 +4701,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3390, + "noteOrder": 3312, "time": 0.6634376930176096, "position": { "x": 8, @@ -4724,7 +4724,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3415, + "noteOrder": 3336, "time": 0.6682407144925901, "position": { "x": 6, @@ -4747,7 +4747,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 6, @@ -4770,7 +4770,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3439, + "noteOrder": 3360, "time": 0.6730539118605262, "position": { "x": 3, @@ -4793,7 +4793,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 4, @@ -4816,7 +4816,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3513, + "noteOrder": 3432, "time": 0.6874731521784236, "position": { "x": 4, @@ -4839,7 +4839,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3488, + "noteOrder": 3408, "time": 0.6826599548104876, "position": { "x": 8, @@ -4862,7 +4862,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3513, + "noteOrder": 3432, "time": 0.6874731521784236, "position": { "x": 6, @@ -4885,7 +4885,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3538, + "noteOrder": 3456, "time": 0.6922761736534043, "position": { "x": 5, @@ -4908,7 +4908,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3562, + "noteOrder": 3480, "time": 0.6970893710213404, "position": { "x": 5, @@ -4931,7 +4931,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3562, + "noteOrder": 3480, "time": 0.6970893710213404, "position": { "x": 7, @@ -4954,7 +4954,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 7, @@ -4977,7 +4977,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 3611, + "noteOrder": 3528, "time": 0.706705589864257, "position": { "x": 4, @@ -5023,7 +5023,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3611, + "noteOrder": 3528, "time": 0.706705589864257, "position": { "x": 6, @@ -5046,7 +5046,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 6, @@ -5069,7 +5069,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3734, + "noteOrder": 3648, "time": 0.7307410490250712, "position": { "x": 4, @@ -5092,7 +5092,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3759, + "noteOrder": 3672, "time": 0.7355440705000518, "position": { "x": 4, @@ -5115,7 +5115,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 7, @@ -5138,7 +5138,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3857, + "noteOrder": 3768, "time": 0.7547765081858852, "position": { "x": 7, @@ -5161,7 +5161,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 6, @@ -5184,7 +5184,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 6, @@ -5207,7 +5207,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3955, + "noteOrder": 3864, "time": 0.7740089458717186, "position": { "x": 4, @@ -5230,7 +5230,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 4, @@ -5253,7 +5253,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 5, @@ -5276,7 +5276,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 4078, + "noteOrder": 3984, "time": 0.7980444050325326, "position": { "x": 5, @@ -5299,7 +5299,7 @@ { "lineGroupId": 170, "indexInLine": 1, - "noteOrder": 4078, + "noteOrder": 3984, "time": 0.7980444050325326, "position": { "x": 3, @@ -5322,7 +5322,7 @@ { "lineGroupId": 170, "indexInLine": 2, - "noteOrder": 4090, + "noteOrder": 3996, "time": 0.800445915770023, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 4127, + "noteOrder": 4032, "time": 0.8076606238754495, "position": { "x": 3, @@ -5368,7 +5368,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 3, @@ -5391,7 +5391,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4080, "time": 0.8172768427183661, "position": { "x": 7, @@ -5414,7 +5414,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 7, @@ -5437,7 +5437,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 4226, + "noteOrder": 4128, "time": 0.8268930615612828, "position": { "x": 3, @@ -5460,7 +5460,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 3, @@ -5483,7 +5483,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4176, "time": 0.8365092804041995, "position": { "x": 7, @@ -5506,7 +5506,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 7, @@ -5529,7 +5529,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 4, @@ -5552,7 +5552,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 4, @@ -5575,7 +5575,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 6, @@ -5598,7 +5598,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 6, @@ -5621,7 +5621,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 3, @@ -5644,7 +5644,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 3, @@ -5667,7 +5667,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 5, @@ -5690,7 +5690,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 5, @@ -5725,7 +5725,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 130, + "BPM": 127, "NPS": "2.84", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b.json index a4fcf204..d22ea043 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u30cf\u30c3\u30d4\u30fc\u30b7\u30f3\u30bb\u30b5\u30a4\u30b6 difficulty_1b", "sphereNodes": [ { - "noteOrder": 393, + "noteOrder": 384, "time": 0.07691957485037826, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 432, "time": 0.08653579369329496, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 590, + "noteOrder": 576, "time": 0.11538445022204512, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 614, + "noteOrder": 600, "time": 0.12018747169702573, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 639, + "noteOrder": 624, "time": 0.12499049317200635, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 884, + "noteOrder": 864, "time": 0.17307158738658993, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 909, + "noteOrder": 888, "time": 0.17787460886157055, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 960, "time": 0.19230402507242336, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1007, + "noteOrder": 984, "time": 0.197107046547404, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1056, "time": 0.2115262868653013, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1080, "time": 0.21633948423323743, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1179, + "noteOrder": 1152, "time": 0.23075872455113475, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1176, "time": 0.23557192191907084, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1425, + "noteOrder": 1392, "time": 0.27883981876571834, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 2, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1523, + "noteOrder": 1488, "time": 0.2980620805585963, "position": { "x": 8, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1720, + "noteOrder": 1680, "time": 0.3365269559302631, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1965, + "noteOrder": 1920, "time": 0.3845978742518913, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1944, "time": 0.38941107161982735, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2014, + "noteOrder": 1968, "time": 0.394214093094808, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2016, "time": 0.40383031193772473, "position": { "x": 2, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2064, "time": 0.4134465307806414, "position": { "x": 8, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3048, "time": 0.6105535773280454, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 2, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3636, + "noteOrder": 3552, "time": 0.7115086113392377, "position": { "x": 2, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 2, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 8, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 8, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 2, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 6, @@ -1327,7 +1327,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 6, @@ -1350,7 +1350,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 6, @@ -1373,7 +1373,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 516, + "noteOrder": 504, "time": 0.1009550340111923, "position": { "x": 4, @@ -1396,7 +1396,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 4, @@ -1419,7 +1419,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 688, + "noteOrder": 672, "time": 0.13460671201492308, "position": { "x": 7, @@ -1442,7 +1442,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 7, @@ -1465,7 +1465,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 737, + "noteOrder": 720, "time": 0.1442229308578398, "position": { "x": 6, @@ -1488,7 +1488,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 6, @@ -1511,7 +1511,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 786, + "noteOrder": 768, "time": 0.15383914970075652, "position": { "x": 3, @@ -1534,7 +1534,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 3, @@ -1557,7 +1557,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 835, + "noteOrder": 816, "time": 0.1634553685436732, "position": { "x": 4, @@ -1580,7 +1580,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 4, @@ -1603,7 +1603,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 934, + "noteOrder": 912, "time": 0.18268780622950664, "position": { "x": 6, @@ -1626,7 +1626,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 6, @@ -1649,7 +1649,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 1008, "time": 0.2019100680223846, "position": { "x": 4, @@ -1672,7 +1672,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 4, @@ -1695,7 +1695,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1130, + "noteOrder": 1104, "time": 0.22114250570821803, "position": { "x": 4, @@ -1718,7 +1718,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 4, @@ -1741,7 +1741,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1228, + "noteOrder": 1200, "time": 0.24037494339405147, "position": { "x": 4, @@ -1764,7 +1764,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 4, @@ -1787,7 +1787,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1277, + "noteOrder": 1248, "time": 0.24999116223696818, "position": { "x": 6, @@ -1810,7 +1810,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 6, @@ -1833,7 +1833,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 3, @@ -1856,7 +1856,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 3, @@ -1879,7 +1879,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 6, @@ -1902,7 +1902,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 6, @@ -1925,7 +1925,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 4, @@ -1948,7 +1948,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 4, @@ -1971,7 +1971,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1572, + "noteOrder": 1536, "time": 0.30767829940151303, "position": { "x": 4, @@ -1994,7 +1994,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1597, + "noteOrder": 1560, "time": 0.3124914967694491, "position": { "x": 4, @@ -2017,7 +2017,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 6, @@ -2040,7 +2040,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 6, @@ -2063,7 +2063,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 3, @@ -2086,7 +2086,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 3, @@ -2109,7 +2109,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1728, "time": 0.34614317477317985, "position": { "x": 6, @@ -2132,7 +2132,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 6, @@ -2155,7 +2155,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1867, + "noteOrder": 1824, "time": 0.36536543656605786, "position": { "x": 2, @@ -2178,7 +2178,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 2, @@ -2201,7 +2201,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2039, + "noteOrder": 1992, "time": 0.39902729046274404, "position": { "x": 6, @@ -2224,7 +2224,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 6, @@ -2247,7 +2247,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 4, @@ -2270,7 +2270,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 4, @@ -2293,7 +2293,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2162, + "noteOrder": 2112, "time": 0.42306274962355817, "position": { "x": 4, @@ -2316,7 +2316,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 4, @@ -2339,7 +2339,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2186, + "noteOrder": 2136, "time": 0.4278657710985387, "position": { "x": 6, @@ -2362,7 +2362,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 6, @@ -2385,7 +2385,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 4, @@ -2408,7 +2408,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 4, @@ -2431,7 +2431,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 6, @@ -2454,7 +2454,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 6, @@ -2477,7 +2477,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2358, + "noteOrder": 2304, "time": 0.4615174491022695, "position": { "x": 6, @@ -2500,7 +2500,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 6, @@ -2523,7 +2523,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2383, + "noteOrder": 2328, "time": 0.46633064647020556, "position": { "x": 4, @@ -2546,7 +2546,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 4, @@ -2569,7 +2569,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 4, @@ -2592,7 +2592,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 4, @@ -2615,7 +2615,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 6, @@ -2638,7 +2638,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 6, @@ -2661,7 +2661,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2555, + "noteOrder": 2496, "time": 0.49998232447393637, "position": { "x": 6, @@ -2684,7 +2684,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 6, @@ -2707,7 +2707,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2604, + "noteOrder": 2544, "time": 0.5095985433168531, "position": { "x": 4, @@ -2730,7 +2730,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 4, @@ -2753,7 +2753,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2592, "time": 0.5192147621597698, "position": { "x": 6, @@ -2776,7 +2776,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 6, @@ -2799,7 +2799,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2640, "time": 0.5288208051097311, "position": { "x": 4, @@ -2822,7 +2822,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 4, @@ -2845,7 +2845,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2751, + "noteOrder": 2688, "time": 0.5384370239526477, "position": { "x": 6, @@ -2868,7 +2868,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 6, @@ -2891,7 +2891,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2801, + "noteOrder": 2736, "time": 0.5480532427955644, "position": { "x": 4, @@ -2914,7 +2914,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 4, @@ -2937,7 +2937,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2850, + "noteOrder": 2784, "time": 0.5576694616384812, "position": { "x": 6, @@ -2960,7 +2960,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 6, @@ -2983,7 +2983,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2874, + "noteOrder": 2808, "time": 0.5624724831134618, "position": { "x": 4, @@ -3006,7 +3006,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 4, @@ -3029,7 +3029,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 3, @@ -3052,7 +3052,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 3, @@ -3075,7 +3075,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 7, @@ -3098,7 +3098,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 7, @@ -3121,7 +3121,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 3, @@ -3144,7 +3144,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 3, @@ -3167,7 +3167,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 7, @@ -3190,7 +3190,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 7, @@ -3213,7 +3213,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 3, @@ -3236,7 +3236,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 3, @@ -3259,7 +3259,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 4, @@ -3282,7 +3282,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 4, @@ -3305,7 +3305,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3439, + "noteOrder": 3360, "time": 0.6730539118605262, "position": { "x": 6, @@ -3328,7 +3328,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 6, @@ -3351,7 +3351,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3538, + "noteOrder": 3456, "time": 0.6922761736534043, "position": { "x": 4, @@ -3374,7 +3374,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 4, @@ -3397,7 +3397,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 6, @@ -3420,7 +3420,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 6, @@ -3443,7 +3443,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 4, @@ -3466,7 +3466,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 4, @@ -3489,7 +3489,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 5, @@ -3512,7 +3512,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 5, @@ -3535,7 +3535,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 2, @@ -3558,7 +3558,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 2, @@ -3581,7 +3581,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 5, @@ -3604,7 +3604,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 5, @@ -3627,7 +3627,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 8, @@ -3650,7 +3650,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 8, @@ -3673,7 +3673,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3980, + "noteOrder": 3888, "time": 0.7788119673466992, "position": { "x": 4, @@ -3696,7 +3696,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 4, @@ -3719,7 +3719,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 6, @@ -3742,7 +3742,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 6, @@ -3765,7 +3765,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 4127, + "noteOrder": 4032, "time": 0.8076606238754495, "position": { "x": 7, @@ -3788,7 +3788,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 7, @@ -3811,7 +3811,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4080, "time": 0.8172768427183661, "position": { "x": 3, @@ -3834,7 +3834,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 3, @@ -3857,7 +3857,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4226, + "noteOrder": 4128, "time": 0.8268930615612828, "position": { "x": 7, @@ -3880,7 +3880,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 7, @@ -3903,7 +3903,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4176, "time": 0.8365092804041995, "position": { "x": 3, @@ -3926,7 +3926,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 3, @@ -3949,7 +3949,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4324, + "noteOrder": 4224, "time": 0.8461153233541607, "position": { "x": 7, @@ -3972,7 +3972,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 7, @@ -3995,7 +3995,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4373, + "noteOrder": 4272, "time": 0.8557315421970774, "position": { "x": 3, @@ -4018,7 +4018,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 3, @@ -4041,7 +4041,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 6, @@ -4064,7 +4064,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 6, @@ -4087,7 +4087,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 4447, + "noteOrder": 4344, "time": 0.8701609584079303, "position": { "x": 4, @@ -4110,7 +4110,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 4, @@ -4133,7 +4133,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 198.5, + "noteOrder": 193.5, "time": 0.03846487537166686, "position": { "x": 5, @@ -4161,7 +4161,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 247.5, + "noteOrder": 241.5, "time": 0.04807091832162811, "position": { "x": 5, @@ -4189,7 +4189,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 296.5, + "noteOrder": 289.5, "time": 0.057687137164544815, "position": { "x": 5, @@ -4217,7 +4217,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 345.5, + "noteOrder": 337.5, "time": 0.06730335600746154, "position": { "x": 5, @@ -4245,7 +4245,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 552.0, + "noteOrder": 540.0, "time": 0.1057682313791284, "position": { "x": 5, @@ -4273,7 +4273,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1057.5, + "noteOrder": 1033.5, "time": 0.2067232653903207, "position": { "x": 5, @@ -4301,7 +4301,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1156.5, + "noteOrder": 1129.5, "time": 0.22595570307615412, "position": { "x": 5, @@ -4329,7 +4329,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1254.5, + "noteOrder": 1225.5, "time": 0.2451779648690321, "position": { "x": 5, @@ -4357,7 +4357,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2212.5, + "noteOrder": 2161.5, "time": 0.43267896846647486, "position": { "x": 5, @@ -4385,7 +4385,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2310.5, + "noteOrder": 2257.5, "time": 0.4519012302593528, "position": { "x": 5, @@ -4413,7 +4413,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2335.5, + "noteOrder": 2281.5, "time": 0.45671442762728887, "position": { "x": 5, @@ -4441,7 +4441,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2409.5, + "noteOrder": 2353.5, "time": 0.47113366794518624, "position": { "x": 5, @@ -4469,7 +4469,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2507.5, + "noteOrder": 2449.5, "time": 0.4903661056310197, "position": { "x": 5, @@ -4497,7 +4497,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2531.5, + "noteOrder": 2473.5, "time": 0.4951691271060003, "position": { "x": 5, @@ -4525,7 +4525,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3391.5, + "noteOrder": 3313.5, "time": 0.6634376930176096, "position": { "x": 5, @@ -4553,7 +4553,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3416.5, + "noteOrder": 3337.5, "time": 0.6682407144925901, "position": { "x": 5, @@ -4581,7 +4581,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3489.5, + "noteOrder": 3409.5, "time": 0.6826599548104876, "position": { "x": 5, @@ -4609,7 +4609,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3514.5, + "noteOrder": 3433.5, "time": 0.6874731521784236, "position": { "x": 5, @@ -4637,7 +4637,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3686.5, + "noteOrder": 3601.5, "time": 0.7211248301821545, "position": { "x": 5, @@ -4665,7 +4665,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3722.0, + "noteOrder": 3636.0, "time": 0.7259278516571349, "position": { "x": 5, @@ -4693,7 +4693,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3844.0, + "noteOrder": 3756.0, "time": 0.7499734867109045, "position": { "x": 5, @@ -4721,7 +4721,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3943.0, + "noteOrder": 3852.0, "time": 0.7691957485037826, "position": { "x": 5, @@ -4749,7 +4749,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4041.0, + "noteOrder": 3948.0, "time": 0.788428186189616, "position": { "x": 5, @@ -4777,7 +4777,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4079.5, + "noteOrder": 3985.5, "time": 0.7980444050325326, "position": { "x": 5, @@ -4805,7 +4805,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4104.5, + "noteOrder": 4009.5, "time": 0.8028474265075133, "position": { "x": 5, @@ -4833,7 +4833,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4483.0, + "noteOrder": 4380.0, "time": 0.8749639798829109, "position": { "x": 5, @@ -4874,7 +4874,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 130, + "BPM": 127, "NPS": "2.18", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b_blockless.json index 27eb2561..9f130b40 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u30cf\u30c3\u30d4\u30fc\u30b7\u30f3\u30bb\u30b5\u30a4\u30b6 difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 393, + "noteOrder": 384, "time": 0.07691957485037826, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 418, + "noteOrder": 408, "time": 0.08172259632535889, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 442, + "noteOrder": 432, "time": 0.08653579369329496, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 467, + "noteOrder": 456, "time": 0.09133881516827559, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 590, + "noteOrder": 576, "time": 0.11538445022204512, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 614, + "noteOrder": 600, "time": 0.12018747169702573, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 639, + "noteOrder": 624, "time": 0.12499049317200635, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 884, + "noteOrder": 864, "time": 0.17307158738658993, "position": { "x": 7, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 909, + "noteOrder": 888, "time": 0.17787460886157055, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 983, + "noteOrder": 960, "time": 0.19230402507242336, "position": { "x": 4, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1007, + "noteOrder": 984, "time": 0.197107046547404, "position": { "x": 7, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1081, + "noteOrder": 1056, "time": 0.2115262868653013, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1080, "time": 0.21633948423323743, "position": { "x": 3, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1179, + "noteOrder": 1152, "time": 0.23075872455113475, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1204, + "noteOrder": 1176, "time": 0.23557192191907084, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1327, + "noteOrder": 1296, "time": 0.2596073810798849, "position": { "x": 5, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1351, + "noteOrder": 1320, "time": 0.26441040255486553, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1425, + "noteOrder": 1392, "time": 0.27883981876571834, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 2, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1523, + "noteOrder": 1488, "time": 0.2980620805585963, "position": { "x": 8, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1720, + "noteOrder": 1680, "time": 0.3365269559302631, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 5, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1965, + "noteOrder": 1920, "time": 0.3845978742518913, "position": { "x": 4, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1990, + "noteOrder": 1944, "time": 0.38941107161982735, "position": { "x": 6, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2014, + "noteOrder": 1968, "time": 0.394214093094808, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 2016, "time": 0.40383031193772473, "position": { "x": 2, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2113, + "noteOrder": 2064, "time": 0.4134465307806414, "position": { "x": 8, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 6, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 4, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3022, + "noteOrder": 2952, "time": 0.591321139642212, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 3048, "time": 0.6105535773280454, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3169, + "noteOrder": 3096, "time": 0.6201697961709621, "position": { "x": 5, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3218, + "noteOrder": 3144, "time": 0.6297860150138788, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3292, + "noteOrder": 3216, "time": 0.6442052553317762, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 2, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 8, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3636, + "noteOrder": 3552, "time": 0.7115086113392377, "position": { "x": 2, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 5, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 5, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4520, + "noteOrder": 4416, "time": 0.8845801987258276, "position": { "x": 2, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4545, + "noteOrder": 4440, "time": 0.8893832202008082, "position": { "x": 4, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4569, + "noteOrder": 4464, "time": 0.8941964175687442, "position": { "x": 6, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4594, + "noteOrder": 4488, "time": 0.898999439043725, "position": { "x": 8, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4619, + "noteOrder": 4512, "time": 0.9038126364116611, "position": { "x": 8, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4643, + "noteOrder": 4536, "time": 0.9086156578866417, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 4560, "time": 0.9134288552545777, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4692, + "noteOrder": 4584, "time": 0.9182318767295584, "position": { "x": 2, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4717, + "noteOrder": 4608, "time": 0.923034898204539, "position": { "x": 6, @@ -1327,7 +1327,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 491, + "noteOrder": 480, "time": 0.09615201253621168, "position": { "x": 6, @@ -1350,7 +1350,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 6, @@ -1373,7 +1373,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 516, + "noteOrder": 504, "time": 0.1009550340111923, "position": { "x": 4, @@ -1396,7 +1396,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 528, "time": 0.1057682313791284, "position": { "x": 4, @@ -1419,7 +1419,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 688, + "noteOrder": 672, "time": 0.13460671201492308, "position": { "x": 7, @@ -1442,7 +1442,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 712, + "noteOrder": 696, "time": 0.13941990938285917, "position": { "x": 7, @@ -1465,7 +1465,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 737, + "noteOrder": 720, "time": 0.1442229308578398, "position": { "x": 6, @@ -1488,7 +1488,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 762, + "noteOrder": 744, "time": 0.1490361282257759, "position": { "x": 6, @@ -1511,7 +1511,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 786, + "noteOrder": 768, "time": 0.15383914970075652, "position": { "x": 3, @@ -1534,7 +1534,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 811, + "noteOrder": 792, "time": 0.15865234706869258, "position": { "x": 3, @@ -1557,7 +1557,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 835, + "noteOrder": 816, "time": 0.1634553685436732, "position": { "x": 4, @@ -1580,7 +1580,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 860, + "noteOrder": 840, "time": 0.16825839001865384, "position": { "x": 4, @@ -1603,7 +1603,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 934, + "noteOrder": 912, "time": 0.18268780622950664, "position": { "x": 6, @@ -1626,7 +1626,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 958, + "noteOrder": 936, "time": 0.18749082770448727, "position": { "x": 6, @@ -1649,7 +1649,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 1008, "time": 0.2019100680223846, "position": { "x": 4, @@ -1672,7 +1672,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 1056, + "noteOrder": 1032, "time": 0.2067232653903207, "position": { "x": 4, @@ -1695,7 +1695,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 1130, + "noteOrder": 1104, "time": 0.22114250570821803, "position": { "x": 4, @@ -1718,7 +1718,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 1155, + "noteOrder": 1128, "time": 0.22595570307615412, "position": { "x": 4, @@ -1741,7 +1741,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1228, + "noteOrder": 1200, "time": 0.24037494339405147, "position": { "x": 4, @@ -1764,7 +1764,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1253, + "noteOrder": 1224, "time": 0.2451779648690321, "position": { "x": 4, @@ -1787,7 +1787,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1277, + "noteOrder": 1248, "time": 0.24999116223696818, "position": { "x": 6, @@ -1810,7 +1810,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 6, @@ -1833,7 +1833,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1302, + "noteOrder": 1272, "time": 0.25479418371194884, "position": { "x": 3, @@ -1856,7 +1856,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 3, @@ -1879,7 +1879,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1376, + "noteOrder": 1344, "time": 0.2692235999228016, "position": { "x": 6, @@ -1902,7 +1902,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1449, + "noteOrder": 1416, "time": 0.2836428402406989, "position": { "x": 6, @@ -1925,7 +1925,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1474, + "noteOrder": 1440, "time": 0.2884458617156796, "position": { "x": 4, @@ -1948,7 +1948,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1548, + "noteOrder": 1512, "time": 0.30287527792653235, "position": { "x": 4, @@ -1971,7 +1971,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1572, + "noteOrder": 1536, "time": 0.30767829940151303, "position": { "x": 4, @@ -1994,7 +1994,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1597, + "noteOrder": 1560, "time": 0.3124914967694491, "position": { "x": 4, @@ -2017,7 +2017,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1621, + "noteOrder": 1584, "time": 0.3172945182444297, "position": { "x": 6, @@ -2040,7 +2040,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1646, + "noteOrder": 1608, "time": 0.32209753971941035, "position": { "x": 6, @@ -2063,7 +2063,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1671, + "noteOrder": 1632, "time": 0.3269107370873464, "position": { "x": 3, @@ -2086,7 +2086,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1744, + "noteOrder": 1704, "time": 0.3413299774052438, "position": { "x": 3, @@ -2109,7 +2109,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1769, + "noteOrder": 1728, "time": 0.34614317477317985, "position": { "x": 6, @@ -2132,7 +2132,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1818, + "noteOrder": 1776, "time": 0.35575939361609654, "position": { "x": 6, @@ -2155,7 +2155,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1867, + "noteOrder": 1824, "time": 0.36536543656605786, "position": { "x": 2, @@ -2178,7 +2178,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1916, + "noteOrder": 1872, "time": 0.37498165540897455, "position": { "x": 2, @@ -2201,7 +2201,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2039, + "noteOrder": 1992, "time": 0.39902729046274404, "position": { "x": 6, @@ -2224,7 +2224,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 6, @@ -2247,7 +2247,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2088, + "noteOrder": 2040, "time": 0.40863333341270525, "position": { "x": 4, @@ -2270,7 +2270,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2137, + "noteOrder": 2088, "time": 0.418249552255622, "position": { "x": 4, @@ -2293,7 +2293,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2162, + "noteOrder": 2112, "time": 0.42306274962355817, "position": { "x": 4, @@ -2316,7 +2316,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 4, @@ -2339,7 +2339,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2186, + "noteOrder": 2136, "time": 0.4278657710985387, "position": { "x": 6, @@ -2362,7 +2362,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2236, + "noteOrder": 2184, "time": 0.43748198994145543, "position": { "x": 6, @@ -2385,7 +2385,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 4, @@ -2408,7 +2408,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 4, @@ -2431,7 +2431,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2260, + "noteOrder": 2208, "time": 0.44228501141643606, "position": { "x": 6, @@ -2454,7 +2454,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2334, + "noteOrder": 2280, "time": 0.45671442762728887, "position": { "x": 6, @@ -2477,7 +2477,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2358, + "noteOrder": 2304, "time": 0.4615174491022695, "position": { "x": 6, @@ -2500,7 +2500,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 6, @@ -2523,7 +2523,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2383, + "noteOrder": 2328, "time": 0.46633064647020556, "position": { "x": 4, @@ -2546,7 +2546,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2432, + "noteOrder": 2376, "time": 0.4759468653131223, "position": { "x": 4, @@ -2569,7 +2569,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 4, @@ -2592,7 +2592,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 4, @@ -2615,7 +2615,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2457, + "noteOrder": 2400, "time": 0.48074988678810293, "position": { "x": 6, @@ -2638,7 +2638,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2530, + "noteOrder": 2472, "time": 0.4951691271060003, "position": { "x": 6, @@ -2661,7 +2661,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2555, + "noteOrder": 2496, "time": 0.49998232447393637, "position": { "x": 6, @@ -2684,7 +2684,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2580, + "noteOrder": 2520, "time": 0.504785345948917, "position": { "x": 6, @@ -2707,7 +2707,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2604, + "noteOrder": 2544, "time": 0.5095985433168531, "position": { "x": 4, @@ -2730,7 +2730,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2629, + "noteOrder": 2568, "time": 0.5144015647918337, "position": { "x": 4, @@ -2753,7 +2753,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2653, + "noteOrder": 2592, "time": 0.5192147621597698, "position": { "x": 6, @@ -2776,7 +2776,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2678, + "noteOrder": 2616, "time": 0.5240177836347505, "position": { "x": 6, @@ -2799,7 +2799,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2702, + "noteOrder": 2640, "time": 0.5288208051097311, "position": { "x": 4, @@ -2822,7 +2822,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2727, + "noteOrder": 2664, "time": 0.5336340024776671, "position": { "x": 4, @@ -2845,7 +2845,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2751, + "noteOrder": 2688, "time": 0.5384370239526477, "position": { "x": 6, @@ -2868,7 +2868,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2712, "time": 0.5432502213205839, "position": { "x": 6, @@ -2891,7 +2891,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2801, + "noteOrder": 2736, "time": 0.5480532427955644, "position": { "x": 4, @@ -2914,7 +2914,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2825, + "noteOrder": 2760, "time": 0.5528664401635006, "position": { "x": 4, @@ -2937,7 +2937,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2850, + "noteOrder": 2784, "time": 0.5576694616384812, "position": { "x": 6, @@ -2960,7 +2960,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 6, @@ -2983,7 +2983,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2874, + "noteOrder": 2808, "time": 0.5624724831134618, "position": { "x": 4, @@ -3006,7 +3006,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2923, + "noteOrder": 2856, "time": 0.5720887019563785, "position": { "x": 4, @@ -3029,7 +3029,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2948, + "noteOrder": 2880, "time": 0.5769018993243146, "position": { "x": 3, @@ -3052,7 +3052,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2997, + "noteOrder": 2928, "time": 0.5865181181672313, "position": { "x": 3, @@ -3075,7 +3075,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 3046, + "noteOrder": 2976, "time": 0.5961343370101481, "position": { "x": 7, @@ -3098,7 +3098,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 3095, + "noteOrder": 3024, "time": 0.6057403799601093, "position": { "x": 7, @@ -3121,7 +3121,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 3145, + "noteOrder": 3072, "time": 0.6153565988030261, "position": { "x": 3, @@ -3144,7 +3144,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 3, @@ -3167,7 +3167,7 @@ { "lineGroupId": 99, "indexInLine": 1, - "noteOrder": 3194, + "noteOrder": 3120, "time": 0.6249728176459427, "position": { "x": 7, @@ -3190,7 +3190,7 @@ { "lineGroupId": 99, "indexInLine": 2, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 7, @@ -3213,7 +3213,7 @@ { "lineGroupId": 101, "indexInLine": 1, - "noteOrder": 3243, + "noteOrder": 3168, "time": 0.6345890364888594, "position": { "x": 3, @@ -3236,7 +3236,7 @@ { "lineGroupId": 101, "indexInLine": 2, - "noteOrder": 3317, + "noteOrder": 3240, "time": 0.6490082768067568, "position": { "x": 3, @@ -3259,7 +3259,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3341, + "noteOrder": 3264, "time": 0.6538214741746928, "position": { "x": 4, @@ -3282,7 +3282,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3366, + "noteOrder": 3288, "time": 0.6586244956496735, "position": { "x": 4, @@ -3305,7 +3305,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3439, + "noteOrder": 3360, "time": 0.6730539118605262, "position": { "x": 6, @@ -3328,7 +3328,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3464, + "noteOrder": 3384, "time": 0.677856933335507, "position": { "x": 6, @@ -3351,7 +3351,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3538, + "noteOrder": 3456, "time": 0.6922761736534043, "position": { "x": 4, @@ -3374,7 +3374,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 4, @@ -3397,7 +3397,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3587, + "noteOrder": 3504, "time": 0.701892392496321, "position": { "x": 6, @@ -3420,7 +3420,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 6, @@ -3443,7 +3443,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 3660, + "noteOrder": 3576, "time": 0.7163218087071739, "position": { "x": 4, @@ -3466,7 +3466,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 3710, + "noteOrder": 3624, "time": 0.7259278516571349, "position": { "x": 4, @@ -3489,7 +3489,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3783, + "noteOrder": 3696, "time": 0.7403572678679878, "position": { "x": 5, @@ -3512,7 +3512,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 5, @@ -3535,7 +3535,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3808, + "noteOrder": 3720, "time": 0.7451602893429684, "position": { "x": 2, @@ -3558,7 +3558,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3832, + "noteOrder": 3744, "time": 0.7499734867109045, "position": { "x": 2, @@ -3581,7 +3581,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 3882, + "noteOrder": 3792, "time": 0.7595897055538212, "position": { "x": 5, @@ -3604,7 +3604,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 5, @@ -3627,7 +3627,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 3906, + "noteOrder": 3816, "time": 0.7643927270288018, "position": { "x": 8, @@ -3650,7 +3650,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 3931, + "noteOrder": 3840, "time": 0.7691957485037826, "position": { "x": 8, @@ -3673,7 +3673,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3980, + "noteOrder": 3888, "time": 0.7788119673466992, "position": { "x": 4, @@ -3696,7 +3696,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 4, @@ -3719,7 +3719,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 4004, + "noteOrder": 3912, "time": 0.7836251647146353, "position": { "x": 6, @@ -3742,7 +3742,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 4029, + "noteOrder": 3936, "time": 0.788428186189616, "position": { "x": 6, @@ -3765,7 +3765,7 @@ { "lineGroupId": 129, "indexInLine": 1, - "noteOrder": 4127, + "noteOrder": 4032, "time": 0.8076606238754495, "position": { "x": 7, @@ -3788,7 +3788,7 @@ { "lineGroupId": 129, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 4056, "time": 0.81246364535043, "position": { "x": 7, @@ -3811,7 +3811,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 4080, "time": 0.8172768427183661, "position": { "x": 3, @@ -3834,7 +3834,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 4201, + "noteOrder": 4104, "time": 0.8220798641933468, "position": { "x": 3, @@ -3857,7 +3857,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4226, + "noteOrder": 4128, "time": 0.8268930615612828, "position": { "x": 7, @@ -3880,7 +3880,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4250, + "noteOrder": 4152, "time": 0.8316960830362634, "position": { "x": 7, @@ -3903,7 +3903,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 4275, + "noteOrder": 4176, "time": 0.8365092804041995, "position": { "x": 3, @@ -3926,7 +3926,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 4299, + "noteOrder": 4200, "time": 0.8413123018791802, "position": { "x": 3, @@ -3949,7 +3949,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4324, + "noteOrder": 4224, "time": 0.8461153233541607, "position": { "x": 7, @@ -3972,7 +3972,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4348, + "noteOrder": 4248, "time": 0.8509285207220969, "position": { "x": 7, @@ -3995,7 +3995,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 4373, + "noteOrder": 4272, "time": 0.8557315421970774, "position": { "x": 3, @@ -4018,7 +4018,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 4397, + "noteOrder": 4296, "time": 0.8605447395650135, "position": { "x": 3, @@ -4041,7 +4041,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 4422, + "noteOrder": 4320, "time": 0.8653477610399942, "position": { "x": 6, @@ -4064,7 +4064,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 6, @@ -4087,7 +4087,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 4447, + "noteOrder": 4344, "time": 0.8701609584079303, "position": { "x": 4, @@ -4110,7 +4110,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 4471, + "noteOrder": 4368, "time": 0.8749639798829109, "position": { "x": 4, @@ -4145,7 +4145,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 130, + "BPM": 127, "NPS": "2.18", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/info.json b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/info.json index d492cc70..5bd150c6 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ハッピーシンセサイザ/info.json @@ -3,7 +3,7 @@ "SongName": "\u30cf\u30c3\u30d4\u30fc\u30b7\u30f3\u30bb\u30b5\u30a4\u30b6", "SongLength": "98.271474", "SongAuthorName": "EasyPop", - "Bpm": "130", + "Bpm": "127", "SongPath": "2.ogg", "CreateTicks": 636113088000000000, "CreateTime": "636113088000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a.json index 0e6c085a..e9529993 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00 difficulty_1a", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 101, "time": 0.011028089682011789, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 127, "time": 0.013785112102514737, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 203, "time": 0.022056179364023577, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 228, "time": 0.024813201784526524, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 304, "time": 0.03308426904603537, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 330, "time": 0.03584129146653831, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 355, "time": 0.038598313887041255, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 380, "time": 0.041355336307544205, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 406, "time": 0.044112358728047155, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 406, "time": 0.044112358728047155, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 431, "time": 0.046869381148550104, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 431, "time": 0.046869381148550104, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 456, "time": 0.04962640356905305, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 456, "time": 0.04962640356905305, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 529, + "noteOrder": 558, "time": 0.06065449325106484, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 601, + "noteOrder": 634, "time": 0.06892556051257367, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 659, "time": 0.07168258293307662, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 649, + "noteOrder": 685, "time": 0.07443960535357957, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 761, "time": 0.08271067261508841, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 837, "time": 0.09098173987659726, "position": { "x": 2, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 862, "time": 0.09373876229710021, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1090, "time": 0.11855196408162672, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1058, + "noteOrder": 1116, "time": 0.12130898650212968, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1250, + "noteOrder": 1318, "time": 0.14336516586615325, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1344, "time": 0.1461221882866562, "position": { "x": 5, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1420, "time": 0.15439325554816502, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1445, "time": 0.157150277968668, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1623, "time": 0.17644943491218862, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1648, "time": 0.17920645733269155, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1634, + "noteOrder": 1724, "time": 0.18747752459420042, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1749, "time": 0.19023454701470335, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1683, + "noteOrder": 1775, "time": 0.1929915694352063, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1876, "time": 0.2040196591172181, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1803, + "noteOrder": 1901, "time": 0.20677668153772105, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1978, "time": 0.2150477487992299, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 2003, "time": 0.21780477121973282, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 2079, "time": 0.22607583848124166, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1995, + "noteOrder": 2104, "time": 0.22883286090174462, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2180, "time": 0.23710392816325343, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2206, "time": 0.2398609505837564, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2256, "time": 0.2453749954247623, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2307, "time": 0.2508890402657682, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2358, "time": 0.2564030851067741, "position": { "x": 2, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2409, "time": 0.26191712994778, "position": { "x": 8, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3499, "time": 0.3804690940294067, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3549, "time": 0.3859831388704126, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3600, "time": 0.3914971837114185, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3651, "time": 0.3970112285524244, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3676, "time": 0.39976825097292734, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3702, "time": 0.4025252733934303, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3752, "time": 0.4080393182344362, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3778, "time": 0.41079634065493914, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3803, "time": 0.4135533630754421, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3828, "time": 0.416310385495945, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3702, + "noteOrder": 3904, "time": 0.42458145275745385, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3917, "time": 0.42595996396770536, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3930, "time": 0.4273384751779568, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 4006, "time": 0.43560954243946565, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3810, + "noteOrder": 4018, "time": 0.4369880536497171, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 4031, "time": 0.4383665648599686, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 4056, "time": 0.4411235872804716, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3858, + "noteOrder": 4069, "time": 0.44250209849072303, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 4082, "time": 0.44388060970097454, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 4107, "time": 0.4466376321214774, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 4120, "time": 0.4480161433317289, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 4133, "time": 0.44939465454198035, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3978, + "noteOrder": 4196, "time": 0.4562872105932378, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4247, "time": 0.4618012554342436, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4310, "time": 0.46869381148550104, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4386, "time": 0.4769648787470098, "position": { "x": 8, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4411, "time": 0.4797219011675128, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4437, "time": 0.48247892358801575, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4487, "time": 0.4879929684290217, "position": { "x": 2, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4513, "time": 0.4907499908495246, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4538, "time": 0.49350701327002755, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4589, "time": 0.4990210581110335, "position": { "x": 8, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4614, "time": 0.5017780805315364, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4690, "time": 0.5100491477930452, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4716, "time": 0.5128061702135482, "position": { "x": 2, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4741, "time": 0.5155631926340511, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4817, "time": 0.52383425989556, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4893, "time": 0.5321053271570688, "position": { "x": 8, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4918, "time": 0.5348623495775717, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4944, "time": 0.5376193719980747, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4995, "time": 0.5431334168390807, "position": { "x": 2, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 5045, "time": 0.5486474616800865, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 5223, "time": 0.5679466186236072, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5048, + "noteOrder": 5324, "time": 0.5789747083056189, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5628, "time": 0.6120589773516543, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5654, "time": 0.6148159997721573, "position": { "x": 5, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5408, + "noteOrder": 5704, "time": 0.6203300446131631, "position": { "x": 8, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5730, "time": 0.6230870670336661, "position": { "x": 7, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5755, "time": 0.625844089454169, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5504, + "noteOrder": 5806, "time": 0.6313581342951748, "position": { "x": 2, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5831, "time": 0.6341151567156779, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5552, + "noteOrder": 5857, "time": 0.6368721791361808, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 7, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 6009, + "noteOrder": 6338, "time": 0.6892556051257368, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 6370, + "noteOrder": 6719, "time": 0.730610941433281, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6769, "time": 0.7361249862742869, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 6430, + "noteOrder": 6782, "time": 0.7375034974845384, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 8, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6610, + "noteOrder": 6972, "time": 0.7581811656383104, "position": { "x": 4, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 2, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6706, + "noteOrder": 7073, "time": 0.7692092553203222, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 5, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 5, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6970, + "noteOrder": 7352, "time": 0.7995365019458547, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 5, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 7067, + "noteOrder": 7454, "time": 0.8105645916278665, "position": { "x": 3, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 7091, + "noteOrder": 7479, "time": 0.8133216140483694, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 7235, + "noteOrder": 7631, "time": 0.8298637485713871, "position": { "x": 2, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 7259, + "noteOrder": 7657, "time": 0.83262077099189, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 7283, + "noteOrder": 7682, "time": 0.835377793412393, "position": { "x": 3, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 8, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7379, + "noteOrder": 7783, "time": 0.8464058830944048, "position": { "x": 7, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 4, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 6, @@ -2967,7 +2967,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 152, "time": 0.016542134523017685, "position": { "x": 3, @@ -2990,7 +2990,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 177, "time": 0.019299156943520628, "position": { "x": 3, @@ -3013,7 +3013,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 254, "time": 0.027570224205029473, "position": { "x": 7, @@ -3036,7 +3036,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 264, + "noteOrder": 279, "time": 0.03032724662553242, "position": { "x": 7, @@ -3059,7 +3059,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 481, + "noteOrder": 507, "time": 0.05514044841005895, "position": { "x": 7, @@ -3082,7 +3082,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 493, + "noteOrder": 520, "time": 0.056518959620310415, "position": { "x": 7, @@ -3105,7 +3105,7 @@ { "lineGroupId": 18, "indexInLine": 3, - "noteOrder": 493, + "noteOrder": 520, "time": 0.056518959620310415, "position": { "x": 6, @@ -3128,7 +3128,7 @@ { "lineGroupId": 18, "indexInLine": 4, - "noteOrder": 499.0, + "noteOrder": 526.0, "time": 0.056518959620310415, "position": { "x": 6, @@ -3151,7 +3151,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 7, @@ -3174,7 +3174,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 545, "time": 0.05927598204081336, "position": { "x": 7, @@ -3197,7 +3197,7 @@ { "lineGroupId": 19, "indexInLine": 3, - "noteOrder": 517, + "noteOrder": 545, "time": 0.05927598204081336, "position": { "x": 6, @@ -3220,7 +3220,7 @@ { "lineGroupId": 19, "indexInLine": 4, - "noteOrder": 523.0, + "noteOrder": 551.0, "time": 0.05927598204081336, "position": { "x": 6, @@ -3243,7 +3243,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 577, + "noteOrder": 608, "time": 0.06616853809207074, "position": { "x": 7, @@ -3266,7 +3266,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 649, + "noteOrder": 685, "time": 0.07443960535357957, "position": { "x": 7, @@ -3289,7 +3289,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 673, + "noteOrder": 710, "time": 0.07719662777408251, "position": { "x": 3, @@ -3312,7 +3312,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 685, + "noteOrder": 723, "time": 0.078575138984334, "position": { "x": 3, @@ -3335,7 +3335,7 @@ { "lineGroupId": 26, "indexInLine": 3, - "noteOrder": 685, + "noteOrder": 723, "time": 0.078575138984334, "position": { "x": 4, @@ -3358,7 +3358,7 @@ { "lineGroupId": 26, "indexInLine": 4, - "noteOrder": 691.0, + "noteOrder": 729.0, "time": 0.078575138984334, "position": { "x": 4, @@ -3381,7 +3381,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 3, @@ -3404,7 +3404,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 709, + "noteOrder": 748, "time": 0.08133216140483694, "position": { "x": 3, @@ -3427,7 +3427,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 709, + "noteOrder": 748, "time": 0.08133216140483694, "position": { "x": 4, @@ -3450,7 +3450,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 715.0, + "noteOrder": 754.0, "time": 0.08133216140483694, "position": { "x": 4, @@ -3473,7 +3473,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 769, + "noteOrder": 811, "time": 0.08822471745609431, "position": { "x": 3, @@ -3496,7 +3496,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 841, + "noteOrder": 887, "time": 0.09649578471760314, "position": { "x": 3, @@ -3519,7 +3519,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 841, + "noteOrder": 887, "time": 0.09649578471760314, "position": { "x": 5, @@ -3542,7 +3542,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 865, + "noteOrder": 913, "time": 0.0992528071381061, "position": { "x": 5, @@ -3565,7 +3565,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 889, + "noteOrder": 938, "time": 0.10200982955860904, "position": { "x": 7, @@ -3588,7 +3588,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 7, @@ -3611,7 +3611,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 937, + "noteOrder": 989, "time": 0.10752387439961494, "position": { "x": 5, @@ -3634,7 +3634,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 5, @@ -3657,7 +3657,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 985, + "noteOrder": 1039, "time": 0.11303791924062083, "position": { "x": 3, @@ -3680,7 +3680,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 3, @@ -3703,7 +3703,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 7, @@ -3726,7 +3726,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 7, @@ -3749,7 +3749,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 3, @@ -3772,7 +3772,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 3, @@ -3795,7 +3795,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1298, + "noteOrder": 1369, "time": 0.14887921070715915, "position": { "x": 3, @@ -3818,7 +3818,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1322, + "noteOrder": 1394, "time": 0.15163623312766208, "position": { "x": 3, @@ -3841,7 +3841,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1394, + "noteOrder": 1470, "time": 0.15990730038917095, "position": { "x": 7, @@ -3864,7 +3864,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1418, + "noteOrder": 1496, "time": 0.16266432280967388, "position": { "x": 7, @@ -3887,7 +3887,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1442, + "noteOrder": 1521, "time": 0.16542134523017682, "position": { "x": 7, @@ -3910,7 +3910,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 7, @@ -3933,7 +3933,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1490, + "noteOrder": 1572, "time": 0.17093539007118275, "position": { "x": 3, @@ -3956,7 +3956,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 3, @@ -3979,7 +3979,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 6, @@ -4002,7 +4002,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1610, + "noteOrder": 1699, "time": 0.18472050217369745, "position": { "x": 6, @@ -4025,7 +4025,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 4, @@ -4048,7 +4048,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1610, + "noteOrder": 1699, "time": 0.18472050217369745, "position": { "x": 4, @@ -4071,7 +4071,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1731, + "noteOrder": 1825, "time": 0.1985056142762122, "position": { "x": 3, @@ -4094,7 +4094,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1743, + "noteOrder": 1838, "time": 0.19988412548646367, "position": { "x": 3, @@ -4117,7 +4117,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 1743, + "noteOrder": 1838, "time": 0.19988412548646367, "position": { "x": 4, @@ -4140,7 +4140,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 1749.0, + "noteOrder": 1844.0, "time": 0.19988412548646367, "position": { "x": 4, @@ -4163,7 +4163,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1851, "time": 0.20126263669671515, "position": { "x": 3, @@ -4186,7 +4186,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1767, + "noteOrder": 1863, "time": 0.20264114790696663, "position": { "x": 3, @@ -4209,7 +4209,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 1767, + "noteOrder": 1863, "time": 0.20264114790696663, "position": { "x": 4, @@ -4232,7 +4232,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 1773.0, + "noteOrder": 1869.0, "time": 0.20264114790696663, "position": { "x": 4, @@ -4255,7 +4255,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1827, + "noteOrder": 1927, "time": 0.209533703958224, "position": { "x": 7, @@ -4278,7 +4278,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 1940, "time": 0.21091221516847544, "position": { "x": 7, @@ -4301,7 +4301,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1839, + "noteOrder": 1940, "time": 0.21091221516847544, "position": { "x": 6, @@ -4324,7 +4324,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1845.0, + "noteOrder": 1946.0, "time": 0.21091221516847544, "position": { "x": 6, @@ -4347,7 +4347,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1851, + "noteOrder": 1952, "time": 0.21229072637872692, "position": { "x": 7, @@ -4370,7 +4370,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1863, + "noteOrder": 1965, "time": 0.2136692375889784, "position": { "x": 7, @@ -4393,7 +4393,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1863, + "noteOrder": 1965, "time": 0.2136692375889784, "position": { "x": 6, @@ -4416,7 +4416,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1869.0, + "noteOrder": 1971.0, "time": 0.2136692375889784, "position": { "x": 6, @@ -4439,7 +4439,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1923, + "noteOrder": 2028, "time": 0.2205617936402358, "position": { "x": 3, @@ -4462,7 +4462,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1935, + "noteOrder": 2041, "time": 0.22194030485048727, "position": { "x": 3, @@ -4485,7 +4485,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1935, + "noteOrder": 2041, "time": 0.22194030485048727, "position": { "x": 4, @@ -4508,7 +4508,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1941.0, + "noteOrder": 2047.0, "time": 0.22194030485048727, "position": { "x": 4, @@ -4531,7 +4531,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1947, + "noteOrder": 2054, "time": 0.2233188160607387, "position": { "x": 3, @@ -4554,7 +4554,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1959, + "noteOrder": 2066, "time": 0.22469732727099018, "position": { "x": 3, @@ -4577,7 +4577,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 1959, + "noteOrder": 2066, "time": 0.22469732727099018, "position": { "x": 4, @@ -4600,7 +4600,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 1965.0, + "noteOrder": 2072.0, "time": 0.22469732727099018, "position": { "x": 4, @@ -4623,7 +4623,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2019, + "noteOrder": 2130, "time": 0.23158988332224756, "position": { "x": 7, @@ -4646,7 +4646,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2031, + "noteOrder": 2142, "time": 0.23296839453249904, "position": { "x": 7, @@ -4669,7 +4669,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2031, + "noteOrder": 2142, "time": 0.23296839453249904, "position": { "x": 6, @@ -4692,7 +4692,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2037.0, + "noteOrder": 2148.0, "time": 0.23296839453249904, "position": { "x": 6, @@ -4715,7 +4715,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2043, + "noteOrder": 2155, "time": 0.23434690574275052, "position": { "x": 7, @@ -4738,7 +4738,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2055, + "noteOrder": 2168, "time": 0.235725416953002, "position": { "x": 7, @@ -4761,7 +4761,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2055, + "noteOrder": 2168, "time": 0.235725416953002, "position": { "x": 6, @@ -4784,7 +4784,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2061.0, + "noteOrder": 2174.0, "time": 0.235725416953002, "position": { "x": 6, @@ -4807,7 +4807,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2231, "time": 0.24261797300425936, "position": { "x": 3, @@ -4830,7 +4830,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 3, @@ -4853,7 +4853,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 7, @@ -4876,7 +4876,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 7, @@ -4899,7 +4899,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 3, @@ -4922,7 +4922,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 3, @@ -4945,7 +4945,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 7, @@ -4968,7 +4968,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 7, @@ -4991,7 +4991,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 8, @@ -5014,7 +5014,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2319, + "noteOrder": 2447, "time": 0.2660526635785344, "position": { "x": 8, @@ -5037,7 +5037,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 2319, + "noteOrder": 2447, "time": 0.2660526635785344, "position": { "x": 6, @@ -5060,7 +5060,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 2325.0, + "noteOrder": 2453.0, "time": 0.2660526635785344, "position": { "x": 6, @@ -5083,7 +5083,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2331, + "noteOrder": 2459, "time": 0.26743117478878586, "position": { "x": 8, @@ -5106,7 +5106,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2344, + "noteOrder": 2472, "time": 0.2688096859990374, "position": { "x": 8, @@ -5129,7 +5129,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2344, + "noteOrder": 2472, "time": 0.2688096859990374, "position": { "x": 6, @@ -5152,7 +5152,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 6, @@ -5175,7 +5175,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2356, + "noteOrder": 2485, "time": 0.2701881972092888, "position": { "x": 8, @@ -5198,7 +5198,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 3, @@ -5221,7 +5221,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2500, + "noteOrder": 2637, "time": 0.2867303317323065, "position": { "x": 3, @@ -5244,7 +5244,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 3, @@ -5267,7 +5267,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2548, + "noteOrder": 2687, "time": 0.2922443765733124, "position": { "x": 3, @@ -5290,7 +5290,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 3, @@ -5313,7 +5313,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2596, + "noteOrder": 2738, "time": 0.2977584214143183, "position": { "x": 7, @@ -5336,7 +5336,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 7, @@ -5359,7 +5359,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2644, + "noteOrder": 2789, "time": 0.30327246625532417, "position": { "x": 7, @@ -5382,7 +5382,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 7, @@ -5405,7 +5405,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2692, + "noteOrder": 2840, "time": 0.30878651109633004, "position": { "x": 3, @@ -5428,7 +5428,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2704, + "noteOrder": 2852, "time": 0.31016502230658155, "position": { "x": 3, @@ -5451,7 +5451,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2704, + "noteOrder": 2852, "time": 0.31016502230658155, "position": { "x": 4, @@ -5474,7 +5474,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2710.0, + "noteOrder": 2858.0, "time": 0.31016502230658155, "position": { "x": 4, @@ -5497,7 +5497,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 7, @@ -5520,7 +5520,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2728, + "noteOrder": 2878, "time": 0.3129220447270845, "position": { "x": 7, @@ -5543,7 +5543,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2728, + "noteOrder": 2878, "time": 0.3129220447270845, "position": { "x": 6, @@ -5566,7 +5566,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2734.0, + "noteOrder": 2884.0, "time": 0.3129220447270845, "position": { "x": 6, @@ -5589,7 +5589,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2740, + "noteOrder": 2890, "time": 0.314300555937336, "position": { "x": 3, @@ -5612,7 +5612,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2752, + "noteOrder": 2903, "time": 0.3156790671475874, "position": { "x": 3, @@ -5635,7 +5635,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 2752, + "noteOrder": 2903, "time": 0.3156790671475874, "position": { "x": 4, @@ -5658,7 +5658,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 2758.0, + "noteOrder": 2909.0, "time": 0.3156790671475874, "position": { "x": 4, @@ -5681,7 +5681,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 7, @@ -5704,7 +5704,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2928, "time": 0.3184360895680904, "position": { "x": 7, @@ -5727,7 +5727,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 2776, + "noteOrder": 2928, "time": 0.3184360895680904, "position": { "x": 6, @@ -5750,7 +5750,7 @@ { "lineGroupId": 109, "indexInLine": 4, - "noteOrder": 2782.0, + "noteOrder": 2934.0, "time": 0.3184360895680904, "position": { "x": 6, @@ -5773,7 +5773,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2788, + "noteOrder": 2941, "time": 0.3198146007783419, "position": { "x": 2, @@ -5796,7 +5796,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2800, + "noteOrder": 2954, "time": 0.32119311198859335, "position": { "x": 2, @@ -5819,7 +5819,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 2800, + "noteOrder": 2954, "time": 0.32119311198859335, "position": { "x": 3, @@ -5842,7 +5842,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 2806.0, + "noteOrder": 2960.0, "time": 0.32119311198859335, "position": { "x": 3, @@ -5865,7 +5865,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 8, @@ -5888,7 +5888,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2824, + "noteOrder": 2979, "time": 0.32395013440909626, "position": { "x": 8, @@ -5911,7 +5911,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2824, + "noteOrder": 2979, "time": 0.32395013440909626, "position": { "x": 7, @@ -5934,7 +5934,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2830.0, + "noteOrder": 2985.0, "time": 0.32395013440909626, "position": { "x": 7, @@ -5957,7 +5957,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2836, + "noteOrder": 2992, "time": 0.32532864561934777, "position": { "x": 2, @@ -5980,7 +5980,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2848, + "noteOrder": 3004, "time": 0.3267071568295993, "position": { "x": 2, @@ -6003,7 +6003,7 @@ { "lineGroupId": 112, "indexInLine": 3, - "noteOrder": 2848, + "noteOrder": 3004, "time": 0.3267071568295993, "position": { "x": 3, @@ -6026,7 +6026,7 @@ { "lineGroupId": 112, "indexInLine": 4, - "noteOrder": 2854.0, + "noteOrder": 3010.0, "time": 0.3267071568295993, "position": { "x": 3, @@ -6049,7 +6049,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 8, @@ -6072,7 +6072,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2872, + "noteOrder": 3030, "time": 0.3294641792501022, "position": { "x": 8, @@ -6095,7 +6095,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 2872, + "noteOrder": 3030, "time": 0.3294641792501022, "position": { "x": 7, @@ -6118,7 +6118,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 2878.0, + "noteOrder": 3036.0, "time": 0.3294641792501022, "position": { "x": 7, @@ -6141,7 +6141,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2884, + "noteOrder": 3042, "time": 0.33084269046035364, "position": { "x": 3, @@ -6164,7 +6164,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 3, @@ -6187,7 +6187,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 5, @@ -6210,7 +6210,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 7, @@ -6233,7 +6233,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 7, @@ -6256,7 +6256,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 5, @@ -6279,7 +6279,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 3, @@ -6302,7 +6302,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 3, @@ -6325,7 +6325,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 5, @@ -6348,7 +6348,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 7, @@ -6371,7 +6371,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 7, @@ -6394,7 +6394,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 5, @@ -6417,7 +6417,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 2, @@ -6440,7 +6440,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 3089, + "noteOrder": 3258, "time": 0.3542773810346287, "position": { "x": 3, @@ -6463,7 +6463,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 3095, + "noteOrder": 3264, "time": 0.3549666366397545, "position": { "x": 3, @@ -6486,7 +6486,7 @@ { "lineGroupId": 122, "indexInLine": 4, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 5, @@ -6509,7 +6509,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 8, @@ -6532,7 +6532,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3113, + "noteOrder": 3283, "time": 0.3570344034551317, "position": { "x": 7, @@ -6555,7 +6555,7 @@ { "lineGroupId": 123, "indexInLine": 3, - "noteOrder": 3119, + "noteOrder": 3290, "time": 0.3577236590602574, "position": { "x": 7, @@ -6578,7 +6578,7 @@ { "lineGroupId": 123, "indexInLine": 4, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 5, @@ -6601,7 +6601,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 2, @@ -6624,7 +6624,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3137, + "noteOrder": 3309, "time": 0.3597914258756346, "position": { "x": 3, @@ -6647,7 +6647,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 3143, + "noteOrder": 3315, "time": 0.36048068148076035, "position": { "x": 3, @@ -6670,7 +6670,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 5, @@ -6693,7 +6693,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 8, @@ -6716,7 +6716,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3161, + "noteOrder": 3334, "time": 0.3625484482961376, "position": { "x": 7, @@ -6739,7 +6739,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3167, + "noteOrder": 3340, "time": 0.3632377039012633, "position": { "x": 7, @@ -6762,7 +6762,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 5, @@ -6785,7 +6785,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 2, @@ -6808,7 +6808,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3185, + "noteOrder": 3359, "time": 0.3653054707166405, "position": { "x": 3, @@ -6831,7 +6831,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3191, + "noteOrder": 3366, "time": 0.3659947263217662, "position": { "x": 3, @@ -6854,7 +6854,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 5, @@ -6877,7 +6877,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 8, @@ -6900,7 +6900,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3209, + "noteOrder": 3385, "time": 0.36806249313714345, "position": { "x": 7, @@ -6923,7 +6923,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3215, + "noteOrder": 3391, "time": 0.3687517487422692, "position": { "x": 7, @@ -6946,7 +6946,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 5, @@ -6969,7 +6969,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 2, @@ -6992,7 +6992,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3233, + "noteOrder": 3410, "time": 0.3708195155576464, "position": { "x": 3, @@ -7015,7 +7015,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3239, + "noteOrder": 3416, "time": 0.3715087711627721, "position": { "x": 3, @@ -7038,7 +7038,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 5, @@ -7061,7 +7061,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3653, + "noteOrder": 3854, "time": 0.419067407916448, "position": { "x": 4, @@ -7084,7 +7084,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3678, + "noteOrder": 3879, "time": 0.4218244303369509, "position": { "x": 4, @@ -7107,7 +7107,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3750, + "noteOrder": 3955, "time": 0.4300954975984598, "position": { "x": 6, @@ -7130,7 +7130,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3774, + "noteOrder": 3980, "time": 0.4328525200189627, "position": { "x": 6, @@ -7153,7 +7153,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3942, + "noteOrder": 4158, "time": 0.4521516769624833, "position": { "x": 3, @@ -7176,7 +7176,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 3, @@ -7199,7 +7199,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3990, + "noteOrder": 4209, "time": 0.45766572180348924, "position": { "x": 7, @@ -7222,7 +7222,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 7, @@ -7245,7 +7245,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4134, + "noteOrder": 4361, "time": 0.47420785632650686, "position": { "x": 7, @@ -7268,7 +7268,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4158, + "noteOrder": 4386, "time": 0.4769648787470098, "position": { "x": 7, @@ -7291,7 +7291,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 4, @@ -7314,7 +7314,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 3, @@ -7337,7 +7337,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 4487, "time": 0.4879929684290217, "position": { "x": 3, @@ -7360,7 +7360,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 6, @@ -7383,7 +7383,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 7, @@ -7406,7 +7406,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4351, + "noteOrder": 4589, "time": 0.4990210581110335, "position": { "x": 7, @@ -7429,7 +7429,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 4, @@ -7452,7 +7452,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 3, @@ -7475,7 +7475,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 3, @@ -7498,7 +7498,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 7, @@ -7521,7 +7521,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4639, + "noteOrder": 4893, "time": 0.5321053271570688, "position": { "x": 7, @@ -7544,7 +7544,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 4, @@ -7567,7 +7567,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 3, @@ -7590,7 +7590,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4735, + "noteOrder": 4995, "time": 0.5431334168390807, "position": { "x": 3, @@ -7613,7 +7613,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 6, @@ -7636,7 +7636,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 3, @@ -7659,7 +7659,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4855, + "noteOrder": 5121, "time": 0.5569185289415953, "position": { "x": 4, @@ -7682,7 +7682,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4879, + "noteOrder": 5147, "time": 0.5596755513620982, "position": { "x": 3, @@ -7705,7 +7705,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 7, @@ -7728,7 +7728,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4855, + "noteOrder": 5121, "time": 0.5569185289415953, "position": { "x": 6, @@ -7751,7 +7751,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 4879, + "noteOrder": 5147, "time": 0.5596755513620982, "position": { "x": 7, @@ -7774,7 +7774,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 5096, + "noteOrder": 5375, "time": 0.5844887531466249, "position": { "x": 4, @@ -7797,7 +7797,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 5108, + "noteOrder": 5388, "time": 0.5858672643568763, "position": { "x": 5, @@ -7820,7 +7820,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 4, @@ -7843,7 +7843,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 6, @@ -7866,7 +7866,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 5132, + "noteOrder": 5413, "time": 0.5886242867773792, "position": { "x": 5, @@ -7889,7 +7889,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 6, @@ -7912,7 +7912,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 4, @@ -7935,7 +7935,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 5156, + "noteOrder": 5438, "time": 0.5913813091978821, "position": { "x": 5, @@ -7958,7 +7958,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 4, @@ -7981,7 +7981,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 6, @@ -8004,7 +8004,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5180, + "noteOrder": 5464, "time": 0.5941383316183851, "position": { "x": 5, @@ -8027,7 +8027,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 6, @@ -8050,7 +8050,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5216, + "noteOrder": 5502, "time": 0.5982738652491396, "position": { "x": 7, @@ -8073,7 +8073,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5264, + "noteOrder": 5552, "time": 0.6037879100901454, "position": { "x": 7, @@ -8096,7 +8096,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 5240, + "noteOrder": 5527, "time": 0.6010308876696425, "position": { "x": 4, @@ -8119,7 +8119,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 5264, + "noteOrder": 5552, "time": 0.6037879100901454, "position": { "x": 5, @@ -8142,7 +8142,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 5384, + "noteOrder": 5679, "time": 0.6175730221926601, "position": { "x": 7, @@ -8165,7 +8165,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 4, @@ -8188,7 +8188,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 3, @@ -8211,7 +8211,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 6, @@ -8234,7 +8234,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 5672, + "noteOrder": 5983, "time": 0.6506572912386955, "position": { "x": 7, @@ -8257,7 +8257,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 5685, + "noteOrder": 5996, "time": 0.652035802448947, "position": { "x": 7, @@ -8280,7 +8280,7 @@ { "lineGroupId": 217, "indexInLine": 3, - "noteOrder": 5685, + "noteOrder": 5996, "time": 0.652035802448947, "position": { "x": 5, @@ -8303,7 +8303,7 @@ { "lineGroupId": 217, "indexInLine": 4, - "noteOrder": 5691.0, + "noteOrder": 6002.0, "time": 0.652035802448947, "position": { "x": 5, @@ -8326,7 +8326,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 5697, + "noteOrder": 6009, "time": 0.6534143136591986, "position": { "x": 7, @@ -8349,7 +8349,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 5709, + "noteOrder": 6021, "time": 0.65479282486945, "position": { "x": 7, @@ -8372,7 +8372,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 5709, + "noteOrder": 6021, "time": 0.65479282486945, "position": { "x": 5, @@ -8395,7 +8395,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 5715.0, + "noteOrder": 6027.0, "time": 0.65479282486945, "position": { "x": 5, @@ -8418,7 +8418,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5721, + "noteOrder": 6034, "time": 0.6561713360797015, "position": { "x": 7, @@ -8441,7 +8441,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5733, + "noteOrder": 6047, "time": 0.6575498472899529, "position": { "x": 7, @@ -8464,7 +8464,7 @@ { "lineGroupId": 219, "indexInLine": 3, - "noteOrder": 5733, + "noteOrder": 6047, "time": 0.6575498472899529, "position": { "x": 5, @@ -8487,7 +8487,7 @@ { "lineGroupId": 219, "indexInLine": 4, - "noteOrder": 5739.0, + "noteOrder": 6053.0, "time": 0.6575498472899529, "position": { "x": 5, @@ -8510,7 +8510,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 5745, + "noteOrder": 6059, "time": 0.6589283585002044, "position": { "x": 7, @@ -8533,7 +8533,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 5757, + "noteOrder": 6072, "time": 0.6603068697104558, "position": { "x": 7, @@ -8556,7 +8556,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 5757, + "noteOrder": 6072, "time": 0.6603068697104558, "position": { "x": 5, @@ -8579,7 +8579,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 5763.0, + "noteOrder": 6078.0, "time": 0.6603068697104558, "position": { "x": 5, @@ -8602,7 +8602,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 5769, + "noteOrder": 6085, "time": 0.6616853809207073, "position": { "x": 7, @@ -8625,7 +8625,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 5781, + "noteOrder": 6097, "time": 0.6630638921309587, "position": { "x": 7, @@ -8648,7 +8648,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 5781, + "noteOrder": 6097, "time": 0.6630638921309587, "position": { "x": 5, @@ -8671,7 +8671,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 5787.0, + "noteOrder": 6103.0, "time": 0.6630638921309587, "position": { "x": 5, @@ -8694,7 +8694,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 5793, + "noteOrder": 6110, "time": 0.6644424033412103, "position": { "x": 7, @@ -8717,7 +8717,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 5805, + "noteOrder": 6123, "time": 0.6658209145514618, "position": { "x": 7, @@ -8740,7 +8740,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 5805, + "noteOrder": 6123, "time": 0.6658209145514618, "position": { "x": 5, @@ -8763,7 +8763,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 5811.0, + "noteOrder": 6129.0, "time": 0.6658209145514618, "position": { "x": 5, @@ -8786,7 +8786,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5817, + "noteOrder": 6135, "time": 0.6671994257617132, "position": { "x": 7, @@ -8809,7 +8809,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5829, + "noteOrder": 6148, "time": 0.6685779369719648, "position": { "x": 7, @@ -8832,7 +8832,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 5829, + "noteOrder": 6148, "time": 0.6685779369719648, "position": { "x": 5, @@ -8855,7 +8855,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 5835.0, + "noteOrder": 6154.0, "time": 0.6685779369719648, "position": { "x": 5, @@ -8878,7 +8878,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5841, + "noteOrder": 6161, "time": 0.6699564481822162, "position": { "x": 7, @@ -8901,7 +8901,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5853, + "noteOrder": 6173, "time": 0.6713349593924677, "position": { "x": 7, @@ -8924,7 +8924,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 5853, + "noteOrder": 6173, "time": 0.6713349593924677, "position": { "x": 5, @@ -8947,7 +8947,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 5859.0, + "noteOrder": 6179.0, "time": 0.6713349593924677, "position": { "x": 5, @@ -8970,7 +8970,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5865, + "noteOrder": 6186, "time": 0.672713470602719, "position": { "x": 7, @@ -8993,7 +8993,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5877, + "noteOrder": 6199, "time": 0.6740919818129706, "position": { "x": 7, @@ -9016,7 +9016,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 5877, + "noteOrder": 6199, "time": 0.6740919818129706, "position": { "x": 5, @@ -9039,7 +9039,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 5883.0, + "noteOrder": 6205.0, "time": 0.6740919818129706, "position": { "x": 5, @@ -9062,7 +9062,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 7, @@ -9085,7 +9085,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 6224, "time": 0.6768490042334735, "position": { "x": 7, @@ -9108,7 +9108,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5901, + "noteOrder": 6224, "time": 0.6768490042334735, "position": { "x": 5, @@ -9131,7 +9131,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5907.0, + "noteOrder": 6230.0, "time": 0.6768490042334735, "position": { "x": 5, @@ -9154,7 +9154,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 5913, + "noteOrder": 6237, "time": 0.678227515443725, "position": { "x": 7, @@ -9177,7 +9177,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 5925, + "noteOrder": 6250, "time": 0.6796060266539765, "position": { "x": 7, @@ -9200,7 +9200,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 5925, + "noteOrder": 6250, "time": 0.6796060266539765, "position": { "x": 5, @@ -9223,7 +9223,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 5931.0, + "noteOrder": 6256.0, "time": 0.6796060266539765, "position": { "x": 5, @@ -9246,7 +9246,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 7, @@ -9269,7 +9269,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5949, + "noteOrder": 6275, "time": 0.6823630490744794, "position": { "x": 7, @@ -9292,7 +9292,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5949, + "noteOrder": 6275, "time": 0.6823630490744794, "position": { "x": 5, @@ -9315,7 +9315,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5955.0, + "noteOrder": 6281.0, "time": 0.6823630490744794, "position": { "x": 5, @@ -9338,7 +9338,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5961, + "noteOrder": 6288, "time": 0.683741560284731, "position": { "x": 7, @@ -9361,7 +9361,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5973, + "noteOrder": 6300, "time": 0.6851200714949824, "position": { "x": 7, @@ -9384,7 +9384,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5973, + "noteOrder": 6300, "time": 0.6851200714949824, "position": { "x": 5, @@ -9407,7 +9407,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5979.0, + "noteOrder": 6306.0, "time": 0.6851200714949824, "position": { "x": 5, @@ -9430,7 +9430,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 7, @@ -9453,7 +9453,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5997, + "noteOrder": 6326, "time": 0.6878770939154852, "position": { "x": 7, @@ -9476,7 +9476,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 5997, + "noteOrder": 6326, "time": 0.6878770939154852, "position": { "x": 5, @@ -9499,7 +9499,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 6003.0, + "noteOrder": 6332.0, "time": 0.6878770939154852, "position": { "x": 5, @@ -9522,7 +9522,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 6057, + "noteOrder": 6389, "time": 0.6947696499667427, "position": { "x": 3, @@ -9545,7 +9545,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 6069, + "noteOrder": 6402, "time": 0.6961481611769942, "position": { "x": 3, @@ -9568,7 +9568,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 6069, + "noteOrder": 6402, "time": 0.6961481611769942, "position": { "x": 4, @@ -9591,7 +9591,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 6075.0, + "noteOrder": 6408.0, "time": 0.6961481611769942, "position": { "x": 4, @@ -9614,7 +9614,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 6081, + "noteOrder": 6414, "time": 0.6975266723872456, "position": { "x": 3, @@ -9637,7 +9637,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 6093, + "noteOrder": 6427, "time": 0.6989051835974972, "position": { "x": 3, @@ -9660,7 +9660,7 @@ { "lineGroupId": 234, "indexInLine": 3, - "noteOrder": 6093, + "noteOrder": 6427, "time": 0.6989051835974972, "position": { "x": 4, @@ -9683,7 +9683,7 @@ { "lineGroupId": 234, "indexInLine": 4, - "noteOrder": 6099.0, + "noteOrder": 6433.0, "time": 0.6989051835974972, "position": { "x": 4, @@ -9706,7 +9706,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 6105, + "noteOrder": 6440, "time": 0.7002836948077487, "position": { "x": 3, @@ -9729,7 +9729,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 6117, + "noteOrder": 6452, "time": 0.701662206018, "position": { "x": 3, @@ -9752,7 +9752,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 6117, + "noteOrder": 6452, "time": 0.701662206018, "position": { "x": 4, @@ -9775,7 +9775,7 @@ { "lineGroupId": 235, "indexInLine": 4, - "noteOrder": 6123.0, + "noteOrder": 6458.0, "time": 0.701662206018, "position": { "x": 4, @@ -9798,7 +9798,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 6129, + "noteOrder": 6465, "time": 0.7030407172282515, "position": { "x": 3, @@ -9821,7 +9821,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 6141, + "noteOrder": 6478, "time": 0.704419228438503, "position": { "x": 3, @@ -9844,7 +9844,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 6141, + "noteOrder": 6478, "time": 0.704419228438503, "position": { "x": 4, @@ -9867,7 +9867,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 6147.0, + "noteOrder": 6484.0, "time": 0.704419228438503, "position": { "x": 4, @@ -9890,7 +9890,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 6153, + "noteOrder": 6490, "time": 0.7057977396487545, "position": { "x": 3, @@ -9913,7 +9913,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 6165, + "noteOrder": 6503, "time": 0.7071762508590059, "position": { "x": 3, @@ -9936,7 +9936,7 @@ { "lineGroupId": 237, "indexInLine": 3, - "noteOrder": 6165, + "noteOrder": 6503, "time": 0.7071762508590059, "position": { "x": 5, @@ -9959,7 +9959,7 @@ { "lineGroupId": 237, "indexInLine": 4, - "noteOrder": 6171.0, + "noteOrder": 6509.0, "time": 0.7071762508590059, "position": { "x": 5, @@ -9982,7 +9982,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 6177, + "noteOrder": 6516, "time": 0.7085547620692574, "position": { "x": 3, @@ -10005,7 +10005,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 6189, + "noteOrder": 6528, "time": 0.709933273279509, "position": { "x": 3, @@ -10028,7 +10028,7 @@ { "lineGroupId": 238, "indexInLine": 3, - "noteOrder": 6189, + "noteOrder": 6528, "time": 0.709933273279509, "position": { "x": 5, @@ -10051,7 +10051,7 @@ { "lineGroupId": 238, "indexInLine": 4, - "noteOrder": 6195.0, + "noteOrder": 6534.0, "time": 0.709933273279509, "position": { "x": 5, @@ -10074,7 +10074,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 6201, + "noteOrder": 6541, "time": 0.7113117844897604, "position": { "x": 3, @@ -10097,7 +10097,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 6213, + "noteOrder": 6554, "time": 0.7126902957000119, "position": { "x": 3, @@ -10120,7 +10120,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 6213, + "noteOrder": 6554, "time": 0.7126902957000119, "position": { "x": 5, @@ -10143,7 +10143,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 6219.0, + "noteOrder": 6560.0, "time": 0.7126902957000119, "position": { "x": 5, @@ -10166,7 +10166,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 6225, + "noteOrder": 6566, "time": 0.7140688069102634, "position": { "x": 3, @@ -10189,7 +10189,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 6237, + "noteOrder": 6579, "time": 0.7154473181205148, "position": { "x": 3, @@ -10212,7 +10212,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 6237, + "noteOrder": 6579, "time": 0.7154473181205148, "position": { "x": 5, @@ -10235,7 +10235,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 6243.0, + "noteOrder": 6585.0, "time": 0.7154473181205148, "position": { "x": 5, @@ -10258,7 +10258,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 6249, + "noteOrder": 6592, "time": 0.7168258293307662, "position": { "x": 3, @@ -10281,7 +10281,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 6261, + "noteOrder": 6604, "time": 0.7182043405410177, "position": { "x": 3, @@ -10304,7 +10304,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 6261, + "noteOrder": 6604, "time": 0.7182043405410177, "position": { "x": 6, @@ -10327,7 +10327,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 6267.0, + "noteOrder": 6610.0, "time": 0.7182043405410177, "position": { "x": 6, @@ -10350,7 +10350,7 @@ { "lineGroupId": 242, "indexInLine": 1, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 3, @@ -10373,7 +10373,7 @@ { "lineGroupId": 242, "indexInLine": 2, - "noteOrder": 6285, + "noteOrder": 6630, "time": 0.7209613629615207, "position": { "x": 3, @@ -10396,7 +10396,7 @@ { "lineGroupId": 242, "indexInLine": 3, - "noteOrder": 6285, + "noteOrder": 6630, "time": 0.7209613629615207, "position": { "x": 6, @@ -10419,7 +10419,7 @@ { "lineGroupId": 242, "indexInLine": 4, - "noteOrder": 6291.0, + "noteOrder": 6636.0, "time": 0.7209613629615207, "position": { "x": 6, @@ -10442,7 +10442,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 6297, + "noteOrder": 6642, "time": 0.7223398741717721, "position": { "x": 3, @@ -10465,7 +10465,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 6309, + "noteOrder": 6655, "time": 0.7237183853820236, "position": { "x": 3, @@ -10488,7 +10488,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 6309, + "noteOrder": 6655, "time": 0.7237183853820236, "position": { "x": 6, @@ -10511,7 +10511,7 @@ { "lineGroupId": 243, "indexInLine": 4, - "noteOrder": 6315.0, + "noteOrder": 6661.0, "time": 0.7237183853820236, "position": { "x": 6, @@ -10534,7 +10534,7 @@ { "lineGroupId": 244, "indexInLine": 1, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 3, @@ -10557,7 +10557,7 @@ { "lineGroupId": 244, "indexInLine": 2, - "noteOrder": 6333, + "noteOrder": 6681, "time": 0.7264754078025266, "position": { "x": 3, @@ -10580,7 +10580,7 @@ { "lineGroupId": 244, "indexInLine": 3, - "noteOrder": 6333, + "noteOrder": 6681, "time": 0.7264754078025266, "position": { "x": 6, @@ -10603,7 +10603,7 @@ { "lineGroupId": 244, "indexInLine": 4, - "noteOrder": 6339.0, + "noteOrder": 6687.0, "time": 0.7264754078025266, "position": { "x": 6, @@ -10626,7 +10626,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 6346, + "noteOrder": 6693, "time": 0.7278539190127781, "position": { "x": 3, @@ -10649,7 +10649,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 3, @@ -10672,7 +10672,7 @@ { "lineGroupId": 245, "indexInLine": 3, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 5, @@ -10695,7 +10695,7 @@ { "lineGroupId": 245, "indexInLine": 4, - "noteOrder": 6364.0, + "noteOrder": 6712.0, "time": 0.7292324302230295, "position": { "x": 5, @@ -10718,7 +10718,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 6394, + "noteOrder": 6744, "time": 0.7333679638537839, "position": { "x": 3, @@ -10741,7 +10741,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 6406, + "noteOrder": 6757, "time": 0.7347464750640355, "position": { "x": 3, @@ -10764,7 +10764,7 @@ { "lineGroupId": 248, "indexInLine": 3, - "noteOrder": 6406, + "noteOrder": 6757, "time": 0.7347464750640355, "position": { "x": 5, @@ -10787,7 +10787,7 @@ { "lineGroupId": 248, "indexInLine": 4, - "noteOrder": 6412.0, + "noteOrder": 6763.0, "time": 0.7347464750640355, "position": { "x": 5, @@ -10810,7 +10810,7 @@ { "lineGroupId": 252, "indexInLine": 1, - "noteOrder": 6538, + "noteOrder": 6896, "time": 0.7499100983768017, "position": { "x": 7, @@ -10833,7 +10833,7 @@ { "lineGroupId": 252, "indexInLine": 2, - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 6, @@ -10856,7 +10856,7 @@ { "lineGroupId": 252, "indexInLine": 3, - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 7, @@ -10879,7 +10879,7 @@ { "lineGroupId": 252, "indexInLine": 4, - "noteOrder": 6610, + "noteOrder": 6972, "time": 0.7581811656383104, "position": { "x": 6, @@ -10902,7 +10902,7 @@ { "lineGroupId": 256, "indexInLine": 1, - "noteOrder": 6634, + "noteOrder": 6997, "time": 0.7609381880588134, "position": { "x": 3, @@ -10925,7 +10925,7 @@ { "lineGroupId": 256, "indexInLine": 2, - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 4, @@ -10948,7 +10948,7 @@ { "lineGroupId": 256, "indexInLine": 3, - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 3, @@ -10971,7 +10971,7 @@ { "lineGroupId": 256, "indexInLine": 4, - "noteOrder": 6706, + "noteOrder": 7073, "time": 0.7692092553203222, "position": { "x": 4, @@ -10994,7 +10994,7 @@ { "lineGroupId": 262, "indexInLine": 1, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 7, @@ -11017,7 +11017,7 @@ { "lineGroupId": 262, "indexInLine": 2, - "noteOrder": 6790, + "noteOrder": 7162, "time": 0.7788588337920825, "position": { "x": 7, @@ -11040,7 +11040,7 @@ { "lineGroupId": 262, "indexInLine": 3, - "noteOrder": 6814, + "noteOrder": 7188, "time": 0.7816158562125856, "position": { "x": 3, @@ -11063,7 +11063,7 @@ { "lineGroupId": 262, "indexInLine": 4, - "noteOrder": 6826, + "noteOrder": 7200, "time": 0.782994367422837, "position": { "x": 3, @@ -11086,7 +11086,7 @@ { "lineGroupId": 263, "indexInLine": 1, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 3, @@ -11109,7 +11109,7 @@ { "lineGroupId": 263, "indexInLine": 2, - "noteOrder": 6790, + "noteOrder": 7162, "time": 0.7788588337920825, "position": { "x": 3, @@ -11132,7 +11132,7 @@ { "lineGroupId": 263, "indexInLine": 3, - "noteOrder": 6814, + "noteOrder": 7188, "time": 0.7816158562125856, "position": { "x": 7, @@ -11155,7 +11155,7 @@ { "lineGroupId": 263, "indexInLine": 4, - "noteOrder": 6826, + "noteOrder": 7200, "time": 0.782994367422837, "position": { "x": 7, @@ -11178,7 +11178,7 @@ { "lineGroupId": 266, "indexInLine": 1, - "noteOrder": 6922, + "noteOrder": 7302, "time": 0.7940224571048488, "position": { "x": 3, @@ -11201,7 +11201,7 @@ { "lineGroupId": 266, "indexInLine": 2, - "noteOrder": 6934, + "noteOrder": 7314, "time": 0.7954009683151003, "position": { "x": 3, @@ -11224,7 +11224,7 @@ { "lineGroupId": 266, "indexInLine": 3, - "noteOrder": 6934, + "noteOrder": 7314, "time": 0.7954009683151003, "position": { "x": 4, @@ -11247,7 +11247,7 @@ { "lineGroupId": 266, "indexInLine": 4, - "noteOrder": 6940.0, + "noteOrder": 7320.0, "time": 0.7954009683151003, "position": { "x": 4, @@ -11270,7 +11270,7 @@ { "lineGroupId": 267, "indexInLine": 1, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 3, @@ -11293,7 +11293,7 @@ { "lineGroupId": 267, "indexInLine": 2, - "noteOrder": 6958, + "noteOrder": 7340, "time": 0.7981579907356032, "position": { "x": 3, @@ -11316,7 +11316,7 @@ { "lineGroupId": 267, "indexInLine": 3, - "noteOrder": 6958, + "noteOrder": 7340, "time": 0.7981579907356032, "position": { "x": 4, @@ -11339,7 +11339,7 @@ { "lineGroupId": 267, "indexInLine": 4, - "noteOrder": 6964.0, + "noteOrder": 7346.0, "time": 0.7981579907356032, "position": { "x": 4, @@ -11362,7 +11362,7 @@ { "lineGroupId": 270, "indexInLine": 1, - "noteOrder": 7019, + "noteOrder": 7403, "time": 0.8050505467868606, "position": { "x": 7, @@ -11385,7 +11385,7 @@ { "lineGroupId": 270, "indexInLine": 2, - "noteOrder": 7031, + "noteOrder": 7416, "time": 0.8064290579971121, "position": { "x": 7, @@ -11408,7 +11408,7 @@ { "lineGroupId": 270, "indexInLine": 3, - "noteOrder": 7031, + "noteOrder": 7416, "time": 0.8064290579971121, "position": { "x": 6, @@ -11431,7 +11431,7 @@ { "lineGroupId": 270, "indexInLine": 4, - "noteOrder": 7037.0, + "noteOrder": 7422.0, "time": 0.8064290579971121, "position": { "x": 6, @@ -11454,7 +11454,7 @@ { "lineGroupId": 271, "indexInLine": 1, - "noteOrder": 7043, + "noteOrder": 7428, "time": 0.8078075692073635, "position": { "x": 7, @@ -11477,7 +11477,7 @@ { "lineGroupId": 271, "indexInLine": 2, - "noteOrder": 7055, + "noteOrder": 7441, "time": 0.809186080417615, "position": { "x": 7, @@ -11500,7 +11500,7 @@ { "lineGroupId": 271, "indexInLine": 3, - "noteOrder": 7055, + "noteOrder": 7441, "time": 0.809186080417615, "position": { "x": 6, @@ -11523,7 +11523,7 @@ { "lineGroupId": 271, "indexInLine": 4, - "noteOrder": 7061.0, + "noteOrder": 7447.0, "time": 0.809186080417615, "position": { "x": 6, @@ -11546,7 +11546,7 @@ { "lineGroupId": 274, "indexInLine": 1, - "noteOrder": 7115, + "noteOrder": 7504, "time": 0.8160786364688724, "position": { "x": 3, @@ -11569,7 +11569,7 @@ { "lineGroupId": 274, "indexInLine": 2, - "noteOrder": 7127, + "noteOrder": 7517, "time": 0.8174571476791238, "position": { "x": 3, @@ -11592,7 +11592,7 @@ { "lineGroupId": 274, "indexInLine": 3, - "noteOrder": 7127, + "noteOrder": 7517, "time": 0.8174571476791238, "position": { "x": 4, @@ -11615,7 +11615,7 @@ { "lineGroupId": 274, "indexInLine": 4, - "noteOrder": 7133.0, + "noteOrder": 7523.0, "time": 0.8174571476791238, "position": { "x": 4, @@ -11638,7 +11638,7 @@ { "lineGroupId": 275, "indexInLine": 1, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 7, @@ -11661,7 +11661,7 @@ { "lineGroupId": 275, "indexInLine": 2, - "noteOrder": 7151, + "noteOrder": 7543, "time": 0.8202141700996268, "position": { "x": 7, @@ -11684,7 +11684,7 @@ { "lineGroupId": 275, "indexInLine": 3, - "noteOrder": 7151, + "noteOrder": 7543, "time": 0.8202141700996268, "position": { "x": 6, @@ -11707,7 +11707,7 @@ { "lineGroupId": 275, "indexInLine": 4, - "noteOrder": 7157.0, + "noteOrder": 7549.0, "time": 0.8202141700996268, "position": { "x": 6, @@ -11730,7 +11730,7 @@ { "lineGroupId": 276, "indexInLine": 1, - "noteOrder": 7163, + "noteOrder": 7555, "time": 0.8215926813098783, "position": { "x": 3, @@ -11753,7 +11753,7 @@ { "lineGroupId": 276, "indexInLine": 2, - "noteOrder": 7175, + "noteOrder": 7568, "time": 0.8229711925201297, "position": { "x": 3, @@ -11776,7 +11776,7 @@ { "lineGroupId": 276, "indexInLine": 3, - "noteOrder": 7175, + "noteOrder": 7568, "time": 0.8229711925201297, "position": { "x": 4, @@ -11799,7 +11799,7 @@ { "lineGroupId": 276, "indexInLine": 4, - "noteOrder": 7181.0, + "noteOrder": 7574.0, "time": 0.8229711925201297, "position": { "x": 4, @@ -11822,7 +11822,7 @@ { "lineGroupId": 277, "indexInLine": 1, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 7, @@ -11845,7 +11845,7 @@ { "lineGroupId": 277, "indexInLine": 2, - "noteOrder": 7199, + "noteOrder": 7593, "time": 0.8257282149406328, "position": { "x": 7, @@ -11868,7 +11868,7 @@ { "lineGroupId": 277, "indexInLine": 3, - "noteOrder": 7199, + "noteOrder": 7593, "time": 0.8257282149406328, "position": { "x": 6, @@ -11891,7 +11891,7 @@ { "lineGroupId": 277, "indexInLine": 4, - "noteOrder": 7205.0, + "noteOrder": 7599.0, "time": 0.8257282149406328, "position": { "x": 6, @@ -11914,7 +11914,7 @@ { "lineGroupId": 278, "indexInLine": 1, - "noteOrder": 7211, + "noteOrder": 7606, "time": 0.8271067261508842, "position": { "x": 3, @@ -11937,7 +11937,7 @@ { "lineGroupId": 278, "indexInLine": 2, - "noteOrder": 7235, + "noteOrder": 7631, "time": 0.8298637485713871, "position": { "x": 3, @@ -11960,7 +11960,7 @@ { "lineGroupId": 278, "indexInLine": 3, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 6, @@ -11983,7 +11983,7 @@ { "lineGroupId": 282, "indexInLine": 1, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 7, @@ -12006,7 +12006,7 @@ { "lineGroupId": 282, "indexInLine": 2, - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 7, @@ -12029,7 +12029,7 @@ { "lineGroupId": 282, "indexInLine": 3, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 4, @@ -12052,7 +12052,7 @@ { "lineGroupId": 286, "indexInLine": 1, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 6, @@ -12075,7 +12075,7 @@ { "lineGroupId": 286, "indexInLine": 2, - "noteOrder": 7415, + "noteOrder": 7821, "time": 0.8505414167251593, "position": { "x": 5, @@ -12098,7 +12098,7 @@ { "lineGroupId": 286, "indexInLine": 3, - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 6, @@ -12121,7 +12121,7 @@ { "lineGroupId": 287, "indexInLine": 1, - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 4, @@ -12144,7 +12144,7 @@ { "lineGroupId": 287, "indexInLine": 2, - "noteOrder": 7439, + "noteOrder": 7847, "time": 0.8532984391456622, "position": { "x": 5, @@ -12167,7 +12167,7 @@ { "lineGroupId": 287, "indexInLine": 3, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 4, @@ -12190,7 +12190,7 @@ { "lineGroupId": 288, "indexInLine": 1, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 6, @@ -12213,7 +12213,7 @@ { "lineGroupId": 288, "indexInLine": 2, - "noteOrder": 7463, + "noteOrder": 7872, "time": 0.8560554615661652, "position": { "x": 5, @@ -12236,7 +12236,7 @@ { "lineGroupId": 288, "indexInLine": 3, - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 6, @@ -12259,7 +12259,7 @@ { "lineGroupId": 289, "indexInLine": 1, - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 4, @@ -12282,7 +12282,7 @@ { "lineGroupId": 289, "indexInLine": 2, - "noteOrder": 7487, + "noteOrder": 7897, "time": 0.8588124839866681, "position": { "x": 5, @@ -12305,7 +12305,7 @@ { "lineGroupId": 289, "indexInLine": 3, - "noteOrder": 7499, + "noteOrder": 7910, "time": 0.8601909951969196, "position": { "x": 4, @@ -12328,7 +12328,7 @@ { "lineGroupId": 291, "indexInLine": 1, - "noteOrder": 7547, + "noteOrder": 7961, "time": 0.8657050400379254, "position": { "x": 6, @@ -12351,7 +12351,7 @@ { "lineGroupId": 291, "indexInLine": 2, - "noteOrder": 7595, + "noteOrder": 8012, "time": 0.8712190848789313, "position": { "x": 6, @@ -12374,7 +12374,7 @@ { "lineGroupId": 293, "indexInLine": 1, - "noteOrder": 7643, + "noteOrder": 8062, "time": 0.8767331297199372, "position": { "x": 3, @@ -12397,7 +12397,7 @@ { "lineGroupId": 293, "indexInLine": 2, - "noteOrder": 7692, + "noteOrder": 8113, "time": 0.8822471745609431, "position": { "x": 3, @@ -12420,7 +12420,7 @@ { "lineGroupId": 295, "indexInLine": 1, - "noteOrder": 7740, + "noteOrder": 8164, "time": 0.8877612194019491, "position": { "x": 7, @@ -12443,7 +12443,7 @@ { "lineGroupId": 295, "indexInLine": 2, - "noteOrder": 7752, + "noteOrder": 8176, "time": 0.8891397306122005, "position": { "x": 7, @@ -12466,7 +12466,7 @@ { "lineGroupId": 295, "indexInLine": 3, - "noteOrder": 7752, + "noteOrder": 8176, "time": 0.8891397306122005, "position": { "x": 5, @@ -12489,7 +12489,7 @@ { "lineGroupId": 295, "indexInLine": 4, - "noteOrder": 7758.0, + "noteOrder": 8182.0, "time": 0.8891397306122005, "position": { "x": 5, @@ -12512,7 +12512,7 @@ { "lineGroupId": 296, "indexInLine": 1, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 7, @@ -12535,7 +12535,7 @@ { "lineGroupId": 296, "indexInLine": 2, - "noteOrder": 7776, + "noteOrder": 8202, "time": 0.8918967530327033, "position": { "x": 7, @@ -12558,7 +12558,7 @@ { "lineGroupId": 296, "indexInLine": 3, - "noteOrder": 7776, + "noteOrder": 8202, "time": 0.8918967530327033, "position": { "x": 5, @@ -12581,7 +12581,7 @@ { "lineGroupId": 296, "indexInLine": 4, - "noteOrder": 7782.0, + "noteOrder": 8208.0, "time": 0.8918967530327033, "position": { "x": 5, @@ -12604,7 +12604,7 @@ { "lineGroupId": 297, "indexInLine": 1, - "noteOrder": 7788, + "noteOrder": 8214, "time": 0.8932752642429548, "position": { "x": 7, @@ -12627,7 +12627,7 @@ { "lineGroupId": 297, "indexInLine": 2, - "noteOrder": 7800, + "noteOrder": 8227, "time": 0.8946537754532062, "position": { "x": 7, @@ -12650,7 +12650,7 @@ { "lineGroupId": 297, "indexInLine": 3, - "noteOrder": 7800, + "noteOrder": 8227, "time": 0.8946537754532062, "position": { "x": 5, @@ -12673,7 +12673,7 @@ { "lineGroupId": 297, "indexInLine": 4, - "noteOrder": 7806.0, + "noteOrder": 8233.0, "time": 0.8946537754532062, "position": { "x": 5, @@ -12696,7 +12696,7 @@ { "lineGroupId": 298, "indexInLine": 1, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 7, @@ -12719,7 +12719,7 @@ { "lineGroupId": 298, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 8252, "time": 0.8974107978737093, "position": { "x": 7, @@ -12742,7 +12742,7 @@ { "lineGroupId": 298, "indexInLine": 3, - "noteOrder": 7824, + "noteOrder": 8252, "time": 0.8974107978737093, "position": { "x": 5, @@ -12765,7 +12765,7 @@ { "lineGroupId": 298, "indexInLine": 4, - "noteOrder": 7830.0, + "noteOrder": 8258.0, "time": 0.8974107978737093, "position": { "x": 5, @@ -12788,7 +12788,7 @@ { "lineGroupId": 299, "indexInLine": 1, - "noteOrder": 7836, + "noteOrder": 8265, "time": 0.8987893090839607, "position": { "x": 3, @@ -12811,7 +12811,7 @@ { "lineGroupId": 299, "indexInLine": 2, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 3, @@ -12834,7 +12834,7 @@ { "lineGroupId": 299, "indexInLine": 3, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 5, @@ -12857,7 +12857,7 @@ { "lineGroupId": 299, "indexInLine": 4, - "noteOrder": 7854.0, + "noteOrder": 8284.0, "time": 0.9001678202942123, "position": { "x": 5, @@ -12880,7 +12880,7 @@ { "lineGroupId": 300, "indexInLine": 1, - "noteOrder": 7860, + "noteOrder": 8290, "time": 0.9015463315044637, "position": { "x": 3, @@ -12903,7 +12903,7 @@ { "lineGroupId": 300, "indexInLine": 2, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 3, @@ -12926,7 +12926,7 @@ { "lineGroupId": 300, "indexInLine": 3, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 5, @@ -12949,7 +12949,7 @@ { "lineGroupId": 300, "indexInLine": 4, - "noteOrder": 7878.0, + "noteOrder": 8309.0, "time": 0.9029248427147152, "position": { "x": 5, @@ -12972,7 +12972,7 @@ { "lineGroupId": 301, "indexInLine": 1, - "noteOrder": 7884, + "noteOrder": 8316, "time": 0.9043033539249666, "position": { "x": 3, @@ -12995,7 +12995,7 @@ { "lineGroupId": 301, "indexInLine": 2, - "noteOrder": 7896, + "noteOrder": 8328, "time": 0.9056818651352182, "position": { "x": 3, @@ -13018,7 +13018,7 @@ { "lineGroupId": 301, "indexInLine": 3, - "noteOrder": 7896, + "noteOrder": 8328, "time": 0.9056818651352182, "position": { "x": 5, @@ -13041,7 +13041,7 @@ { "lineGroupId": 301, "indexInLine": 4, - "noteOrder": 7902.0, + "noteOrder": 8334.0, "time": 0.9056818651352182, "position": { "x": 5, @@ -13064,7 +13064,7 @@ { "lineGroupId": 302, "indexInLine": 1, - "noteOrder": 7908, + "noteOrder": 8341, "time": 0.9070603763454697, "position": { "x": 3, @@ -13087,7 +13087,7 @@ { "lineGroupId": 302, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 8354, "time": 0.9084388875557211, "position": { "x": 3, @@ -13110,7 +13110,7 @@ { "lineGroupId": 302, "indexInLine": 3, - "noteOrder": 7920, + "noteOrder": 8354, "time": 0.9084388875557211, "position": { "x": 5, @@ -13133,7 +13133,7 @@ { "lineGroupId": 302, "indexInLine": 4, - "noteOrder": 7926.0, + "noteOrder": 8360.0, "time": 0.9084388875557211, "position": { "x": 5, @@ -13156,7 +13156,7 @@ { "lineGroupId": 303, "indexInLine": 1, - "noteOrder": 7932, + "noteOrder": 8366, "time": 0.9098173987659726, "position": { "x": 7, @@ -13179,7 +13179,7 @@ { "lineGroupId": 303, "indexInLine": 2, - "noteOrder": 7944, + "noteOrder": 8379, "time": 0.9111959099762241, "position": { "x": 7, @@ -13202,7 +13202,7 @@ { "lineGroupId": 303, "indexInLine": 3, - "noteOrder": 7944, + "noteOrder": 8379, "time": 0.9111959099762241, "position": { "x": 6, @@ -13225,7 +13225,7 @@ { "lineGroupId": 303, "indexInLine": 4, - "noteOrder": 7950.0, + "noteOrder": 8385.0, "time": 0.9111959099762241, "position": { "x": 6, @@ -13248,7 +13248,7 @@ { "lineGroupId": 306, "indexInLine": 1, - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 3, @@ -13271,7 +13271,7 @@ { "lineGroupId": 306, "indexInLine": 2, - "noteOrder": 7968, + "noteOrder": 8405, "time": 0.913952932396727, "position": { "x": 3, @@ -13294,7 +13294,7 @@ { "lineGroupId": 306, "indexInLine": 3, - "noteOrder": 7968, + "noteOrder": 8405, "time": 0.913952932396727, "position": { "x": 4, @@ -13317,7 +13317,7 @@ { "lineGroupId": 306, "indexInLine": 4, - "noteOrder": 7974.0, + "noteOrder": 8411.0, "time": 0.913952932396727, "position": { "x": 4, @@ -13340,7 +13340,7 @@ { "lineGroupId": 308, "indexInLine": 1, - "noteOrder": 7980, + "noteOrder": 8417, "time": 0.9153314436069785, "position": { "x": 7, @@ -13363,7 +13363,7 @@ { "lineGroupId": 308, "indexInLine": 2, - "noteOrder": 7992, + "noteOrder": 8430, "time": 0.91670995481723, "position": { "x": 7, @@ -13386,7 +13386,7 @@ { "lineGroupId": 308, "indexInLine": 3, - "noteOrder": 7992, + "noteOrder": 8430, "time": 0.91670995481723, "position": { "x": 6, @@ -13409,7 +13409,7 @@ { "lineGroupId": 308, "indexInLine": 4, - "noteOrder": 7998.0, + "noteOrder": 8436.0, "time": 0.91670995481723, "position": { "x": 6, @@ -13432,7 +13432,7 @@ { "lineGroupId": 310, "indexInLine": 1, - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 3, @@ -13455,7 +13455,7 @@ { "lineGroupId": 310, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 8455, "time": 0.919466977237733, "position": { "x": 3, @@ -13478,7 +13478,7 @@ { "lineGroupId": 310, "indexInLine": 3, - "noteOrder": 8016, + "noteOrder": 8455, "time": 0.919466977237733, "position": { "x": 4, @@ -13501,7 +13501,7 @@ { "lineGroupId": 310, "indexInLine": 4, - "noteOrder": 8022.0, + "noteOrder": 8461.0, "time": 0.919466977237733, "position": { "x": 4, @@ -13524,7 +13524,7 @@ { "lineGroupId": 315, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 7, @@ -13547,7 +13547,7 @@ { "lineGroupId": 315, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 7, @@ -13570,7 +13570,7 @@ { "lineGroupId": 316, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 3, @@ -13593,7 +13593,7 @@ { "lineGroupId": 316, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 3, @@ -13616,7 +13616,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 469.0, + "noteOrder": 494.0, "time": 0.052383425989556, "position": { "x": 5, @@ -13644,7 +13644,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 866.5, + "noteOrder": 914.5, "time": 0.0992528071381061, "position": { "x": 5, @@ -13672,7 +13672,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 914.5, + "noteOrder": 964.5, "time": 0.104766851979112, "position": { "x": 5, @@ -13700,7 +13700,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 962.5, + "noteOrder": 1015.5, "time": 0.1102808968201179, "position": { "x": 5, @@ -13728,7 +13728,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1011.5, + "noteOrder": 1066.5, "time": 0.11579494166112378, "position": { "x": 5, @@ -13756,7 +13756,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1238.0, + "noteOrder": 1305.0, "time": 0.1406081434456503, "position": { "x": 5, @@ -13784,7 +13784,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1719.0, + "noteOrder": 1812.0, "time": 0.19574859185570925, "position": { "x": 5, @@ -13812,7 +13812,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2405.5, + "noteOrder": 2536.5, "time": 0.2757022420502947, "position": { "x": 5, @@ -13840,7 +13840,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2453.5, + "noteOrder": 2587.5, "time": 0.2812162868913006, "position": { "x": 5, @@ -13868,7 +13868,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3270.5, + "noteOrder": 3449.5, "time": 0.37495504918840084, "position": { "x": 5, @@ -13896,7 +13896,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4039.5, + "noteOrder": 4260.5, "time": 0.4631797666444951, "position": { "x": 5, @@ -13924,7 +13924,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4520.5, + "noteOrder": 4767.5, "time": 0.5183202150545541, "position": { "x": 5, @@ -13952,7 +13952,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4904.5, + "noteOrder": 5173.5, "time": 0.5624325737826013, "position": { "x": 5, @@ -13980,7 +13980,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5000.5, + "noteOrder": 5274.5, "time": 0.573460663464613, "position": { "x": 5, @@ -14008,7 +14008,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5289.5, + "noteOrder": 5579.5, "time": 0.6065449325106483, "position": { "x": 5, @@ -14036,7 +14036,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5625.5, + "noteOrder": 5934.5, "time": 0.6451432463976896, "position": { "x": 5, @@ -14064,7 +14064,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5660.0, + "noteOrder": 5970.0, "time": 0.6479002688181925, "position": { "x": 5, @@ -14092,7 +14092,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6034.5, + "noteOrder": 6365.5, "time": 0.6920126275462397, "position": { "x": 5, @@ -14120,7 +14120,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6443.5, + "noteOrder": 6796.5, "time": 0.7388820086947898, "position": { "x": 5, @@ -14148,7 +14148,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6827.5, + "noteOrder": 7201.5, "time": 0.782994367422837, "position": { "x": 5, @@ -14176,7 +14176,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6910.0, + "noteOrder": 7288.0, "time": 0.7912654346843458, "position": { "x": 5, @@ -14204,7 +14204,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7500.5, + "noteOrder": 7911.5, "time": 0.8601909951969196, "position": { "x": 5, @@ -14232,7 +14232,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7596.5, + "noteOrder": 8013.5, "time": 0.8712190848789313, "position": { "x": 5, @@ -14260,7 +14260,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7693.5, + "noteOrder": 8114.5, "time": 0.8822471745609431, "position": { "x": 5, @@ -14288,7 +14288,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7933.5, + "noteOrder": 8367.5, "time": 0.9098173987659726, "position": { "x": 5, @@ -14316,7 +14316,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7957.5, + "noteOrder": 8393.5, "time": 0.9125744211864756, "position": { "x": 5, @@ -14344,7 +14344,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7981.5, + "noteOrder": 8418.5, "time": 0.9153314436069785, "position": { "x": 5, @@ -14372,7 +14372,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8005.5, + "noteOrder": 8444.5, "time": 0.9180884660274815, "position": { "x": 5, @@ -14400,7 +14400,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8221.5, + "noteOrder": 8672.5, "time": 0.942901667812008, "position": { "x": 5, @@ -14441,7 +14441,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 146, + "BPM": 154, "NPS": "4.29", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a_blockless.json index 6762de0d..0aa237b4 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00 difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 101, "time": 0.011028089682011789, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 127, "time": 0.013785112102514737, "position": { "x": 5, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 203, "time": 0.022056179364023577, "position": { "x": 3, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 228, "time": 0.024813201784526524, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 304, "time": 0.03308426904603537, "position": { "x": 7, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 330, "time": 0.03584129146653831, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 337, + "noteOrder": 355, "time": 0.038598313887041255, "position": { "x": 6, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 361, + "noteOrder": 380, "time": 0.041355336307544205, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 406, "time": 0.044112358728047155, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 385, + "noteOrder": 406, "time": 0.044112358728047155, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 431, "time": 0.046869381148550104, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 409, + "noteOrder": 431, "time": 0.046869381148550104, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 456, "time": 0.04962640356905305, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 433, + "noteOrder": 456, "time": 0.04962640356905305, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 529, + "noteOrder": 558, "time": 0.06065449325106484, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 601, + "noteOrder": 634, "time": 0.06892556051257367, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 625, + "noteOrder": 659, "time": 0.07168258293307662, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 649, + "noteOrder": 685, "time": 0.07443960535357957, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 721, + "noteOrder": 761, "time": 0.08271067261508841, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 793, + "noteOrder": 837, "time": 0.09098173987659726, "position": { "x": 2, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 817, + "noteOrder": 862, "time": 0.09373876229710021, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1034, + "noteOrder": 1090, "time": 0.11855196408162672, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1058, + "noteOrder": 1116, "time": 0.12130898650212968, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 7, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1250, + "noteOrder": 1318, "time": 0.14336516586615325, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1274, + "noteOrder": 1344, "time": 0.1461221882866562, "position": { "x": 5, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1420, "time": 0.15439325554816502, "position": { "x": 3, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1445, "time": 0.157150277968668, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 5, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1623, "time": 0.17644943491218862, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1648, "time": 0.17920645733269155, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1634, + "noteOrder": 1724, "time": 0.18747752459420042, "position": { "x": 7, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1658, + "noteOrder": 1749, "time": 0.19023454701470335, "position": { "x": 5, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1683, + "noteOrder": 1775, "time": 0.1929915694352063, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1779, + "noteOrder": 1876, "time": 0.2040196591172181, "position": { "x": 7, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1803, + "noteOrder": 1901, "time": 0.20677668153772105, "position": { "x": 5, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1875, + "noteOrder": 1978, "time": 0.2150477487992299, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1899, + "noteOrder": 2003, "time": 0.21780477121973282, "position": { "x": 5, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1971, + "noteOrder": 2079, "time": 0.22607583848124166, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1995, + "noteOrder": 2104, "time": 0.22883286090174462, "position": { "x": 5, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2067, + "noteOrder": 2180, "time": 0.23710392816325343, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2091, + "noteOrder": 2206, "time": 0.2398609505837564, "position": { "x": 5, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2256, "time": 0.2453749954247623, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2307, "time": 0.2508890402657682, "position": { "x": 5, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2358, "time": 0.2564030851067741, "position": { "x": 2, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2409, "time": 0.26191712994778, "position": { "x": 8, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 4, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3499, "time": 0.3804690940294067, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3549, "time": 0.3859831388704126, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3600, "time": 0.3914971837114185, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3651, "time": 0.3970112285524244, "position": { "x": 7, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3676, "time": 0.39976825097292734, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3702, "time": 0.4025252733934303, "position": { "x": 7, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3752, "time": 0.4080393182344362, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3778, "time": 0.41079634065493914, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3803, "time": 0.4135533630754421, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3629, + "noteOrder": 3828, "time": 0.416310385495945, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3702, + "noteOrder": 3904, "time": 0.42458145275745385, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3714, + "noteOrder": 3917, "time": 0.42595996396770536, "position": { "x": 4, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3930, "time": 0.4273384751779568, "position": { "x": 3, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3798, + "noteOrder": 4006, "time": 0.43560954243946565, "position": { "x": 7, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3810, + "noteOrder": 4018, "time": 0.4369880536497171, "position": { "x": 6, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3822, + "noteOrder": 4031, "time": 0.4383665648599686, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 4056, "time": 0.4411235872804716, "position": { "x": 3, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3858, + "noteOrder": 4069, "time": 0.44250209849072303, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 4082, "time": 0.44388060970097454, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 4107, "time": 0.4466376321214774, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3906, + "noteOrder": 4120, "time": 0.4480161433317289, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 4133, "time": 0.44939465454198035, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3978, + "noteOrder": 4196, "time": 0.4562872105932378, "position": { "x": 3, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4026, + "noteOrder": 4247, "time": 0.4618012554342436, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4086, + "noteOrder": 4310, "time": 0.46869381148550104, "position": { "x": 4, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4158, + "noteOrder": 4386, "time": 0.4769648787470098, "position": { "x": 8, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4411, "time": 0.4797219011675128, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4437, "time": 0.48247892358801575, "position": { "x": 7, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4254, + "noteOrder": 4487, "time": 0.4879929684290217, "position": { "x": 2, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4513, "time": 0.4907499908495246, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4538, "time": 0.49350701327002755, "position": { "x": 3, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4351, + "noteOrder": 4589, "time": 0.4990210581110335, "position": { "x": 8, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4614, "time": 0.5017780805315364, "position": { "x": 4, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 7, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 4447, + "noteOrder": 4690, "time": 0.5100491477930452, "position": { "x": 5, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4716, "time": 0.5128061702135482, "position": { "x": 2, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 4495, + "noteOrder": 4741, "time": 0.5155631926340511, "position": { "x": 5, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4817, "time": 0.52383425989556, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 4639, + "noteOrder": 4893, "time": 0.5321053271570688, "position": { "x": 8, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4918, "time": 0.5348623495775717, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4944, "time": 0.5376193719980747, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4735, + "noteOrder": 4995, "time": 0.5431334168390807, "position": { "x": 2, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4783, + "noteOrder": 5045, "time": 0.5486474616800865, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 7, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4951, + "noteOrder": 5223, "time": 0.5679466186236072, "position": { "x": 7, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5048, + "noteOrder": 5324, "time": 0.5789747083056189, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 4, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5628, "time": 0.6120589773516543, "position": { "x": 4, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5360, + "noteOrder": 5654, "time": 0.6148159997721573, "position": { "x": 5, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5408, + "noteOrder": 5704, "time": 0.6203300446131631, "position": { "x": 8, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5730, "time": 0.6230870670336661, "position": { "x": 7, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5755, "time": 0.625844089454169, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5504, + "noteOrder": 5806, "time": 0.6313581342951748, "position": { "x": 2, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5831, "time": 0.6341151567156779, "position": { "x": 3, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5552, + "noteOrder": 5857, "time": 0.6368721791361808, "position": { "x": 3, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 7, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 6009, + "noteOrder": 6338, "time": 0.6892556051257368, "position": { "x": 7, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 6370, + "noteOrder": 6719, "time": 0.730610941433281, "position": { "x": 3, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 6, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6769, "time": 0.7361249862742869, "position": { "x": 4, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 6430, + "noteOrder": 6782, "time": 0.7375034974845384, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 4, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 8, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6610, + "noteOrder": 6972, "time": 0.7581811656383104, "position": { "x": 4, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 6, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 2, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6706, + "noteOrder": 7073, "time": 0.7692092553203222, "position": { "x": 6, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 5, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 5, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6970, + "noteOrder": 7352, "time": 0.7995365019458547, "position": { "x": 7, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 5, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 7067, + "noteOrder": 7454, "time": 0.8105645916278665, "position": { "x": 3, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 7091, + "noteOrder": 7479, "time": 0.8133216140483694, "position": { "x": 5, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 7235, + "noteOrder": 7631, "time": 0.8298637485713871, "position": { "x": 2, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 7259, + "noteOrder": 7657, "time": 0.83262077099189, "position": { "x": 6, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 7283, + "noteOrder": 7682, "time": 0.835377793412393, "position": { "x": 3, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 8, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 4, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7379, + "noteOrder": 7783, "time": 0.8464058830944048, "position": { "x": 7, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 3, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 4, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 6, @@ -2967,7 +2967,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 152, "time": 0.016542134523017685, "position": { "x": 3, @@ -2990,7 +2990,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 168, + "noteOrder": 177, "time": 0.019299156943520628, "position": { "x": 3, @@ -3013,7 +3013,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 254, "time": 0.027570224205029473, "position": { "x": 7, @@ -3036,7 +3036,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 264, + "noteOrder": 279, "time": 0.03032724662553242, "position": { "x": 7, @@ -3059,7 +3059,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 481, + "noteOrder": 507, "time": 0.05514044841005895, "position": { "x": 7, @@ -3082,7 +3082,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 493, + "noteOrder": 520, "time": 0.056518959620310415, "position": { "x": 7, @@ -3105,7 +3105,7 @@ { "lineGroupId": 18, "indexInLine": 3, - "noteOrder": 493, + "noteOrder": 520, "time": 0.056518959620310415, "position": { "x": 6, @@ -3128,7 +3128,7 @@ { "lineGroupId": 18, "indexInLine": 4, - "noteOrder": 499.0, + "noteOrder": 526.0, "time": 0.056518959620310415, "position": { "x": 6, @@ -3151,7 +3151,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 7, @@ -3174,7 +3174,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 517, + "noteOrder": 545, "time": 0.05927598204081336, "position": { "x": 7, @@ -3197,7 +3197,7 @@ { "lineGroupId": 19, "indexInLine": 3, - "noteOrder": 517, + "noteOrder": 545, "time": 0.05927598204081336, "position": { "x": 6, @@ -3220,7 +3220,7 @@ { "lineGroupId": 19, "indexInLine": 4, - "noteOrder": 523.0, + "noteOrder": 551.0, "time": 0.05927598204081336, "position": { "x": 6, @@ -3243,7 +3243,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 577, + "noteOrder": 608, "time": 0.06616853809207074, "position": { "x": 7, @@ -3266,7 +3266,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 649, + "noteOrder": 685, "time": 0.07443960535357957, "position": { "x": 7, @@ -3289,7 +3289,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 673, + "noteOrder": 710, "time": 0.07719662777408251, "position": { "x": 3, @@ -3312,7 +3312,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 685, + "noteOrder": 723, "time": 0.078575138984334, "position": { "x": 3, @@ -3335,7 +3335,7 @@ { "lineGroupId": 26, "indexInLine": 3, - "noteOrder": 685, + "noteOrder": 723, "time": 0.078575138984334, "position": { "x": 4, @@ -3358,7 +3358,7 @@ { "lineGroupId": 26, "indexInLine": 4, - "noteOrder": 691.0, + "noteOrder": 729.0, "time": 0.078575138984334, "position": { "x": 4, @@ -3381,7 +3381,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 3, @@ -3404,7 +3404,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 709, + "noteOrder": 748, "time": 0.08133216140483694, "position": { "x": 3, @@ -3427,7 +3427,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 709, + "noteOrder": 748, "time": 0.08133216140483694, "position": { "x": 4, @@ -3450,7 +3450,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 715.0, + "noteOrder": 754.0, "time": 0.08133216140483694, "position": { "x": 4, @@ -3473,7 +3473,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 769, + "noteOrder": 811, "time": 0.08822471745609431, "position": { "x": 3, @@ -3496,7 +3496,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 841, + "noteOrder": 887, "time": 0.09649578471760314, "position": { "x": 3, @@ -3519,7 +3519,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 841, + "noteOrder": 887, "time": 0.09649578471760314, "position": { "x": 5, @@ -3542,7 +3542,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 865, + "noteOrder": 913, "time": 0.0992528071381061, "position": { "x": 5, @@ -3565,7 +3565,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 889, + "noteOrder": 938, "time": 0.10200982955860904, "position": { "x": 7, @@ -3588,7 +3588,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 7, @@ -3611,7 +3611,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 937, + "noteOrder": 989, "time": 0.10752387439961494, "position": { "x": 5, @@ -3634,7 +3634,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 5, @@ -3657,7 +3657,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 985, + "noteOrder": 1039, "time": 0.11303791924062083, "position": { "x": 3, @@ -3680,7 +3680,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 3, @@ -3703,7 +3703,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 7, @@ -3726,7 +3726,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 7, @@ -3749,7 +3749,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 3, @@ -3772,7 +3772,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 3, @@ -3795,7 +3795,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1298, + "noteOrder": 1369, "time": 0.14887921070715915, "position": { "x": 3, @@ -3818,7 +3818,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1322, + "noteOrder": 1394, "time": 0.15163623312766208, "position": { "x": 3, @@ -3841,7 +3841,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1394, + "noteOrder": 1470, "time": 0.15990730038917095, "position": { "x": 7, @@ -3864,7 +3864,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1418, + "noteOrder": 1496, "time": 0.16266432280967388, "position": { "x": 7, @@ -3887,7 +3887,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 1442, + "noteOrder": 1521, "time": 0.16542134523017682, "position": { "x": 7, @@ -3910,7 +3910,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 7, @@ -3933,7 +3933,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1490, + "noteOrder": 1572, "time": 0.17093539007118275, "position": { "x": 3, @@ -3956,7 +3956,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 3, @@ -3979,7 +3979,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 6, @@ -4002,7 +4002,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1610, + "noteOrder": 1699, "time": 0.18472050217369745, "position": { "x": 6, @@ -4025,7 +4025,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 4, @@ -4048,7 +4048,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1610, + "noteOrder": 1699, "time": 0.18472050217369745, "position": { "x": 4, @@ -4071,7 +4071,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 1731, + "noteOrder": 1825, "time": 0.1985056142762122, "position": { "x": 3, @@ -4094,7 +4094,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 1743, + "noteOrder": 1838, "time": 0.19988412548646367, "position": { "x": 3, @@ -4117,7 +4117,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 1743, + "noteOrder": 1838, "time": 0.19988412548646367, "position": { "x": 4, @@ -4140,7 +4140,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 1749.0, + "noteOrder": 1844.0, "time": 0.19988412548646367, "position": { "x": 4, @@ -4163,7 +4163,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1851, "time": 0.20126263669671515, "position": { "x": 3, @@ -4186,7 +4186,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 1767, + "noteOrder": 1863, "time": 0.20264114790696663, "position": { "x": 3, @@ -4209,7 +4209,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 1767, + "noteOrder": 1863, "time": 0.20264114790696663, "position": { "x": 4, @@ -4232,7 +4232,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 1773.0, + "noteOrder": 1869.0, "time": 0.20264114790696663, "position": { "x": 4, @@ -4255,7 +4255,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1827, + "noteOrder": 1927, "time": 0.209533703958224, "position": { "x": 7, @@ -4278,7 +4278,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1839, + "noteOrder": 1940, "time": 0.21091221516847544, "position": { "x": 7, @@ -4301,7 +4301,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1839, + "noteOrder": 1940, "time": 0.21091221516847544, "position": { "x": 6, @@ -4324,7 +4324,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1845.0, + "noteOrder": 1946.0, "time": 0.21091221516847544, "position": { "x": 6, @@ -4347,7 +4347,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1851, + "noteOrder": 1952, "time": 0.21229072637872692, "position": { "x": 7, @@ -4370,7 +4370,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1863, + "noteOrder": 1965, "time": 0.2136692375889784, "position": { "x": 7, @@ -4393,7 +4393,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1863, + "noteOrder": 1965, "time": 0.2136692375889784, "position": { "x": 6, @@ -4416,7 +4416,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1869.0, + "noteOrder": 1971.0, "time": 0.2136692375889784, "position": { "x": 6, @@ -4439,7 +4439,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1923, + "noteOrder": 2028, "time": 0.2205617936402358, "position": { "x": 3, @@ -4462,7 +4462,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1935, + "noteOrder": 2041, "time": 0.22194030485048727, "position": { "x": 3, @@ -4485,7 +4485,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1935, + "noteOrder": 2041, "time": 0.22194030485048727, "position": { "x": 4, @@ -4508,7 +4508,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1941.0, + "noteOrder": 2047.0, "time": 0.22194030485048727, "position": { "x": 4, @@ -4531,7 +4531,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1947, + "noteOrder": 2054, "time": 0.2233188160607387, "position": { "x": 3, @@ -4554,7 +4554,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1959, + "noteOrder": 2066, "time": 0.22469732727099018, "position": { "x": 3, @@ -4577,7 +4577,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 1959, + "noteOrder": 2066, "time": 0.22469732727099018, "position": { "x": 4, @@ -4600,7 +4600,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 1965.0, + "noteOrder": 2072.0, "time": 0.22469732727099018, "position": { "x": 4, @@ -4623,7 +4623,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2019, + "noteOrder": 2130, "time": 0.23158988332224756, "position": { "x": 7, @@ -4646,7 +4646,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2031, + "noteOrder": 2142, "time": 0.23296839453249904, "position": { "x": 7, @@ -4669,7 +4669,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2031, + "noteOrder": 2142, "time": 0.23296839453249904, "position": { "x": 6, @@ -4692,7 +4692,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2037.0, + "noteOrder": 2148.0, "time": 0.23296839453249904, "position": { "x": 6, @@ -4715,7 +4715,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2043, + "noteOrder": 2155, "time": 0.23434690574275052, "position": { "x": 7, @@ -4738,7 +4738,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2055, + "noteOrder": 2168, "time": 0.235725416953002, "position": { "x": 7, @@ -4761,7 +4761,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2055, + "noteOrder": 2168, "time": 0.235725416953002, "position": { "x": 6, @@ -4784,7 +4784,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2061.0, + "noteOrder": 2174.0, "time": 0.235725416953002, "position": { "x": 6, @@ -4807,7 +4807,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2115, + "noteOrder": 2231, "time": 0.24261797300425936, "position": { "x": 3, @@ -4830,7 +4830,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 3, @@ -4853,7 +4853,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 7, @@ -4876,7 +4876,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 7, @@ -4899,7 +4899,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 3, @@ -4922,7 +4922,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 3, @@ -4945,7 +4945,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 7, @@ -4968,7 +4968,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 7, @@ -4991,7 +4991,7 @@ { "lineGroupId": 93, "indexInLine": 1, - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 8, @@ -5014,7 +5014,7 @@ { "lineGroupId": 93, "indexInLine": 2, - "noteOrder": 2319, + "noteOrder": 2447, "time": 0.2660526635785344, "position": { "x": 8, @@ -5037,7 +5037,7 @@ { "lineGroupId": 93, "indexInLine": 3, - "noteOrder": 2319, + "noteOrder": 2447, "time": 0.2660526635785344, "position": { "x": 6, @@ -5060,7 +5060,7 @@ { "lineGroupId": 93, "indexInLine": 4, - "noteOrder": 2325.0, + "noteOrder": 2453.0, "time": 0.2660526635785344, "position": { "x": 6, @@ -5083,7 +5083,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2331, + "noteOrder": 2459, "time": 0.26743117478878586, "position": { "x": 8, @@ -5106,7 +5106,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2344, + "noteOrder": 2472, "time": 0.2688096859990374, "position": { "x": 8, @@ -5129,7 +5129,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2344, + "noteOrder": 2472, "time": 0.2688096859990374, "position": { "x": 6, @@ -5152,7 +5152,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 6, @@ -5175,7 +5175,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2356, + "noteOrder": 2485, "time": 0.2701881972092888, "position": { "x": 8, @@ -5198,7 +5198,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 3, @@ -5221,7 +5221,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 2500, + "noteOrder": 2637, "time": 0.2867303317323065, "position": { "x": 3, @@ -5244,7 +5244,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 3, @@ -5267,7 +5267,7 @@ { "lineGroupId": 100, "indexInLine": 1, - "noteOrder": 2548, + "noteOrder": 2687, "time": 0.2922443765733124, "position": { "x": 3, @@ -5290,7 +5290,7 @@ { "lineGroupId": 100, "indexInLine": 2, - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 3, @@ -5313,7 +5313,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2596, + "noteOrder": 2738, "time": 0.2977584214143183, "position": { "x": 7, @@ -5336,7 +5336,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 7, @@ -5359,7 +5359,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2644, + "noteOrder": 2789, "time": 0.30327246625532417, "position": { "x": 7, @@ -5382,7 +5382,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 7, @@ -5405,7 +5405,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2692, + "noteOrder": 2840, "time": 0.30878651109633004, "position": { "x": 3, @@ -5428,7 +5428,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2704, + "noteOrder": 2852, "time": 0.31016502230658155, "position": { "x": 3, @@ -5451,7 +5451,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2704, + "noteOrder": 2852, "time": 0.31016502230658155, "position": { "x": 4, @@ -5474,7 +5474,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2710.0, + "noteOrder": 2858.0, "time": 0.31016502230658155, "position": { "x": 4, @@ -5497,7 +5497,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 7, @@ -5520,7 +5520,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2728, + "noteOrder": 2878, "time": 0.3129220447270845, "position": { "x": 7, @@ -5543,7 +5543,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2728, + "noteOrder": 2878, "time": 0.3129220447270845, "position": { "x": 6, @@ -5566,7 +5566,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2734.0, + "noteOrder": 2884.0, "time": 0.3129220447270845, "position": { "x": 6, @@ -5589,7 +5589,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2740, + "noteOrder": 2890, "time": 0.314300555937336, "position": { "x": 3, @@ -5612,7 +5612,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2752, + "noteOrder": 2903, "time": 0.3156790671475874, "position": { "x": 3, @@ -5635,7 +5635,7 @@ { "lineGroupId": 108, "indexInLine": 3, - "noteOrder": 2752, + "noteOrder": 2903, "time": 0.3156790671475874, "position": { "x": 4, @@ -5658,7 +5658,7 @@ { "lineGroupId": 108, "indexInLine": 4, - "noteOrder": 2758.0, + "noteOrder": 2909.0, "time": 0.3156790671475874, "position": { "x": 4, @@ -5681,7 +5681,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 7, @@ -5704,7 +5704,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 2776, + "noteOrder": 2928, "time": 0.3184360895680904, "position": { "x": 7, @@ -5727,7 +5727,7 @@ { "lineGroupId": 109, "indexInLine": 3, - "noteOrder": 2776, + "noteOrder": 2928, "time": 0.3184360895680904, "position": { "x": 6, @@ -5750,7 +5750,7 @@ { "lineGroupId": 109, "indexInLine": 4, - "noteOrder": 2782.0, + "noteOrder": 2934.0, "time": 0.3184360895680904, "position": { "x": 6, @@ -5773,7 +5773,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2788, + "noteOrder": 2941, "time": 0.3198146007783419, "position": { "x": 2, @@ -5796,7 +5796,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2800, + "noteOrder": 2954, "time": 0.32119311198859335, "position": { "x": 2, @@ -5819,7 +5819,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 2800, + "noteOrder": 2954, "time": 0.32119311198859335, "position": { "x": 3, @@ -5842,7 +5842,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 2806.0, + "noteOrder": 2960.0, "time": 0.32119311198859335, "position": { "x": 3, @@ -5865,7 +5865,7 @@ { "lineGroupId": 111, "indexInLine": 1, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 8, @@ -5888,7 +5888,7 @@ { "lineGroupId": 111, "indexInLine": 2, - "noteOrder": 2824, + "noteOrder": 2979, "time": 0.32395013440909626, "position": { "x": 8, @@ -5911,7 +5911,7 @@ { "lineGroupId": 111, "indexInLine": 3, - "noteOrder": 2824, + "noteOrder": 2979, "time": 0.32395013440909626, "position": { "x": 7, @@ -5934,7 +5934,7 @@ { "lineGroupId": 111, "indexInLine": 4, - "noteOrder": 2830.0, + "noteOrder": 2985.0, "time": 0.32395013440909626, "position": { "x": 7, @@ -5957,7 +5957,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2836, + "noteOrder": 2992, "time": 0.32532864561934777, "position": { "x": 2, @@ -5980,7 +5980,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2848, + "noteOrder": 3004, "time": 0.3267071568295993, "position": { "x": 2, @@ -6003,7 +6003,7 @@ { "lineGroupId": 112, "indexInLine": 3, - "noteOrder": 2848, + "noteOrder": 3004, "time": 0.3267071568295993, "position": { "x": 3, @@ -6026,7 +6026,7 @@ { "lineGroupId": 112, "indexInLine": 4, - "noteOrder": 2854.0, + "noteOrder": 3010.0, "time": 0.3267071568295993, "position": { "x": 3, @@ -6049,7 +6049,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 8, @@ -6072,7 +6072,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2872, + "noteOrder": 3030, "time": 0.3294641792501022, "position": { "x": 8, @@ -6095,7 +6095,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 2872, + "noteOrder": 3030, "time": 0.3294641792501022, "position": { "x": 7, @@ -6118,7 +6118,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 2878.0, + "noteOrder": 3036.0, "time": 0.3294641792501022, "position": { "x": 7, @@ -6141,7 +6141,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2884, + "noteOrder": 3042, "time": 0.33084269046035364, "position": { "x": 3, @@ -6164,7 +6164,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 3, @@ -6187,7 +6187,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 5, @@ -6210,7 +6210,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 7, @@ -6233,7 +6233,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 7, @@ -6256,7 +6256,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 5, @@ -6279,7 +6279,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 3, @@ -6302,7 +6302,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 3, @@ -6325,7 +6325,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 5, @@ -6348,7 +6348,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 7, @@ -6371,7 +6371,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 7, @@ -6394,7 +6394,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 5, @@ -6417,7 +6417,7 @@ { "lineGroupId": 122, "indexInLine": 1, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 2, @@ -6440,7 +6440,7 @@ { "lineGroupId": 122, "indexInLine": 2, - "noteOrder": 3089, + "noteOrder": 3258, "time": 0.3542773810346287, "position": { "x": 3, @@ -6463,7 +6463,7 @@ { "lineGroupId": 122, "indexInLine": 3, - "noteOrder": 3095, + "noteOrder": 3264, "time": 0.3549666366397545, "position": { "x": 3, @@ -6486,7 +6486,7 @@ { "lineGroupId": 122, "indexInLine": 4, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 5, @@ -6509,7 +6509,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 8, @@ -6532,7 +6532,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 3113, + "noteOrder": 3283, "time": 0.3570344034551317, "position": { "x": 7, @@ -6555,7 +6555,7 @@ { "lineGroupId": 123, "indexInLine": 3, - "noteOrder": 3119, + "noteOrder": 3290, "time": 0.3577236590602574, "position": { "x": 7, @@ -6578,7 +6578,7 @@ { "lineGroupId": 123, "indexInLine": 4, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 5, @@ -6601,7 +6601,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 2, @@ -6624,7 +6624,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3137, + "noteOrder": 3309, "time": 0.3597914258756346, "position": { "x": 3, @@ -6647,7 +6647,7 @@ { "lineGroupId": 124, "indexInLine": 3, - "noteOrder": 3143, + "noteOrder": 3315, "time": 0.36048068148076035, "position": { "x": 3, @@ -6670,7 +6670,7 @@ { "lineGroupId": 124, "indexInLine": 4, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 5, @@ -6693,7 +6693,7 @@ { "lineGroupId": 125, "indexInLine": 1, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 8, @@ -6716,7 +6716,7 @@ { "lineGroupId": 125, "indexInLine": 2, - "noteOrder": 3161, + "noteOrder": 3334, "time": 0.3625484482961376, "position": { "x": 7, @@ -6739,7 +6739,7 @@ { "lineGroupId": 125, "indexInLine": 3, - "noteOrder": 3167, + "noteOrder": 3340, "time": 0.3632377039012633, "position": { "x": 7, @@ -6762,7 +6762,7 @@ { "lineGroupId": 125, "indexInLine": 4, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 5, @@ -6785,7 +6785,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 2, @@ -6808,7 +6808,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3185, + "noteOrder": 3359, "time": 0.3653054707166405, "position": { "x": 3, @@ -6831,7 +6831,7 @@ { "lineGroupId": 126, "indexInLine": 3, - "noteOrder": 3191, + "noteOrder": 3366, "time": 0.3659947263217662, "position": { "x": 3, @@ -6854,7 +6854,7 @@ { "lineGroupId": 126, "indexInLine": 4, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 5, @@ -6877,7 +6877,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 8, @@ -6900,7 +6900,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3209, + "noteOrder": 3385, "time": 0.36806249313714345, "position": { "x": 7, @@ -6923,7 +6923,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3215, + "noteOrder": 3391, "time": 0.3687517487422692, "position": { "x": 7, @@ -6946,7 +6946,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 5, @@ -6969,7 +6969,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 2, @@ -6992,7 +6992,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3233, + "noteOrder": 3410, "time": 0.3708195155576464, "position": { "x": 3, @@ -7015,7 +7015,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3239, + "noteOrder": 3416, "time": 0.3715087711627721, "position": { "x": 3, @@ -7038,7 +7038,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 5, @@ -7061,7 +7061,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3653, + "noteOrder": 3854, "time": 0.419067407916448, "position": { "x": 4, @@ -7084,7 +7084,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3678, + "noteOrder": 3879, "time": 0.4218244303369509, "position": { "x": 4, @@ -7107,7 +7107,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3750, + "noteOrder": 3955, "time": 0.4300954975984598, "position": { "x": 6, @@ -7130,7 +7130,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3774, + "noteOrder": 3980, "time": 0.4328525200189627, "position": { "x": 6, @@ -7153,7 +7153,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3942, + "noteOrder": 4158, "time": 0.4521516769624833, "position": { "x": 3, @@ -7176,7 +7176,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 3, @@ -7199,7 +7199,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3990, + "noteOrder": 4209, "time": 0.45766572180348924, "position": { "x": 7, @@ -7222,7 +7222,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 7, @@ -7245,7 +7245,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4134, + "noteOrder": 4361, "time": 0.47420785632650686, "position": { "x": 7, @@ -7268,7 +7268,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4158, + "noteOrder": 4386, "time": 0.4769648787470098, "position": { "x": 7, @@ -7291,7 +7291,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 4, @@ -7314,7 +7314,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 3, @@ -7337,7 +7337,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 4254, + "noteOrder": 4487, "time": 0.4879929684290217, "position": { "x": 3, @@ -7360,7 +7360,7 @@ { "lineGroupId": 167, "indexInLine": 3, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 6, @@ -7383,7 +7383,7 @@ { "lineGroupId": 171, "indexInLine": 1, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 7, @@ -7406,7 +7406,7 @@ { "lineGroupId": 171, "indexInLine": 2, - "noteOrder": 4351, + "noteOrder": 4589, "time": 0.4990210581110335, "position": { "x": 7, @@ -7429,7 +7429,7 @@ { "lineGroupId": 171, "indexInLine": 3, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 4, @@ -7452,7 +7452,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 3, @@ -7475,7 +7475,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 3, @@ -7498,7 +7498,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 7, @@ -7521,7 +7521,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 4639, + "noteOrder": 4893, "time": 0.5321053271570688, "position": { "x": 7, @@ -7544,7 +7544,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 4, @@ -7567,7 +7567,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 3, @@ -7590,7 +7590,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 4735, + "noteOrder": 4995, "time": 0.5431334168390807, "position": { "x": 3, @@ -7613,7 +7613,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 6, @@ -7636,7 +7636,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 3, @@ -7659,7 +7659,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 4855, + "noteOrder": 5121, "time": 0.5569185289415953, "position": { "x": 4, @@ -7682,7 +7682,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 4879, + "noteOrder": 5147, "time": 0.5596755513620982, "position": { "x": 3, @@ -7705,7 +7705,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 7, @@ -7728,7 +7728,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 4855, + "noteOrder": 5121, "time": 0.5569185289415953, "position": { "x": 6, @@ -7751,7 +7751,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 4879, + "noteOrder": 5147, "time": 0.5596755513620982, "position": { "x": 7, @@ -7774,7 +7774,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 5096, + "noteOrder": 5375, "time": 0.5844887531466249, "position": { "x": 4, @@ -7797,7 +7797,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 5108, + "noteOrder": 5388, "time": 0.5858672643568763, "position": { "x": 5, @@ -7820,7 +7820,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 4, @@ -7843,7 +7843,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 6, @@ -7866,7 +7866,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 5132, + "noteOrder": 5413, "time": 0.5886242867773792, "position": { "x": 5, @@ -7889,7 +7889,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 6, @@ -7912,7 +7912,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 4, @@ -7935,7 +7935,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 5156, + "noteOrder": 5438, "time": 0.5913813091978821, "position": { "x": 5, @@ -7958,7 +7958,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 4, @@ -7981,7 +7981,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 6, @@ -8004,7 +8004,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 5180, + "noteOrder": 5464, "time": 0.5941383316183851, "position": { "x": 5, @@ -8027,7 +8027,7 @@ { "lineGroupId": 199, "indexInLine": 3, - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 6, @@ -8050,7 +8050,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 5216, + "noteOrder": 5502, "time": 0.5982738652491396, "position": { "x": 7, @@ -8073,7 +8073,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 5264, + "noteOrder": 5552, "time": 0.6037879100901454, "position": { "x": 7, @@ -8096,7 +8096,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 5240, + "noteOrder": 5527, "time": 0.6010308876696425, "position": { "x": 4, @@ -8119,7 +8119,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 5264, + "noteOrder": 5552, "time": 0.6037879100901454, "position": { "x": 5, @@ -8142,7 +8142,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 5384, + "noteOrder": 5679, "time": 0.6175730221926601, "position": { "x": 7, @@ -8165,7 +8165,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 4, @@ -8188,7 +8188,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 3, @@ -8211,7 +8211,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 6, @@ -8234,7 +8234,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 5672, + "noteOrder": 5983, "time": 0.6506572912386955, "position": { "x": 7, @@ -8257,7 +8257,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 5685, + "noteOrder": 5996, "time": 0.652035802448947, "position": { "x": 7, @@ -8280,7 +8280,7 @@ { "lineGroupId": 217, "indexInLine": 3, - "noteOrder": 5685, + "noteOrder": 5996, "time": 0.652035802448947, "position": { "x": 5, @@ -8303,7 +8303,7 @@ { "lineGroupId": 217, "indexInLine": 4, - "noteOrder": 5691.0, + "noteOrder": 6002.0, "time": 0.652035802448947, "position": { "x": 5, @@ -8326,7 +8326,7 @@ { "lineGroupId": 218, "indexInLine": 1, - "noteOrder": 5697, + "noteOrder": 6009, "time": 0.6534143136591986, "position": { "x": 7, @@ -8349,7 +8349,7 @@ { "lineGroupId": 218, "indexInLine": 2, - "noteOrder": 5709, + "noteOrder": 6021, "time": 0.65479282486945, "position": { "x": 7, @@ -8372,7 +8372,7 @@ { "lineGroupId": 218, "indexInLine": 3, - "noteOrder": 5709, + "noteOrder": 6021, "time": 0.65479282486945, "position": { "x": 5, @@ -8395,7 +8395,7 @@ { "lineGroupId": 218, "indexInLine": 4, - "noteOrder": 5715.0, + "noteOrder": 6027.0, "time": 0.65479282486945, "position": { "x": 5, @@ -8418,7 +8418,7 @@ { "lineGroupId": 219, "indexInLine": 1, - "noteOrder": 5721, + "noteOrder": 6034, "time": 0.6561713360797015, "position": { "x": 7, @@ -8441,7 +8441,7 @@ { "lineGroupId": 219, "indexInLine": 2, - "noteOrder": 5733, + "noteOrder": 6047, "time": 0.6575498472899529, "position": { "x": 7, @@ -8464,7 +8464,7 @@ { "lineGroupId": 219, "indexInLine": 3, - "noteOrder": 5733, + "noteOrder": 6047, "time": 0.6575498472899529, "position": { "x": 5, @@ -8487,7 +8487,7 @@ { "lineGroupId": 219, "indexInLine": 4, - "noteOrder": 5739.0, + "noteOrder": 6053.0, "time": 0.6575498472899529, "position": { "x": 5, @@ -8510,7 +8510,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 5745, + "noteOrder": 6059, "time": 0.6589283585002044, "position": { "x": 7, @@ -8533,7 +8533,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 5757, + "noteOrder": 6072, "time": 0.6603068697104558, "position": { "x": 7, @@ -8556,7 +8556,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 5757, + "noteOrder": 6072, "time": 0.6603068697104558, "position": { "x": 5, @@ -8579,7 +8579,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 5763.0, + "noteOrder": 6078.0, "time": 0.6603068697104558, "position": { "x": 5, @@ -8602,7 +8602,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 5769, + "noteOrder": 6085, "time": 0.6616853809207073, "position": { "x": 7, @@ -8625,7 +8625,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 5781, + "noteOrder": 6097, "time": 0.6630638921309587, "position": { "x": 7, @@ -8648,7 +8648,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 5781, + "noteOrder": 6097, "time": 0.6630638921309587, "position": { "x": 5, @@ -8671,7 +8671,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 5787.0, + "noteOrder": 6103.0, "time": 0.6630638921309587, "position": { "x": 5, @@ -8694,7 +8694,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 5793, + "noteOrder": 6110, "time": 0.6644424033412103, "position": { "x": 7, @@ -8717,7 +8717,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 5805, + "noteOrder": 6123, "time": 0.6658209145514618, "position": { "x": 7, @@ -8740,7 +8740,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 5805, + "noteOrder": 6123, "time": 0.6658209145514618, "position": { "x": 5, @@ -8763,7 +8763,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 5811.0, + "noteOrder": 6129.0, "time": 0.6658209145514618, "position": { "x": 5, @@ -8786,7 +8786,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 5817, + "noteOrder": 6135, "time": 0.6671994257617132, "position": { "x": 7, @@ -8809,7 +8809,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 5829, + "noteOrder": 6148, "time": 0.6685779369719648, "position": { "x": 7, @@ -8832,7 +8832,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 5829, + "noteOrder": 6148, "time": 0.6685779369719648, "position": { "x": 5, @@ -8855,7 +8855,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 5835.0, + "noteOrder": 6154.0, "time": 0.6685779369719648, "position": { "x": 5, @@ -8878,7 +8878,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 5841, + "noteOrder": 6161, "time": 0.6699564481822162, "position": { "x": 7, @@ -8901,7 +8901,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 5853, + "noteOrder": 6173, "time": 0.6713349593924677, "position": { "x": 7, @@ -8924,7 +8924,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 5853, + "noteOrder": 6173, "time": 0.6713349593924677, "position": { "x": 5, @@ -8947,7 +8947,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 5859.0, + "noteOrder": 6179.0, "time": 0.6713349593924677, "position": { "x": 5, @@ -8970,7 +8970,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 5865, + "noteOrder": 6186, "time": 0.672713470602719, "position": { "x": 7, @@ -8993,7 +8993,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 5877, + "noteOrder": 6199, "time": 0.6740919818129706, "position": { "x": 7, @@ -9016,7 +9016,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 5877, + "noteOrder": 6199, "time": 0.6740919818129706, "position": { "x": 5, @@ -9039,7 +9039,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 5883.0, + "noteOrder": 6205.0, "time": 0.6740919818129706, "position": { "x": 5, @@ -9062,7 +9062,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 7, @@ -9085,7 +9085,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 5901, + "noteOrder": 6224, "time": 0.6768490042334735, "position": { "x": 7, @@ -9108,7 +9108,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 5901, + "noteOrder": 6224, "time": 0.6768490042334735, "position": { "x": 5, @@ -9131,7 +9131,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 5907.0, + "noteOrder": 6230.0, "time": 0.6768490042334735, "position": { "x": 5, @@ -9154,7 +9154,7 @@ { "lineGroupId": 227, "indexInLine": 1, - "noteOrder": 5913, + "noteOrder": 6237, "time": 0.678227515443725, "position": { "x": 7, @@ -9177,7 +9177,7 @@ { "lineGroupId": 227, "indexInLine": 2, - "noteOrder": 5925, + "noteOrder": 6250, "time": 0.6796060266539765, "position": { "x": 7, @@ -9200,7 +9200,7 @@ { "lineGroupId": 227, "indexInLine": 3, - "noteOrder": 5925, + "noteOrder": 6250, "time": 0.6796060266539765, "position": { "x": 5, @@ -9223,7 +9223,7 @@ { "lineGroupId": 227, "indexInLine": 4, - "noteOrder": 5931.0, + "noteOrder": 6256.0, "time": 0.6796060266539765, "position": { "x": 5, @@ -9246,7 +9246,7 @@ { "lineGroupId": 228, "indexInLine": 1, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 7, @@ -9269,7 +9269,7 @@ { "lineGroupId": 228, "indexInLine": 2, - "noteOrder": 5949, + "noteOrder": 6275, "time": 0.6823630490744794, "position": { "x": 7, @@ -9292,7 +9292,7 @@ { "lineGroupId": 228, "indexInLine": 3, - "noteOrder": 5949, + "noteOrder": 6275, "time": 0.6823630490744794, "position": { "x": 5, @@ -9315,7 +9315,7 @@ { "lineGroupId": 228, "indexInLine": 4, - "noteOrder": 5955.0, + "noteOrder": 6281.0, "time": 0.6823630490744794, "position": { "x": 5, @@ -9338,7 +9338,7 @@ { "lineGroupId": 229, "indexInLine": 1, - "noteOrder": 5961, + "noteOrder": 6288, "time": 0.683741560284731, "position": { "x": 7, @@ -9361,7 +9361,7 @@ { "lineGroupId": 229, "indexInLine": 2, - "noteOrder": 5973, + "noteOrder": 6300, "time": 0.6851200714949824, "position": { "x": 7, @@ -9384,7 +9384,7 @@ { "lineGroupId": 229, "indexInLine": 3, - "noteOrder": 5973, + "noteOrder": 6300, "time": 0.6851200714949824, "position": { "x": 5, @@ -9407,7 +9407,7 @@ { "lineGroupId": 229, "indexInLine": 4, - "noteOrder": 5979.0, + "noteOrder": 6306.0, "time": 0.6851200714949824, "position": { "x": 5, @@ -9430,7 +9430,7 @@ { "lineGroupId": 230, "indexInLine": 1, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 7, @@ -9453,7 +9453,7 @@ { "lineGroupId": 230, "indexInLine": 2, - "noteOrder": 5997, + "noteOrder": 6326, "time": 0.6878770939154852, "position": { "x": 7, @@ -9476,7 +9476,7 @@ { "lineGroupId": 230, "indexInLine": 3, - "noteOrder": 5997, + "noteOrder": 6326, "time": 0.6878770939154852, "position": { "x": 5, @@ -9499,7 +9499,7 @@ { "lineGroupId": 230, "indexInLine": 4, - "noteOrder": 6003.0, + "noteOrder": 6332.0, "time": 0.6878770939154852, "position": { "x": 5, @@ -9522,7 +9522,7 @@ { "lineGroupId": 233, "indexInLine": 1, - "noteOrder": 6057, + "noteOrder": 6389, "time": 0.6947696499667427, "position": { "x": 3, @@ -9545,7 +9545,7 @@ { "lineGroupId": 233, "indexInLine": 2, - "noteOrder": 6069, + "noteOrder": 6402, "time": 0.6961481611769942, "position": { "x": 3, @@ -9568,7 +9568,7 @@ { "lineGroupId": 233, "indexInLine": 3, - "noteOrder": 6069, + "noteOrder": 6402, "time": 0.6961481611769942, "position": { "x": 4, @@ -9591,7 +9591,7 @@ { "lineGroupId": 233, "indexInLine": 4, - "noteOrder": 6075.0, + "noteOrder": 6408.0, "time": 0.6961481611769942, "position": { "x": 4, @@ -9614,7 +9614,7 @@ { "lineGroupId": 234, "indexInLine": 1, - "noteOrder": 6081, + "noteOrder": 6414, "time": 0.6975266723872456, "position": { "x": 3, @@ -9637,7 +9637,7 @@ { "lineGroupId": 234, "indexInLine": 2, - "noteOrder": 6093, + "noteOrder": 6427, "time": 0.6989051835974972, "position": { "x": 3, @@ -9660,7 +9660,7 @@ { "lineGroupId": 234, "indexInLine": 3, - "noteOrder": 6093, + "noteOrder": 6427, "time": 0.6989051835974972, "position": { "x": 4, @@ -9683,7 +9683,7 @@ { "lineGroupId": 234, "indexInLine": 4, - "noteOrder": 6099.0, + "noteOrder": 6433.0, "time": 0.6989051835974972, "position": { "x": 4, @@ -9706,7 +9706,7 @@ { "lineGroupId": 235, "indexInLine": 1, - "noteOrder": 6105, + "noteOrder": 6440, "time": 0.7002836948077487, "position": { "x": 3, @@ -9729,7 +9729,7 @@ { "lineGroupId": 235, "indexInLine": 2, - "noteOrder": 6117, + "noteOrder": 6452, "time": 0.701662206018, "position": { "x": 3, @@ -9752,7 +9752,7 @@ { "lineGroupId": 235, "indexInLine": 3, - "noteOrder": 6117, + "noteOrder": 6452, "time": 0.701662206018, "position": { "x": 4, @@ -9775,7 +9775,7 @@ { "lineGroupId": 235, "indexInLine": 4, - "noteOrder": 6123.0, + "noteOrder": 6458.0, "time": 0.701662206018, "position": { "x": 4, @@ -9798,7 +9798,7 @@ { "lineGroupId": 236, "indexInLine": 1, - "noteOrder": 6129, + "noteOrder": 6465, "time": 0.7030407172282515, "position": { "x": 3, @@ -9821,7 +9821,7 @@ { "lineGroupId": 236, "indexInLine": 2, - "noteOrder": 6141, + "noteOrder": 6478, "time": 0.704419228438503, "position": { "x": 3, @@ -9844,7 +9844,7 @@ { "lineGroupId": 236, "indexInLine": 3, - "noteOrder": 6141, + "noteOrder": 6478, "time": 0.704419228438503, "position": { "x": 4, @@ -9867,7 +9867,7 @@ { "lineGroupId": 236, "indexInLine": 4, - "noteOrder": 6147.0, + "noteOrder": 6484.0, "time": 0.704419228438503, "position": { "x": 4, @@ -9890,7 +9890,7 @@ { "lineGroupId": 237, "indexInLine": 1, - "noteOrder": 6153, + "noteOrder": 6490, "time": 0.7057977396487545, "position": { "x": 3, @@ -9913,7 +9913,7 @@ { "lineGroupId": 237, "indexInLine": 2, - "noteOrder": 6165, + "noteOrder": 6503, "time": 0.7071762508590059, "position": { "x": 3, @@ -9936,7 +9936,7 @@ { "lineGroupId": 237, "indexInLine": 3, - "noteOrder": 6165, + "noteOrder": 6503, "time": 0.7071762508590059, "position": { "x": 5, @@ -9959,7 +9959,7 @@ { "lineGroupId": 237, "indexInLine": 4, - "noteOrder": 6171.0, + "noteOrder": 6509.0, "time": 0.7071762508590059, "position": { "x": 5, @@ -9982,7 +9982,7 @@ { "lineGroupId": 238, "indexInLine": 1, - "noteOrder": 6177, + "noteOrder": 6516, "time": 0.7085547620692574, "position": { "x": 3, @@ -10005,7 +10005,7 @@ { "lineGroupId": 238, "indexInLine": 2, - "noteOrder": 6189, + "noteOrder": 6528, "time": 0.709933273279509, "position": { "x": 3, @@ -10028,7 +10028,7 @@ { "lineGroupId": 238, "indexInLine": 3, - "noteOrder": 6189, + "noteOrder": 6528, "time": 0.709933273279509, "position": { "x": 5, @@ -10051,7 +10051,7 @@ { "lineGroupId": 238, "indexInLine": 4, - "noteOrder": 6195.0, + "noteOrder": 6534.0, "time": 0.709933273279509, "position": { "x": 5, @@ -10074,7 +10074,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 6201, + "noteOrder": 6541, "time": 0.7113117844897604, "position": { "x": 3, @@ -10097,7 +10097,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 6213, + "noteOrder": 6554, "time": 0.7126902957000119, "position": { "x": 3, @@ -10120,7 +10120,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 6213, + "noteOrder": 6554, "time": 0.7126902957000119, "position": { "x": 5, @@ -10143,7 +10143,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 6219.0, + "noteOrder": 6560.0, "time": 0.7126902957000119, "position": { "x": 5, @@ -10166,7 +10166,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 6225, + "noteOrder": 6566, "time": 0.7140688069102634, "position": { "x": 3, @@ -10189,7 +10189,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 6237, + "noteOrder": 6579, "time": 0.7154473181205148, "position": { "x": 3, @@ -10212,7 +10212,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 6237, + "noteOrder": 6579, "time": 0.7154473181205148, "position": { "x": 5, @@ -10235,7 +10235,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 6243.0, + "noteOrder": 6585.0, "time": 0.7154473181205148, "position": { "x": 5, @@ -10258,7 +10258,7 @@ { "lineGroupId": 241, "indexInLine": 1, - "noteOrder": 6249, + "noteOrder": 6592, "time": 0.7168258293307662, "position": { "x": 3, @@ -10281,7 +10281,7 @@ { "lineGroupId": 241, "indexInLine": 2, - "noteOrder": 6261, + "noteOrder": 6604, "time": 0.7182043405410177, "position": { "x": 3, @@ -10304,7 +10304,7 @@ { "lineGroupId": 241, "indexInLine": 3, - "noteOrder": 6261, + "noteOrder": 6604, "time": 0.7182043405410177, "position": { "x": 6, @@ -10327,7 +10327,7 @@ { "lineGroupId": 241, "indexInLine": 4, - "noteOrder": 6267.0, + "noteOrder": 6610.0, "time": 0.7182043405410177, "position": { "x": 6, @@ -10350,7 +10350,7 @@ { "lineGroupId": 242, "indexInLine": 1, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 3, @@ -10373,7 +10373,7 @@ { "lineGroupId": 242, "indexInLine": 2, - "noteOrder": 6285, + "noteOrder": 6630, "time": 0.7209613629615207, "position": { "x": 3, @@ -10396,7 +10396,7 @@ { "lineGroupId": 242, "indexInLine": 3, - "noteOrder": 6285, + "noteOrder": 6630, "time": 0.7209613629615207, "position": { "x": 6, @@ -10419,7 +10419,7 @@ { "lineGroupId": 242, "indexInLine": 4, - "noteOrder": 6291.0, + "noteOrder": 6636.0, "time": 0.7209613629615207, "position": { "x": 6, @@ -10442,7 +10442,7 @@ { "lineGroupId": 243, "indexInLine": 1, - "noteOrder": 6297, + "noteOrder": 6642, "time": 0.7223398741717721, "position": { "x": 3, @@ -10465,7 +10465,7 @@ { "lineGroupId": 243, "indexInLine": 2, - "noteOrder": 6309, + "noteOrder": 6655, "time": 0.7237183853820236, "position": { "x": 3, @@ -10488,7 +10488,7 @@ { "lineGroupId": 243, "indexInLine": 3, - "noteOrder": 6309, + "noteOrder": 6655, "time": 0.7237183853820236, "position": { "x": 6, @@ -10511,7 +10511,7 @@ { "lineGroupId": 243, "indexInLine": 4, - "noteOrder": 6315.0, + "noteOrder": 6661.0, "time": 0.7237183853820236, "position": { "x": 6, @@ -10534,7 +10534,7 @@ { "lineGroupId": 244, "indexInLine": 1, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 3, @@ -10557,7 +10557,7 @@ { "lineGroupId": 244, "indexInLine": 2, - "noteOrder": 6333, + "noteOrder": 6681, "time": 0.7264754078025266, "position": { "x": 3, @@ -10580,7 +10580,7 @@ { "lineGroupId": 244, "indexInLine": 3, - "noteOrder": 6333, + "noteOrder": 6681, "time": 0.7264754078025266, "position": { "x": 6, @@ -10603,7 +10603,7 @@ { "lineGroupId": 244, "indexInLine": 4, - "noteOrder": 6339.0, + "noteOrder": 6687.0, "time": 0.7264754078025266, "position": { "x": 6, @@ -10626,7 +10626,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 6346, + "noteOrder": 6693, "time": 0.7278539190127781, "position": { "x": 3, @@ -10649,7 +10649,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 3, @@ -10672,7 +10672,7 @@ { "lineGroupId": 245, "indexInLine": 3, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 5, @@ -10695,7 +10695,7 @@ { "lineGroupId": 245, "indexInLine": 4, - "noteOrder": 6364.0, + "noteOrder": 6712.0, "time": 0.7292324302230295, "position": { "x": 5, @@ -10718,7 +10718,7 @@ { "lineGroupId": 248, "indexInLine": 1, - "noteOrder": 6394, + "noteOrder": 6744, "time": 0.7333679638537839, "position": { "x": 3, @@ -10741,7 +10741,7 @@ { "lineGroupId": 248, "indexInLine": 2, - "noteOrder": 6406, + "noteOrder": 6757, "time": 0.7347464750640355, "position": { "x": 3, @@ -10764,7 +10764,7 @@ { "lineGroupId": 248, "indexInLine": 3, - "noteOrder": 6406, + "noteOrder": 6757, "time": 0.7347464750640355, "position": { "x": 5, @@ -10787,7 +10787,7 @@ { "lineGroupId": 248, "indexInLine": 4, - "noteOrder": 6412.0, + "noteOrder": 6763.0, "time": 0.7347464750640355, "position": { "x": 5, @@ -10810,7 +10810,7 @@ { "lineGroupId": 252, "indexInLine": 1, - "noteOrder": 6538, + "noteOrder": 6896, "time": 0.7499100983768017, "position": { "x": 7, @@ -10833,7 +10833,7 @@ { "lineGroupId": 252, "indexInLine": 2, - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 6, @@ -10856,7 +10856,7 @@ { "lineGroupId": 252, "indexInLine": 3, - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 7, @@ -10879,7 +10879,7 @@ { "lineGroupId": 252, "indexInLine": 4, - "noteOrder": 6610, + "noteOrder": 6972, "time": 0.7581811656383104, "position": { "x": 6, @@ -10902,7 +10902,7 @@ { "lineGroupId": 256, "indexInLine": 1, - "noteOrder": 6634, + "noteOrder": 6997, "time": 0.7609381880588134, "position": { "x": 3, @@ -10925,7 +10925,7 @@ { "lineGroupId": 256, "indexInLine": 2, - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 4, @@ -10948,7 +10948,7 @@ { "lineGroupId": 256, "indexInLine": 3, - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 3, @@ -10971,7 +10971,7 @@ { "lineGroupId": 256, "indexInLine": 4, - "noteOrder": 6706, + "noteOrder": 7073, "time": 0.7692092553203222, "position": { "x": 4, @@ -10994,7 +10994,7 @@ { "lineGroupId": 262, "indexInLine": 1, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 7, @@ -11017,7 +11017,7 @@ { "lineGroupId": 262, "indexInLine": 2, - "noteOrder": 6790, + "noteOrder": 7162, "time": 0.7788588337920825, "position": { "x": 7, @@ -11040,7 +11040,7 @@ { "lineGroupId": 262, "indexInLine": 3, - "noteOrder": 6814, + "noteOrder": 7188, "time": 0.7816158562125856, "position": { "x": 3, @@ -11063,7 +11063,7 @@ { "lineGroupId": 262, "indexInLine": 4, - "noteOrder": 6826, + "noteOrder": 7200, "time": 0.782994367422837, "position": { "x": 3, @@ -11086,7 +11086,7 @@ { "lineGroupId": 263, "indexInLine": 1, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 3, @@ -11109,7 +11109,7 @@ { "lineGroupId": 263, "indexInLine": 2, - "noteOrder": 6790, + "noteOrder": 7162, "time": 0.7788588337920825, "position": { "x": 3, @@ -11132,7 +11132,7 @@ { "lineGroupId": 263, "indexInLine": 3, - "noteOrder": 6814, + "noteOrder": 7188, "time": 0.7816158562125856, "position": { "x": 7, @@ -11155,7 +11155,7 @@ { "lineGroupId": 263, "indexInLine": 4, - "noteOrder": 6826, + "noteOrder": 7200, "time": 0.782994367422837, "position": { "x": 7, @@ -11178,7 +11178,7 @@ { "lineGroupId": 266, "indexInLine": 1, - "noteOrder": 6922, + "noteOrder": 7302, "time": 0.7940224571048488, "position": { "x": 3, @@ -11201,7 +11201,7 @@ { "lineGroupId": 266, "indexInLine": 2, - "noteOrder": 6934, + "noteOrder": 7314, "time": 0.7954009683151003, "position": { "x": 3, @@ -11224,7 +11224,7 @@ { "lineGroupId": 266, "indexInLine": 3, - "noteOrder": 6934, + "noteOrder": 7314, "time": 0.7954009683151003, "position": { "x": 4, @@ -11247,7 +11247,7 @@ { "lineGroupId": 266, "indexInLine": 4, - "noteOrder": 6940.0, + "noteOrder": 7320.0, "time": 0.7954009683151003, "position": { "x": 4, @@ -11270,7 +11270,7 @@ { "lineGroupId": 267, "indexInLine": 1, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 3, @@ -11293,7 +11293,7 @@ { "lineGroupId": 267, "indexInLine": 2, - "noteOrder": 6958, + "noteOrder": 7340, "time": 0.7981579907356032, "position": { "x": 3, @@ -11316,7 +11316,7 @@ { "lineGroupId": 267, "indexInLine": 3, - "noteOrder": 6958, + "noteOrder": 7340, "time": 0.7981579907356032, "position": { "x": 4, @@ -11339,7 +11339,7 @@ { "lineGroupId": 267, "indexInLine": 4, - "noteOrder": 6964.0, + "noteOrder": 7346.0, "time": 0.7981579907356032, "position": { "x": 4, @@ -11362,7 +11362,7 @@ { "lineGroupId": 270, "indexInLine": 1, - "noteOrder": 7019, + "noteOrder": 7403, "time": 0.8050505467868606, "position": { "x": 7, @@ -11385,7 +11385,7 @@ { "lineGroupId": 270, "indexInLine": 2, - "noteOrder": 7031, + "noteOrder": 7416, "time": 0.8064290579971121, "position": { "x": 7, @@ -11408,7 +11408,7 @@ { "lineGroupId": 270, "indexInLine": 3, - "noteOrder": 7031, + "noteOrder": 7416, "time": 0.8064290579971121, "position": { "x": 6, @@ -11431,7 +11431,7 @@ { "lineGroupId": 270, "indexInLine": 4, - "noteOrder": 7037.0, + "noteOrder": 7422.0, "time": 0.8064290579971121, "position": { "x": 6, @@ -11454,7 +11454,7 @@ { "lineGroupId": 271, "indexInLine": 1, - "noteOrder": 7043, + "noteOrder": 7428, "time": 0.8078075692073635, "position": { "x": 7, @@ -11477,7 +11477,7 @@ { "lineGroupId": 271, "indexInLine": 2, - "noteOrder": 7055, + "noteOrder": 7441, "time": 0.809186080417615, "position": { "x": 7, @@ -11500,7 +11500,7 @@ { "lineGroupId": 271, "indexInLine": 3, - "noteOrder": 7055, + "noteOrder": 7441, "time": 0.809186080417615, "position": { "x": 6, @@ -11523,7 +11523,7 @@ { "lineGroupId": 271, "indexInLine": 4, - "noteOrder": 7061.0, + "noteOrder": 7447.0, "time": 0.809186080417615, "position": { "x": 6, @@ -11546,7 +11546,7 @@ { "lineGroupId": 274, "indexInLine": 1, - "noteOrder": 7115, + "noteOrder": 7504, "time": 0.8160786364688724, "position": { "x": 3, @@ -11569,7 +11569,7 @@ { "lineGroupId": 274, "indexInLine": 2, - "noteOrder": 7127, + "noteOrder": 7517, "time": 0.8174571476791238, "position": { "x": 3, @@ -11592,7 +11592,7 @@ { "lineGroupId": 274, "indexInLine": 3, - "noteOrder": 7127, + "noteOrder": 7517, "time": 0.8174571476791238, "position": { "x": 4, @@ -11615,7 +11615,7 @@ { "lineGroupId": 274, "indexInLine": 4, - "noteOrder": 7133.0, + "noteOrder": 7523.0, "time": 0.8174571476791238, "position": { "x": 4, @@ -11638,7 +11638,7 @@ { "lineGroupId": 275, "indexInLine": 1, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 7, @@ -11661,7 +11661,7 @@ { "lineGroupId": 275, "indexInLine": 2, - "noteOrder": 7151, + "noteOrder": 7543, "time": 0.8202141700996268, "position": { "x": 7, @@ -11684,7 +11684,7 @@ { "lineGroupId": 275, "indexInLine": 3, - "noteOrder": 7151, + "noteOrder": 7543, "time": 0.8202141700996268, "position": { "x": 6, @@ -11707,7 +11707,7 @@ { "lineGroupId": 275, "indexInLine": 4, - "noteOrder": 7157.0, + "noteOrder": 7549.0, "time": 0.8202141700996268, "position": { "x": 6, @@ -11730,7 +11730,7 @@ { "lineGroupId": 276, "indexInLine": 1, - "noteOrder": 7163, + "noteOrder": 7555, "time": 0.8215926813098783, "position": { "x": 3, @@ -11753,7 +11753,7 @@ { "lineGroupId": 276, "indexInLine": 2, - "noteOrder": 7175, + "noteOrder": 7568, "time": 0.8229711925201297, "position": { "x": 3, @@ -11776,7 +11776,7 @@ { "lineGroupId": 276, "indexInLine": 3, - "noteOrder": 7175, + "noteOrder": 7568, "time": 0.8229711925201297, "position": { "x": 4, @@ -11799,7 +11799,7 @@ { "lineGroupId": 276, "indexInLine": 4, - "noteOrder": 7181.0, + "noteOrder": 7574.0, "time": 0.8229711925201297, "position": { "x": 4, @@ -11822,7 +11822,7 @@ { "lineGroupId": 277, "indexInLine": 1, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 7, @@ -11845,7 +11845,7 @@ { "lineGroupId": 277, "indexInLine": 2, - "noteOrder": 7199, + "noteOrder": 7593, "time": 0.8257282149406328, "position": { "x": 7, @@ -11868,7 +11868,7 @@ { "lineGroupId": 277, "indexInLine": 3, - "noteOrder": 7199, + "noteOrder": 7593, "time": 0.8257282149406328, "position": { "x": 6, @@ -11891,7 +11891,7 @@ { "lineGroupId": 277, "indexInLine": 4, - "noteOrder": 7205.0, + "noteOrder": 7599.0, "time": 0.8257282149406328, "position": { "x": 6, @@ -11914,7 +11914,7 @@ { "lineGroupId": 278, "indexInLine": 1, - "noteOrder": 7211, + "noteOrder": 7606, "time": 0.8271067261508842, "position": { "x": 3, @@ -11937,7 +11937,7 @@ { "lineGroupId": 278, "indexInLine": 2, - "noteOrder": 7235, + "noteOrder": 7631, "time": 0.8298637485713871, "position": { "x": 3, @@ -11960,7 +11960,7 @@ { "lineGroupId": 278, "indexInLine": 3, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 6, @@ -11983,7 +11983,7 @@ { "lineGroupId": 282, "indexInLine": 1, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 7, @@ -12006,7 +12006,7 @@ { "lineGroupId": 282, "indexInLine": 2, - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 7, @@ -12029,7 +12029,7 @@ { "lineGroupId": 282, "indexInLine": 3, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 4, @@ -12052,7 +12052,7 @@ { "lineGroupId": 286, "indexInLine": 1, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 6, @@ -12075,7 +12075,7 @@ { "lineGroupId": 286, "indexInLine": 2, - "noteOrder": 7415, + "noteOrder": 7821, "time": 0.8505414167251593, "position": { "x": 5, @@ -12098,7 +12098,7 @@ { "lineGroupId": 286, "indexInLine": 3, - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 6, @@ -12121,7 +12121,7 @@ { "lineGroupId": 287, "indexInLine": 1, - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 4, @@ -12144,7 +12144,7 @@ { "lineGroupId": 287, "indexInLine": 2, - "noteOrder": 7439, + "noteOrder": 7847, "time": 0.8532984391456622, "position": { "x": 5, @@ -12167,7 +12167,7 @@ { "lineGroupId": 287, "indexInLine": 3, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 4, @@ -12190,7 +12190,7 @@ { "lineGroupId": 288, "indexInLine": 1, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 6, @@ -12213,7 +12213,7 @@ { "lineGroupId": 288, "indexInLine": 2, - "noteOrder": 7463, + "noteOrder": 7872, "time": 0.8560554615661652, "position": { "x": 5, @@ -12236,7 +12236,7 @@ { "lineGroupId": 288, "indexInLine": 3, - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 6, @@ -12259,7 +12259,7 @@ { "lineGroupId": 289, "indexInLine": 1, - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 4, @@ -12282,7 +12282,7 @@ { "lineGroupId": 289, "indexInLine": 2, - "noteOrder": 7487, + "noteOrder": 7897, "time": 0.8588124839866681, "position": { "x": 5, @@ -12305,7 +12305,7 @@ { "lineGroupId": 289, "indexInLine": 3, - "noteOrder": 7499, + "noteOrder": 7910, "time": 0.8601909951969196, "position": { "x": 4, @@ -12328,7 +12328,7 @@ { "lineGroupId": 291, "indexInLine": 1, - "noteOrder": 7547, + "noteOrder": 7961, "time": 0.8657050400379254, "position": { "x": 6, @@ -12351,7 +12351,7 @@ { "lineGroupId": 291, "indexInLine": 2, - "noteOrder": 7595, + "noteOrder": 8012, "time": 0.8712190848789313, "position": { "x": 6, @@ -12374,7 +12374,7 @@ { "lineGroupId": 293, "indexInLine": 1, - "noteOrder": 7643, + "noteOrder": 8062, "time": 0.8767331297199372, "position": { "x": 3, @@ -12397,7 +12397,7 @@ { "lineGroupId": 293, "indexInLine": 2, - "noteOrder": 7692, + "noteOrder": 8113, "time": 0.8822471745609431, "position": { "x": 3, @@ -12420,7 +12420,7 @@ { "lineGroupId": 295, "indexInLine": 1, - "noteOrder": 7740, + "noteOrder": 8164, "time": 0.8877612194019491, "position": { "x": 7, @@ -12443,7 +12443,7 @@ { "lineGroupId": 295, "indexInLine": 2, - "noteOrder": 7752, + "noteOrder": 8176, "time": 0.8891397306122005, "position": { "x": 7, @@ -12466,7 +12466,7 @@ { "lineGroupId": 295, "indexInLine": 3, - "noteOrder": 7752, + "noteOrder": 8176, "time": 0.8891397306122005, "position": { "x": 5, @@ -12489,7 +12489,7 @@ { "lineGroupId": 295, "indexInLine": 4, - "noteOrder": 7758.0, + "noteOrder": 8182.0, "time": 0.8891397306122005, "position": { "x": 5, @@ -12512,7 +12512,7 @@ { "lineGroupId": 296, "indexInLine": 1, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 7, @@ -12535,7 +12535,7 @@ { "lineGroupId": 296, "indexInLine": 2, - "noteOrder": 7776, + "noteOrder": 8202, "time": 0.8918967530327033, "position": { "x": 7, @@ -12558,7 +12558,7 @@ { "lineGroupId": 296, "indexInLine": 3, - "noteOrder": 7776, + "noteOrder": 8202, "time": 0.8918967530327033, "position": { "x": 5, @@ -12581,7 +12581,7 @@ { "lineGroupId": 296, "indexInLine": 4, - "noteOrder": 7782.0, + "noteOrder": 8208.0, "time": 0.8918967530327033, "position": { "x": 5, @@ -12604,7 +12604,7 @@ { "lineGroupId": 297, "indexInLine": 1, - "noteOrder": 7788, + "noteOrder": 8214, "time": 0.8932752642429548, "position": { "x": 7, @@ -12627,7 +12627,7 @@ { "lineGroupId": 297, "indexInLine": 2, - "noteOrder": 7800, + "noteOrder": 8227, "time": 0.8946537754532062, "position": { "x": 7, @@ -12650,7 +12650,7 @@ { "lineGroupId": 297, "indexInLine": 3, - "noteOrder": 7800, + "noteOrder": 8227, "time": 0.8946537754532062, "position": { "x": 5, @@ -12673,7 +12673,7 @@ { "lineGroupId": 297, "indexInLine": 4, - "noteOrder": 7806.0, + "noteOrder": 8233.0, "time": 0.8946537754532062, "position": { "x": 5, @@ -12696,7 +12696,7 @@ { "lineGroupId": 298, "indexInLine": 1, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 7, @@ -12719,7 +12719,7 @@ { "lineGroupId": 298, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 8252, "time": 0.8974107978737093, "position": { "x": 7, @@ -12742,7 +12742,7 @@ { "lineGroupId": 298, "indexInLine": 3, - "noteOrder": 7824, + "noteOrder": 8252, "time": 0.8974107978737093, "position": { "x": 5, @@ -12765,7 +12765,7 @@ { "lineGroupId": 298, "indexInLine": 4, - "noteOrder": 7830.0, + "noteOrder": 8258.0, "time": 0.8974107978737093, "position": { "x": 5, @@ -12788,7 +12788,7 @@ { "lineGroupId": 299, "indexInLine": 1, - "noteOrder": 7836, + "noteOrder": 8265, "time": 0.8987893090839607, "position": { "x": 3, @@ -12811,7 +12811,7 @@ { "lineGroupId": 299, "indexInLine": 2, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 3, @@ -12834,7 +12834,7 @@ { "lineGroupId": 299, "indexInLine": 3, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 5, @@ -12857,7 +12857,7 @@ { "lineGroupId": 299, "indexInLine": 4, - "noteOrder": 7854.0, + "noteOrder": 8284.0, "time": 0.9001678202942123, "position": { "x": 5, @@ -12880,7 +12880,7 @@ { "lineGroupId": 300, "indexInLine": 1, - "noteOrder": 7860, + "noteOrder": 8290, "time": 0.9015463315044637, "position": { "x": 3, @@ -12903,7 +12903,7 @@ { "lineGroupId": 300, "indexInLine": 2, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 3, @@ -12926,7 +12926,7 @@ { "lineGroupId": 300, "indexInLine": 3, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 5, @@ -12949,7 +12949,7 @@ { "lineGroupId": 300, "indexInLine": 4, - "noteOrder": 7878.0, + "noteOrder": 8309.0, "time": 0.9029248427147152, "position": { "x": 5, @@ -12972,7 +12972,7 @@ { "lineGroupId": 301, "indexInLine": 1, - "noteOrder": 7884, + "noteOrder": 8316, "time": 0.9043033539249666, "position": { "x": 3, @@ -12995,7 +12995,7 @@ { "lineGroupId": 301, "indexInLine": 2, - "noteOrder": 7896, + "noteOrder": 8328, "time": 0.9056818651352182, "position": { "x": 3, @@ -13018,7 +13018,7 @@ { "lineGroupId": 301, "indexInLine": 3, - "noteOrder": 7896, + "noteOrder": 8328, "time": 0.9056818651352182, "position": { "x": 5, @@ -13041,7 +13041,7 @@ { "lineGroupId": 301, "indexInLine": 4, - "noteOrder": 7902.0, + "noteOrder": 8334.0, "time": 0.9056818651352182, "position": { "x": 5, @@ -13064,7 +13064,7 @@ { "lineGroupId": 302, "indexInLine": 1, - "noteOrder": 7908, + "noteOrder": 8341, "time": 0.9070603763454697, "position": { "x": 3, @@ -13087,7 +13087,7 @@ { "lineGroupId": 302, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 8354, "time": 0.9084388875557211, "position": { "x": 3, @@ -13110,7 +13110,7 @@ { "lineGroupId": 302, "indexInLine": 3, - "noteOrder": 7920, + "noteOrder": 8354, "time": 0.9084388875557211, "position": { "x": 5, @@ -13133,7 +13133,7 @@ { "lineGroupId": 302, "indexInLine": 4, - "noteOrder": 7926.0, + "noteOrder": 8360.0, "time": 0.9084388875557211, "position": { "x": 5, @@ -13156,7 +13156,7 @@ { "lineGroupId": 303, "indexInLine": 1, - "noteOrder": 7932, + "noteOrder": 8366, "time": 0.9098173987659726, "position": { "x": 7, @@ -13179,7 +13179,7 @@ { "lineGroupId": 303, "indexInLine": 2, - "noteOrder": 7944, + "noteOrder": 8379, "time": 0.9111959099762241, "position": { "x": 7, @@ -13202,7 +13202,7 @@ { "lineGroupId": 303, "indexInLine": 3, - "noteOrder": 7944, + "noteOrder": 8379, "time": 0.9111959099762241, "position": { "x": 6, @@ -13225,7 +13225,7 @@ { "lineGroupId": 303, "indexInLine": 4, - "noteOrder": 7950.0, + "noteOrder": 8385.0, "time": 0.9111959099762241, "position": { "x": 6, @@ -13248,7 +13248,7 @@ { "lineGroupId": 306, "indexInLine": 1, - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 3, @@ -13271,7 +13271,7 @@ { "lineGroupId": 306, "indexInLine": 2, - "noteOrder": 7968, + "noteOrder": 8405, "time": 0.913952932396727, "position": { "x": 3, @@ -13294,7 +13294,7 @@ { "lineGroupId": 306, "indexInLine": 3, - "noteOrder": 7968, + "noteOrder": 8405, "time": 0.913952932396727, "position": { "x": 4, @@ -13317,7 +13317,7 @@ { "lineGroupId": 306, "indexInLine": 4, - "noteOrder": 7974.0, + "noteOrder": 8411.0, "time": 0.913952932396727, "position": { "x": 4, @@ -13340,7 +13340,7 @@ { "lineGroupId": 308, "indexInLine": 1, - "noteOrder": 7980, + "noteOrder": 8417, "time": 0.9153314436069785, "position": { "x": 7, @@ -13363,7 +13363,7 @@ { "lineGroupId": 308, "indexInLine": 2, - "noteOrder": 7992, + "noteOrder": 8430, "time": 0.91670995481723, "position": { "x": 7, @@ -13386,7 +13386,7 @@ { "lineGroupId": 308, "indexInLine": 3, - "noteOrder": 7992, + "noteOrder": 8430, "time": 0.91670995481723, "position": { "x": 6, @@ -13409,7 +13409,7 @@ { "lineGroupId": 308, "indexInLine": 4, - "noteOrder": 7998.0, + "noteOrder": 8436.0, "time": 0.91670995481723, "position": { "x": 6, @@ -13432,7 +13432,7 @@ { "lineGroupId": 310, "indexInLine": 1, - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 3, @@ -13455,7 +13455,7 @@ { "lineGroupId": 310, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 8455, "time": 0.919466977237733, "position": { "x": 3, @@ -13478,7 +13478,7 @@ { "lineGroupId": 310, "indexInLine": 3, - "noteOrder": 8016, + "noteOrder": 8455, "time": 0.919466977237733, "position": { "x": 4, @@ -13501,7 +13501,7 @@ { "lineGroupId": 310, "indexInLine": 4, - "noteOrder": 8022.0, + "noteOrder": 8461.0, "time": 0.919466977237733, "position": { "x": 4, @@ -13524,7 +13524,7 @@ { "lineGroupId": 315, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 7, @@ -13547,7 +13547,7 @@ { "lineGroupId": 315, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 7, @@ -13570,7 +13570,7 @@ { "lineGroupId": 316, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 3, @@ -13593,7 +13593,7 @@ { "lineGroupId": 316, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 3, @@ -13628,7 +13628,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 146, + "BPM": 154, "NPS": "4.29", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b.json index d0969960..b8ce9c17 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00 difficulty_1b", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 101, "time": 0.011028089682011789, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 152, "time": 0.016542134523017685, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 203, "time": 0.022056179364023577, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 228, "time": 0.024813201784526524, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 254, "time": 0.027570224205029473, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1250, + "noteOrder": 1318, "time": 0.14336516586615325, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1369, "time": 0.14887921070715915, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1420, "time": 0.15439325554816502, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1445, "time": 0.157150277968668, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1470, "time": 0.15990730038917095, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1623, "time": 0.17644943491218862, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1648, "time": 0.17920645733269155, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1825, "time": 0.1985056142762122, "position": { "x": 2, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1927, "time": 0.209533703958224, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 2028, "time": 0.2205617936402358, "position": { "x": 2, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2130, "time": 0.23158988332224756, "position": { "x": 8, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2231, "time": 0.24261797300425936, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2256, "time": 0.2453749954247623, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2307, "time": 0.2508890402657682, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2358, "time": 0.2564030851067741, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2409, "time": 0.26191712994778, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2459, "time": 0.26743117478878586, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 2, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 8, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 8, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3499, "time": 0.3804690940294067, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3549, "time": 0.3859831388704126, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3600, "time": 0.3914971837114185, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3651, "time": 0.3970112285524244, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3676, "time": 0.39976825097292734, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3702, "time": 0.4025252733934303, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3752, "time": 0.4080393182344362, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3778, "time": 0.41079634065493914, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3803, "time": 0.4135533630754421, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3702, + "noteOrder": 3904, "time": 0.42458145275745385, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3930, "time": 0.4273384751779568, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 4056, "time": 0.4411235872804716, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 4082, "time": 0.44388060970097454, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 4107, "time": 0.4466376321214774, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 4133, "time": 0.44939465454198035, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 4158, "time": 0.4521516769624833, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 4209, "time": 0.45766572180348924, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4411, "time": 0.4797219011675128, "position": { "x": 8, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4437, "time": 0.48247892358801575, "position": { "x": 8, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4513, "time": 0.4907499908495246, "position": { "x": 2, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4538, "time": 0.49350701327002755, "position": { "x": 2, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4614, "time": 0.5017780805315364, "position": { "x": 8, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4716, "time": 0.5128061702135482, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4817, "time": 0.52383425989556, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4842, "time": 0.5265912823160629, "position": { "x": 2, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4918, "time": 0.5348623495775717, "position": { "x": 8, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4944, "time": 0.5376193719980747, "position": { "x": 8, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 4, @@ -1482,108 +1482,108 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 4831, - "time": 0.5541615065210924, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4855, - "time": 0.5569185289415953, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4855, - "time": 0.5569185289415953, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4903, - "time": 0.5624325737826013, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4999, - "time": 0.573460663464613, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 5096, + "time": 0.5541615065210924, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5121, + "time": 0.5569185289415953, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5121, + "time": 0.5569185289415953, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5172, + "time": 0.5624325737826013, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5273, + "time": 0.573460663464613, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5375, "time": 0.5844887531466249, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5502, "time": 0.5982738652491396, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5240, + "noteOrder": 5527, "time": 0.6010308876696425, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5628, "time": 0.6120589773516543, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5730, "time": 0.6230870670336661, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5755, "time": 0.625844089454169, "position": { "x": 2, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5831, "time": 0.6341151567156779, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5552, + "noteOrder": 5857, "time": 0.6368721791361808, "position": { "x": 8, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5672, + "noteOrder": 5983, "time": 0.6506572912386955, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5697, + "noteOrder": 6009, "time": 0.6534143136591986, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5721, + "noteOrder": 6034, "time": 0.6561713360797015, "position": { "x": 4, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 6059, "time": 0.6589283585002044, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 6085, "time": 0.6616853809207073, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5793, + "noteOrder": 6110, "time": 0.6644424033412103, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5817, + "noteOrder": 6135, "time": 0.6671994257617132, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5841, + "noteOrder": 6161, "time": 0.6699564481822162, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 6057, + "noteOrder": 6389, "time": 0.6947696499667427, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6081, + "noteOrder": 6414, "time": 0.6975266723872456, "position": { "x": 4, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6105, + "noteOrder": 6440, "time": 0.7002836948077487, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 6129, + "noteOrder": 6465, "time": 0.7030407172282515, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6153, + "noteOrder": 6490, "time": 0.7057977396487545, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6177, + "noteOrder": 6516, "time": 0.7085547620692574, "position": { "x": 4, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6201, + "noteOrder": 6541, "time": 0.7113117844897604, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6566, "time": 0.7140688069102634, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 6394, + "noteOrder": 6744, "time": 0.7333679638537839, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6769, "time": 0.7361249862742869, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 3, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7379, + "noteOrder": 7783, "time": 0.8464058830944048, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 8, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 2, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7884, + "noteOrder": 8316, "time": 0.9043033539249666, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7908, + "noteOrder": 8341, "time": 0.9070603763454697, "position": { "x": 6, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 4, @@ -2447,7 +2447,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 304, "time": 0.03308426904603537, "position": { "x": 3, @@ -2470,7 +2470,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 330, "time": 0.03584129146653831, "position": { "x": 4, @@ -2493,7 +2493,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 337, + "noteOrder": 355, "time": 0.038598313887041255, "position": { "x": 7, @@ -2516,7 +2516,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 361, + "noteOrder": 380, "time": 0.041355336307544205, "position": { "x": 6, @@ -2539,7 +2539,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 481, + "noteOrder": 507, "time": 0.05514044841005895, "position": { "x": 6, @@ -2562,7 +2562,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 6, @@ -2585,7 +2585,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 6, @@ -2608,7 +2608,7 @@ { "lineGroupId": 10, "indexInLine": 4, - "noteOrder": 511.0, + "noteOrder": 538.0, "time": 0.05789747083056189, "position": { "x": 6, @@ -2631,7 +2631,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 529, + "noteOrder": 558, "time": 0.06065449325106484, "position": { "x": 6, @@ -2654,7 +2654,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 6, @@ -2677,7 +2677,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 6, @@ -2700,7 +2700,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 559.0, + "noteOrder": 589.0, "time": 0.06341151567156779, "position": { "x": 6, @@ -2723,7 +2723,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 577, + "noteOrder": 608, "time": 0.06616853809207074, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 625, + "noteOrder": 659, "time": 0.07168258293307662, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 673, + "noteOrder": 710, "time": 0.07719662777408251, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 4, @@ -2838,7 +2838,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 703.0, + "noteOrder": 741.0, "time": 0.07995365019458547, "position": { "x": 4, @@ -2861,7 +2861,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 721, + "noteOrder": 761, "time": 0.08271067261508841, "position": { "x": 4, @@ -2884,7 +2884,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 4, @@ -2907,7 +2907,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 4, @@ -2930,7 +2930,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 751.0, + "noteOrder": 792.0, "time": 0.08546769503559137, "position": { "x": 4, @@ -2953,7 +2953,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 769, + "noteOrder": 811, "time": 0.08822471745609431, "position": { "x": 4, @@ -2976,7 +2976,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 817, + "noteOrder": 862, "time": 0.09373876229710021, "position": { "x": 4, @@ -2999,7 +2999,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 865, + "noteOrder": 913, "time": 0.0992528071381061, "position": { "x": 7, @@ -3022,7 +3022,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 7, @@ -3045,7 +3045,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 4, @@ -3068,7 +3068,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 4, @@ -3091,7 +3091,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 6, @@ -3114,7 +3114,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 4, @@ -3160,7 +3160,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 4, @@ -3183,7 +3183,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 1058, + "noteOrder": 1116, "time": 0.12130898650212968, "position": { "x": 8, @@ -3206,7 +3206,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 6, @@ -3229,7 +3229,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 4, @@ -3252,7 +3252,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 4, @@ -3275,7 +3275,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 6, @@ -3298,7 +3298,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 6, @@ -3321,7 +3321,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1442, + "noteOrder": 1521, "time": 0.16542134523017682, "position": { "x": 3, @@ -3344,7 +3344,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 4, @@ -3367,7 +3367,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 1490, + "noteOrder": 1572, "time": 0.17093539007118275, "position": { "x": 7, @@ -3390,7 +3390,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 6, @@ -3413,7 +3413,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1851, "time": 0.20126263669671515, "position": { "x": 2, @@ -3436,7 +3436,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1779, + "noteOrder": 1876, "time": 0.2040196591172181, "position": { "x": 6, @@ -3459,7 +3459,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1851, + "noteOrder": 1952, "time": 0.21229072637872692, "position": { "x": 8, @@ -3482,7 +3482,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1875, + "noteOrder": 1978, "time": 0.2150477487992299, "position": { "x": 4, @@ -3505,7 +3505,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1947, + "noteOrder": 2054, "time": 0.2233188160607387, "position": { "x": 2, @@ -3528,7 +3528,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1971, + "noteOrder": 2079, "time": 0.22607583848124166, "position": { "x": 6, @@ -3551,7 +3551,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 2043, + "noteOrder": 2155, "time": 0.23434690574275052, "position": { "x": 8, @@ -3574,7 +3574,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 2067, + "noteOrder": 2180, "time": 0.23710392816325343, "position": { "x": 4, @@ -3597,7 +3597,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2356, + "noteOrder": 2485, "time": 0.2701881972092888, "position": { "x": 3, @@ -3620,7 +3620,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 6, @@ -3643,7 +3643,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2500, + "noteOrder": 2637, "time": 0.2867303317323065, "position": { "x": 7, @@ -3666,7 +3666,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 7, @@ -3689,7 +3689,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2548, + "noteOrder": 2687, "time": 0.2922443765733124, "position": { "x": 7, @@ -3712,7 +3712,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 7, @@ -3735,7 +3735,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2596, + "noteOrder": 2738, "time": 0.2977584214143183, "position": { "x": 3, @@ -3758,7 +3758,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 3, @@ -3781,7 +3781,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2644, + "noteOrder": 2789, "time": 0.30327246625532417, "position": { "x": 3, @@ -3804,7 +3804,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 3, @@ -3827,7 +3827,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2692, + "noteOrder": 2840, "time": 0.30878651109633004, "position": { "x": 7, @@ -3850,7 +3850,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 7, @@ -3873,7 +3873,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 6, @@ -3896,7 +3896,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 2722.0, + "noteOrder": 2871.0, "time": 0.31154353351683306, "position": { "x": 6, @@ -3919,7 +3919,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2740, + "noteOrder": 2890, "time": 0.314300555937336, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 3, @@ -3965,7 +3965,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 4, @@ -3988,7 +3988,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 2770.0, + "noteOrder": 2922.0, "time": 0.31705757835783893, "position": { "x": 4, @@ -4011,7 +4011,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 2788, + "noteOrder": 2941, "time": 0.3198146007783419, "position": { "x": 7, @@ -4034,7 +4034,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 7, @@ -4057,7 +4057,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 6, @@ -4080,7 +4080,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 2818.0, + "noteOrder": 2972.0, "time": 0.3225716231988448, "position": { "x": 6, @@ -4103,7 +4103,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2836, + "noteOrder": 2992, "time": 0.32532864561934777, "position": { "x": 3, @@ -4126,7 +4126,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 3, @@ -4149,7 +4149,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 4, @@ -4172,7 +4172,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 2866.0, + "noteOrder": 3023.0, "time": 0.32808566803985073, "position": { "x": 4, @@ -4195,7 +4195,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2884, + "noteOrder": 3042, "time": 0.33084269046035364, "position": { "x": 6, @@ -4218,7 +4218,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 6, @@ -4241,7 +4241,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 4, @@ -4264,7 +4264,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 4, @@ -4287,7 +4287,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 6, @@ -4310,7 +4310,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 6, @@ -4333,7 +4333,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 4, @@ -4356,7 +4356,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 4, @@ -4379,7 +4379,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 7, @@ -4402,7 +4402,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 6, @@ -4425,7 +4425,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 3, @@ -4448,7 +4448,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 4, @@ -4471,7 +4471,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 7, @@ -4494,7 +4494,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 6, @@ -4517,7 +4517,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 3, @@ -4540,7 +4540,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 4, @@ -4563,7 +4563,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 4134, + "noteOrder": 4361, "time": 0.47420785632650686, "position": { "x": 6, @@ -4586,7 +4586,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 6, @@ -4609,7 +4609,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 4, @@ -4632,7 +4632,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 4, @@ -4655,7 +4655,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 6, @@ -4701,7 +4701,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 7, @@ -4724,7 +4724,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 4447, + "noteOrder": 4690, "time": 0.5100491477930452, "position": { "x": 7, @@ -4747,7 +4747,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 6, @@ -4770,7 +4770,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 4, @@ -4793,7 +4793,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 4, @@ -4816,7 +4816,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 6, @@ -4839,7 +4839,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 6, @@ -4862,7 +4862,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4903, + "noteOrder": 5172, "time": 0.5624325737826013, "position": { "x": 2, @@ -4885,7 +4885,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4951, + "noteOrder": 5223, "time": 0.5679466186236072, "position": { "x": 4, @@ -4908,7 +4908,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4999, + "noteOrder": 5273, "time": 0.573460663464613, "position": { "x": 8, @@ -4931,7 +4931,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 5048, + "noteOrder": 5324, "time": 0.5789747083056189, "position": { "x": 6, @@ -4954,7 +4954,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 5384, + "noteOrder": 5679, "time": 0.6175730221926601, "position": { "x": 4, @@ -4977,7 +4977,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 6, @@ -5023,7 +5023,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 6, @@ -5046,7 +5046,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 5865, + "noteOrder": 6186, "time": 0.672713470602719, "position": { "x": 7, @@ -5069,7 +5069,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 7, @@ -5092,7 +5092,7 @@ { "lineGroupId": 162, "indexInLine": 3, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 6, @@ -5115,7 +5115,7 @@ { "lineGroupId": 162, "indexInLine": 4, - "noteOrder": 5895.0, + "noteOrder": 6217.0, "time": 0.675470493023222, "position": { "x": 6, @@ -5138,7 +5138,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5913, + "noteOrder": 6237, "time": 0.678227515443725, "position": { "x": 7, @@ -5161,7 +5161,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 7, @@ -5184,7 +5184,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 6, @@ -5207,7 +5207,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 5943.0, + "noteOrder": 6268.0, "time": 0.680984537864228, "position": { "x": 6, @@ -5230,7 +5230,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5961, + "noteOrder": 6288, "time": 0.683741560284731, "position": { "x": 7, @@ -5253,7 +5253,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 7, @@ -5276,7 +5276,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 6, @@ -5299,7 +5299,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 5991.0, + "noteOrder": 6319.0, "time": 0.6864985827052338, "position": { "x": 6, @@ -5322,7 +5322,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 6249, + "noteOrder": 6592, "time": 0.7168258293307662, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 3, @@ -5368,7 +5368,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 4, @@ -5391,7 +5391,7 @@ { "lineGroupId": 174, "indexInLine": 4, - "noteOrder": 6279.0, + "noteOrder": 6623.0, "time": 0.7195828517512692, "position": { "x": 4, @@ -5414,7 +5414,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 6297, + "noteOrder": 6642, "time": 0.7223398741717721, "position": { "x": 3, @@ -5437,7 +5437,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 3, @@ -5460,7 +5460,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 4, @@ -5483,7 +5483,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 6327.0, + "noteOrder": 6674.0, "time": 0.7250968965922752, "position": { "x": 4, @@ -5506,7 +5506,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 6346, + "noteOrder": 6693, "time": 0.7278539190127781, "position": { "x": 3, @@ -5529,7 +5529,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 3, @@ -5552,7 +5552,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 4, @@ -5575,7 +5575,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 6364.0, + "noteOrder": 6712.0, "time": 0.7292324302230295, "position": { "x": 4, @@ -5598,7 +5598,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 6370, + "noteOrder": 6719, "time": 0.730610941433281, "position": { "x": 3, @@ -5621,7 +5621,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 3, @@ -5644,7 +5644,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 4, @@ -5667,7 +5667,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 6388.0, + "noteOrder": 6737.0, "time": 0.7319894526435324, "position": { "x": 4, @@ -5690,7 +5690,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 6538, + "noteOrder": 6896, "time": 0.7499100983768017, "position": { "x": 6, @@ -5713,7 +5713,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 6, @@ -5736,7 +5736,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 6, @@ -5759,7 +5759,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 6634, + "noteOrder": 6997, "time": 0.7609381880588134, "position": { "x": 4, @@ -5782,7 +5782,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 4, @@ -5805,7 +5805,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 4, @@ -5828,7 +5828,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 3, @@ -5851,7 +5851,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 3, @@ -5874,7 +5874,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 4, @@ -5897,7 +5897,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 7, @@ -5920,7 +5920,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 7, @@ -5943,7 +5943,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 6, @@ -5966,7 +5966,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 6922, + "noteOrder": 7302, "time": 0.7940224571048488, "position": { "x": 6, @@ -5989,7 +5989,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 6, @@ -6012,7 +6012,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 6, @@ -6035,7 +6035,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 6952.0, + "noteOrder": 7333.0, "time": 0.7967794795253518, "position": { "x": 6, @@ -6058,7 +6058,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 6970, + "noteOrder": 7352, "time": 0.7995365019458547, "position": { "x": 6, @@ -6081,7 +6081,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 6, @@ -6104,7 +6104,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 6, @@ -6127,7 +6127,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 7000.0, + "noteOrder": 7384.0, "time": 0.8022935243663576, "position": { "x": 6, @@ -6150,7 +6150,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 7019, + "noteOrder": 7403, "time": 0.8050505467868606, "position": { "x": 7, @@ -6173,7 +6173,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 7067, + "noteOrder": 7454, "time": 0.8105645916278665, "position": { "x": 4, @@ -6196,7 +6196,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 7115, + "noteOrder": 7504, "time": 0.8160786364688724, "position": { "x": 4, @@ -6219,7 +6219,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 4, @@ -6242,7 +6242,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 4, @@ -6265,7 +6265,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 7145.0, + "noteOrder": 7536.0, "time": 0.8188356588893753, "position": { "x": 4, @@ -6288,7 +6288,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 7163, + "noteOrder": 7555, "time": 0.8215926813098783, "position": { "x": 4, @@ -6311,7 +6311,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 4, @@ -6334,7 +6334,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 4, @@ -6357,7 +6357,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 7193.0, + "noteOrder": 7587.0, "time": 0.8243497037303812, "position": { "x": 4, @@ -6380,7 +6380,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 7211, + "noteOrder": 7606, "time": 0.8271067261508842, "position": { "x": 4, @@ -6403,7 +6403,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 7259, + "noteOrder": 7657, "time": 0.83262077099189, "position": { "x": 6, @@ -6426,7 +6426,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 6, @@ -6449,7 +6449,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 6, @@ -6472,7 +6472,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 4, @@ -6495,7 +6495,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 4, @@ -6518,7 +6518,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 6, @@ -6541,7 +6541,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 6, @@ -6564,7 +6564,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 4, @@ -6587,7 +6587,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 7499, + "noteOrder": 7910, "time": 0.8601909951969196, "position": { "x": 4, @@ -6610,7 +6610,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 7547, + "noteOrder": 7961, "time": 0.8657050400379254, "position": { "x": 6, @@ -6633,7 +6633,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 7595, + "noteOrder": 8012, "time": 0.8712190848789313, "position": { "x": 6, @@ -6656,7 +6656,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 7643, + "noteOrder": 8062, "time": 0.8767331297199372, "position": { "x": 3, @@ -6679,7 +6679,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 7692, + "noteOrder": 8113, "time": 0.8822471745609431, "position": { "x": 3, @@ -6702,7 +6702,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 7740, + "noteOrder": 8164, "time": 0.8877612194019491, "position": { "x": 7, @@ -6725,7 +6725,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 7, @@ -6748,7 +6748,7 @@ { "lineGroupId": 208, "indexInLine": 3, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 6, @@ -6771,7 +6771,7 @@ { "lineGroupId": 208, "indexInLine": 4, - "noteOrder": 7770.0, + "noteOrder": 8195.0, "time": 0.890518241822452, "position": { "x": 6, @@ -6794,7 +6794,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 7788, + "noteOrder": 8214, "time": 0.8932752642429548, "position": { "x": 7, @@ -6817,7 +6817,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 7, @@ -6840,7 +6840,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 6, @@ -6863,7 +6863,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 7818.0, + "noteOrder": 8246.0, "time": 0.8960322866634578, "position": { "x": 6, @@ -6886,7 +6886,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 7836, + "noteOrder": 8265, "time": 0.8987893090839607, "position": { "x": 7, @@ -6909,7 +6909,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 7, @@ -6932,7 +6932,7 @@ { "lineGroupId": 210, "indexInLine": 3, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 6, @@ -6955,7 +6955,7 @@ { "lineGroupId": 210, "indexInLine": 4, - "noteOrder": 7854.0, + "noteOrder": 8284.0, "time": 0.9001678202942123, "position": { "x": 6, @@ -6978,7 +6978,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 7860, + "noteOrder": 8290, "time": 0.9015463315044637, "position": { "x": 7, @@ -7001,7 +7001,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 7, @@ -7024,7 +7024,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 6, @@ -7047,7 +7047,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 7878.0, + "noteOrder": 8309.0, "time": 0.9029248427147152, "position": { "x": 6, @@ -7070,7 +7070,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 7932, + "noteOrder": 8366, "time": 0.9098173987659726, "position": { "x": 4, @@ -7093,7 +7093,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 4, @@ -7116,7 +7116,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 7980, + "noteOrder": 8417, "time": 0.9153314436069785, "position": { "x": 6, @@ -7139,7 +7139,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 6, @@ -7162,7 +7162,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 7, @@ -7185,7 +7185,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 7, @@ -7208,7 +7208,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 3, @@ -7231,7 +7231,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 3, @@ -7254,7 +7254,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 386.5, + "noteOrder": 407.5, "time": 0.044112358728047155, "position": { "x": 5, @@ -7282,7 +7282,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 469.0, + "noteOrder": 494.0, "time": 0.052383425989556, "position": { "x": 5, @@ -7310,7 +7310,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1238.0, + "noteOrder": 1305.0, "time": 0.1406081434456503, "position": { "x": 5, @@ -7338,7 +7338,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1635.5, + "noteOrder": 1725.5, "time": 0.18747752459420042, "position": { "x": 5, @@ -7366,7 +7366,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1684.5, + "noteOrder": 1776.5, "time": 0.1929915694352063, "position": { "x": 5, @@ -7394,7 +7394,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2405.5, + "noteOrder": 2536.5, "time": 0.2757022420502947, "position": { "x": 5, @@ -7422,7 +7422,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3270.5, + "noteOrder": 3449.5, "time": 0.37495504918840084, "position": { "x": 5, @@ -7450,7 +7450,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3654.5, + "noteOrder": 3855.5, "time": 0.419067407916448, "position": { "x": 5, @@ -7478,7 +7478,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3751.5, + "noteOrder": 3956.5, "time": 0.4300954975984598, "position": { "x": 5, @@ -7506,7 +7506,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3799.5, + "noteOrder": 4007.5, "time": 0.43560954243946565, "position": { "x": 5, @@ -7534,7 +7534,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4039.5, + "noteOrder": 4260.5, "time": 0.4631797666444951, "position": { "x": 5, @@ -7562,7 +7562,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5289.5, + "noteOrder": 5579.5, "time": 0.6065449325106483, "position": { "x": 5, @@ -7590,7 +7590,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5625.5, + "noteOrder": 5934.5, "time": 0.6451432463976896, "position": { "x": 5, @@ -7618,7 +7618,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6010.5, + "noteOrder": 6339.5, "time": 0.6892556051257368, "position": { "x": 5, @@ -7646,7 +7646,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6443.5, + "noteOrder": 6796.5, "time": 0.7388820086947898, "position": { "x": 5, @@ -7674,7 +7674,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6827.5, + "noteOrder": 7201.5, "time": 0.782994367422837, "position": { "x": 5, @@ -7702,7 +7702,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6910.0, + "noteOrder": 7288.0, "time": 0.7912654346843458, "position": { "x": 5, @@ -7730,7 +7730,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7500.5, + "noteOrder": 7911.5, "time": 0.8601909951969196, "position": { "x": 5, @@ -7758,7 +7758,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7596.5, + "noteOrder": 8013.5, "time": 0.8712190848789313, "position": { "x": 5, @@ -7786,7 +7786,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7693.5, + "noteOrder": 8114.5, "time": 0.8822471745609431, "position": { "x": 5, @@ -7814,7 +7814,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8221.5, + "noteOrder": 8672.5, "time": 0.942901667812008, "position": { "x": 5, @@ -7855,7 +7855,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 146, + "BPM": 154, "NPS": "2.36", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b_blockless.json index 503499d2..a9e6fb90 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00 difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 101, "time": 0.011028089682011789, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 152, "time": 0.016542134523017685, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 203, "time": 0.022056179364023577, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 228, "time": 0.024813201784526524, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 254, "time": 0.027570224205029473, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1106, + "noteOrder": 1166, "time": 0.12682303134313558, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1130, + "noteOrder": 1192, "time": 0.12958005376363851, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1250, + "noteOrder": 1318, "time": 0.14336516586615325, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1298, + "noteOrder": 1369, "time": 0.14887921070715915, "position": { "x": 4, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1346, + "noteOrder": 1420, "time": 0.15439325554816502, "position": { "x": 6, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1370, + "noteOrder": 1445, "time": 0.157150277968668, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1394, + "noteOrder": 1470, "time": 0.15990730038917095, "position": { "x": 6, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1538, + "noteOrder": 1623, "time": 0.17644943491218862, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1562, + "noteOrder": 1648, "time": 0.17920645733269155, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1586, + "noteOrder": 1673, "time": 0.18196347975319452, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1731, + "noteOrder": 1825, "time": 0.1985056142762122, "position": { "x": 2, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1827, + "noteOrder": 1927, "time": 0.209533703958224, "position": { "x": 8, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1923, + "noteOrder": 2028, "time": 0.2205617936402358, "position": { "x": 2, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2019, + "noteOrder": 2130, "time": 0.23158988332224756, "position": { "x": 8, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2115, + "noteOrder": 2231, "time": 0.24261797300425936, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2139, + "noteOrder": 2256, "time": 0.2453749954247623, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 2163, + "noteOrder": 2282, "time": 0.24813201784526526, "position": { "x": 7, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 2187, + "noteOrder": 2307, "time": 0.2508890402657682, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 2211, + "noteOrder": 2332, "time": 0.25364606268627116, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 2235, + "noteOrder": 2358, "time": 0.2564030851067741, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 2259, + "noteOrder": 2383, "time": 0.25916010752727703, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 2283, + "noteOrder": 2409, "time": 0.26191712994778, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 2307, + "noteOrder": 2434, "time": 0.26467415236828296, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2331, + "noteOrder": 2459, "time": 0.26743117478878586, "position": { "x": 5, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2908, + "noteOrder": 3068, "time": 0.3335997128808566, "position": { "x": 2, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2956, + "noteOrder": 3118, "time": 0.3391137577218625, "position": { "x": 8, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3004, + "noteOrder": 3169, "time": 0.3446278025628684, "position": { "x": 2, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 3053, + "noteOrder": 3220, "time": 0.35014184740387433, "position": { "x": 8, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 3317, + "noteOrder": 3499, "time": 0.3804690940294067, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 3365, + "noteOrder": 3549, "time": 0.3859831388704126, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 3413, + "noteOrder": 3600, "time": 0.3914971837114185, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 3461, + "noteOrder": 3651, "time": 0.3970112285524244, "position": { "x": 3, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 3485, + "noteOrder": 3676, "time": 0.39976825097292734, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 3509, + "noteOrder": 3702, "time": 0.4025252733934303, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 3557, + "noteOrder": 3752, "time": 0.4080393182344362, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 3581, + "noteOrder": 3778, "time": 0.41079634065493914, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3605, + "noteOrder": 3803, "time": 0.4135533630754421, "position": { "x": 7, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3702, + "noteOrder": 3904, "time": 0.42458145275745385, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3726, + "noteOrder": 3930, "time": 0.4273384751779568, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3846, + "noteOrder": 4056, "time": 0.4411235872804716, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3870, + "noteOrder": 4082, "time": 0.44388060970097454, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3894, + "noteOrder": 4107, "time": 0.4466376321214774, "position": { "x": 6, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3918, + "noteOrder": 4133, "time": 0.44939465454198035, "position": { "x": 5, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3942, + "noteOrder": 4158, "time": 0.4521516769624833, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3966, + "noteOrder": 4183, "time": 0.4549086993829863, "position": { "x": 5, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3990, + "noteOrder": 4209, "time": 0.45766572180348924, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 4014, + "noteOrder": 4234, "time": 0.46042274422399215, "position": { "x": 5, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 4182, + "noteOrder": 4411, "time": 0.4797219011675128, "position": { "x": 8, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 4206, + "noteOrder": 4437, "time": 0.48247892358801575, "position": { "x": 8, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 4278, + "noteOrder": 4513, "time": 0.4907499908495246, "position": { "x": 2, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 4302, + "noteOrder": 4538, "time": 0.49350701327002755, "position": { "x": 2, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4375, + "noteOrder": 4614, "time": 0.5017780805315364, "position": { "x": 8, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 8, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4471, + "noteOrder": 4716, "time": 0.5128061702135482, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4567, + "noteOrder": 4817, "time": 0.52383425989556, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4591, + "noteOrder": 4842, "time": 0.5265912823160629, "position": { "x": 2, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4663, + "noteOrder": 4918, "time": 0.5348623495775717, "position": { "x": 8, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4687, + "noteOrder": 4944, "time": 0.5376193719980747, "position": { "x": 8, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4759, + "noteOrder": 5020, "time": 0.5458904392595835, "position": { "x": 4, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 6, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 4807, + "noteOrder": 5071, "time": 0.5514044841005894, "position": { "x": 4, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 4831, + "noteOrder": 5096, "time": 0.5541615065210924, "position": { "x": 4, @@ -1482,108 +1482,108 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 4831, - "time": 0.5541615065210924, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4855, - "time": 0.5569185289415953, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4855, - "time": 0.5569185289415953, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4903, - "time": 0.5624325737826013, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4999, - "time": 0.573460663464613, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 5096, + "time": 0.5541615065210924, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5121, + "time": 0.5569185289415953, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5121, + "time": 0.5569185289415953, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5172, + "time": 0.5624325737826013, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5273, + "time": 0.573460663464613, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5375, "time": 0.5844887531466249, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 5120, + "noteOrder": 5400, "time": 0.5872457755671278, "position": { "x": 5, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 5144, + "noteOrder": 5426, "time": 0.5900027979876307, "position": { "x": 6, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 5168, + "noteOrder": 5451, "time": 0.5927598204081337, "position": { "x": 5, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 5192, + "noteOrder": 5476, "time": 0.5955168428286366, "position": { "x": 4, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 5216, + "noteOrder": 5502, "time": 0.5982738652491396, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 5240, + "noteOrder": 5527, "time": 0.6010308876696425, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5336, + "noteOrder": 5628, "time": 0.6120589773516543, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5432, + "noteOrder": 5730, "time": 0.6230870670336661, "position": { "x": 6, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5456, + "noteOrder": 5755, "time": 0.625844089454169, "position": { "x": 2, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5528, + "noteOrder": 5831, "time": 0.6341151567156779, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5552, + "noteOrder": 5857, "time": 0.6368721791361808, "position": { "x": 8, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5672, + "noteOrder": 5983, "time": 0.6506572912386955, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5697, + "noteOrder": 6009, "time": 0.6534143136591986, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5721, + "noteOrder": 6034, "time": 0.6561713360797015, "position": { "x": 4, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5745, + "noteOrder": 6059, "time": 0.6589283585002044, "position": { "x": 4, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5769, + "noteOrder": 6085, "time": 0.6616853809207073, "position": { "x": 6, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5793, + "noteOrder": 6110, "time": 0.6644424033412103, "position": { "x": 6, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5817, + "noteOrder": 6135, "time": 0.6671994257617132, "position": { "x": 4, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5841, + "noteOrder": 6161, "time": 0.6699564481822162, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 6057, + "noteOrder": 6389, "time": 0.6947696499667427, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6081, + "noteOrder": 6414, "time": 0.6975266723872456, "position": { "x": 4, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6105, + "noteOrder": 6440, "time": 0.7002836948077487, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 6129, + "noteOrder": 6465, "time": 0.7030407172282515, "position": { "x": 6, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 6153, + "noteOrder": 6490, "time": 0.7057977396487545, "position": { "x": 4, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 6177, + "noteOrder": 6516, "time": 0.7085547620692574, "position": { "x": 4, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 6201, + "noteOrder": 6541, "time": 0.7113117844897604, "position": { "x": 6, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 6225, + "noteOrder": 6566, "time": 0.7140688069102634, "position": { "x": 6, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 6394, + "noteOrder": 6744, "time": 0.7333679638537839, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 6418, + "noteOrder": 6769, "time": 0.7361249862742869, "position": { "x": 6, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 3, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 7, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7331, + "noteOrder": 7733, "time": 0.840891838253399, "position": { "x": 3, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7379, + "noteOrder": 7783, "time": 0.8464058830944048, "position": { "x": 7, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7427, + "noteOrder": 7834, "time": 0.8519199279354107, "position": { "x": 8, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7475, + "noteOrder": 7885, "time": 0.8574339727764165, "position": { "x": 2, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7884, + "noteOrder": 8316, "time": 0.9043033539249666, "position": { "x": 7, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7908, + "noteOrder": 8341, "time": 0.9070603763454697, "position": { "x": 6, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 6, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 4, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8028, + "noteOrder": 8468, "time": 0.9208454884479843, "position": { "x": 6, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8052, + "noteOrder": 8493, "time": 0.9236025108684872, "position": { "x": 4, @@ -2447,7 +2447,7 @@ { "lineGroupId": 6, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 304, "time": 0.03308426904603537, "position": { "x": 3, @@ -2470,7 +2470,7 @@ { "lineGroupId": 6, "indexInLine": 2, - "noteOrder": 312, + "noteOrder": 330, "time": 0.03584129146653831, "position": { "x": 4, @@ -2493,7 +2493,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 337, + "noteOrder": 355, "time": 0.038598313887041255, "position": { "x": 7, @@ -2516,7 +2516,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 361, + "noteOrder": 380, "time": 0.041355336307544205, "position": { "x": 6, @@ -2539,7 +2539,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 481, + "noteOrder": 507, "time": 0.05514044841005895, "position": { "x": 6, @@ -2562,7 +2562,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 6, @@ -2585,7 +2585,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 505, + "noteOrder": 532, "time": 0.05789747083056189, "position": { "x": 6, @@ -2608,7 +2608,7 @@ { "lineGroupId": 10, "indexInLine": 4, - "noteOrder": 511.0, + "noteOrder": 538.0, "time": 0.05789747083056189, "position": { "x": 6, @@ -2631,7 +2631,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 529, + "noteOrder": 558, "time": 0.06065449325106484, "position": { "x": 6, @@ -2654,7 +2654,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 6, @@ -2677,7 +2677,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 553, + "noteOrder": 583, "time": 0.06341151567156779, "position": { "x": 6, @@ -2700,7 +2700,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 559.0, + "noteOrder": 589.0, "time": 0.06341151567156779, "position": { "x": 6, @@ -2723,7 +2723,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 577, + "noteOrder": 608, "time": 0.06616853809207074, "position": { "x": 6, @@ -2746,7 +2746,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 625, + "noteOrder": 659, "time": 0.07168258293307662, "position": { "x": 6, @@ -2769,7 +2769,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 673, + "noteOrder": 710, "time": 0.07719662777408251, "position": { "x": 4, @@ -2792,7 +2792,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 4, @@ -2815,7 +2815,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 697, + "noteOrder": 735, "time": 0.07995365019458547, "position": { "x": 4, @@ -2838,7 +2838,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 703.0, + "noteOrder": 741.0, "time": 0.07995365019458547, "position": { "x": 4, @@ -2861,7 +2861,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 721, + "noteOrder": 761, "time": 0.08271067261508841, "position": { "x": 4, @@ -2884,7 +2884,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 4, @@ -2907,7 +2907,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 745, + "noteOrder": 786, "time": 0.08546769503559137, "position": { "x": 4, @@ -2930,7 +2930,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 751.0, + "noteOrder": 792.0, "time": 0.08546769503559137, "position": { "x": 4, @@ -2953,7 +2953,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 769, + "noteOrder": 811, "time": 0.08822471745609431, "position": { "x": 4, @@ -2976,7 +2976,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 817, + "noteOrder": 862, "time": 0.09373876229710021, "position": { "x": 4, @@ -2999,7 +2999,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 865, + "noteOrder": 913, "time": 0.0992528071381061, "position": { "x": 7, @@ -3022,7 +3022,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 7, @@ -3045,7 +3045,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 913, + "noteOrder": 963, "time": 0.104766851979112, "position": { "x": 4, @@ -3068,7 +3068,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 4, @@ -3091,7 +3091,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 961, + "noteOrder": 1014, "time": 0.1102808968201179, "position": { "x": 6, @@ -3114,7 +3114,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 6, @@ -3137,7 +3137,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 1010, + "noteOrder": 1065, "time": 0.11579494166112378, "position": { "x": 4, @@ -3160,7 +3160,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 4, @@ -3183,7 +3183,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 1058, + "noteOrder": 1116, "time": 0.12130898650212968, "position": { "x": 8, @@ -3206,7 +3206,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 1082, + "noteOrder": 1141, "time": 0.12406600892263263, "position": { "x": 6, @@ -3229,7 +3229,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 4, @@ -3252,7 +3252,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 4, @@ -3275,7 +3275,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 1154, + "noteOrder": 1217, "time": 0.13233707618414148, "position": { "x": 6, @@ -3298,7 +3298,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 1202, + "noteOrder": 1268, "time": 0.13785112102514735, "position": { "x": 6, @@ -3321,7 +3321,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 1442, + "noteOrder": 1521, "time": 0.16542134523017682, "position": { "x": 3, @@ -3344,7 +3344,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1466, + "noteOrder": 1547, "time": 0.16817836765067976, "position": { "x": 4, @@ -3367,7 +3367,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 1490, + "noteOrder": 1572, "time": 0.17093539007118275, "position": { "x": 7, @@ -3390,7 +3390,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 1514, + "noteOrder": 1597, "time": 0.17369241249168568, "position": { "x": 6, @@ -3413,7 +3413,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1755, + "noteOrder": 1851, "time": 0.20126263669671515, "position": { "x": 2, @@ -3436,7 +3436,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1779, + "noteOrder": 1876, "time": 0.2040196591172181, "position": { "x": 6, @@ -3459,7 +3459,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1851, + "noteOrder": 1952, "time": 0.21229072637872692, "position": { "x": 8, @@ -3482,7 +3482,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1875, + "noteOrder": 1978, "time": 0.2150477487992299, "position": { "x": 4, @@ -3505,7 +3505,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1947, + "noteOrder": 2054, "time": 0.2233188160607387, "position": { "x": 2, @@ -3528,7 +3528,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1971, + "noteOrder": 2079, "time": 0.22607583848124166, "position": { "x": 6, @@ -3551,7 +3551,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 2043, + "noteOrder": 2155, "time": 0.23434690574275052, "position": { "x": 8, @@ -3574,7 +3574,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 2067, + "noteOrder": 2180, "time": 0.23710392816325343, "position": { "x": 4, @@ -3597,7 +3597,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 2356, + "noteOrder": 2485, "time": 0.2701881972092888, "position": { "x": 3, @@ -3620,7 +3620,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 2380, + "noteOrder": 2510, "time": 0.27294521962979174, "position": { "x": 6, @@ -3643,7 +3643,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2500, + "noteOrder": 2637, "time": 0.2867303317323065, "position": { "x": 7, @@ -3666,7 +3666,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2524, + "noteOrder": 2662, "time": 0.28948735415280946, "position": { "x": 7, @@ -3689,7 +3689,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 2548, + "noteOrder": 2687, "time": 0.2922443765733124, "position": { "x": 7, @@ -3712,7 +3712,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 2572, + "noteOrder": 2713, "time": 0.29500139899381533, "position": { "x": 7, @@ -3735,7 +3735,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 2596, + "noteOrder": 2738, "time": 0.2977584214143183, "position": { "x": 3, @@ -3758,7 +3758,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 2620, + "noteOrder": 2763, "time": 0.30051544383482126, "position": { "x": 3, @@ -3781,7 +3781,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2644, + "noteOrder": 2789, "time": 0.30327246625532417, "position": { "x": 3, @@ -3804,7 +3804,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2668, + "noteOrder": 2814, "time": 0.30602948867582713, "position": { "x": 3, @@ -3827,7 +3827,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2692, + "noteOrder": 2840, "time": 0.30878651109633004, "position": { "x": 7, @@ -3850,7 +3850,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 7, @@ -3873,7 +3873,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 2716, + "noteOrder": 2865, "time": 0.31154353351683306, "position": { "x": 6, @@ -3896,7 +3896,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 2722.0, + "noteOrder": 2871.0, "time": 0.31154353351683306, "position": { "x": 6, @@ -3919,7 +3919,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 2740, + "noteOrder": 2890, "time": 0.314300555937336, "position": { "x": 3, @@ -3942,7 +3942,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 3, @@ -3965,7 +3965,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 2764, + "noteOrder": 2916, "time": 0.31705757835783893, "position": { "x": 4, @@ -3988,7 +3988,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 2770.0, + "noteOrder": 2922.0, "time": 0.31705757835783893, "position": { "x": 4, @@ -4011,7 +4011,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 2788, + "noteOrder": 2941, "time": 0.3198146007783419, "position": { "x": 7, @@ -4034,7 +4034,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 7, @@ -4057,7 +4057,7 @@ { "lineGroupId": 68, "indexInLine": 3, - "noteOrder": 2812, + "noteOrder": 2966, "time": 0.3225716231988448, "position": { "x": 6, @@ -4080,7 +4080,7 @@ { "lineGroupId": 68, "indexInLine": 4, - "noteOrder": 2818.0, + "noteOrder": 2972.0, "time": 0.3225716231988448, "position": { "x": 6, @@ -4103,7 +4103,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 2836, + "noteOrder": 2992, "time": 0.32532864561934777, "position": { "x": 3, @@ -4126,7 +4126,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 3, @@ -4149,7 +4149,7 @@ { "lineGroupId": 69, "indexInLine": 3, - "noteOrder": 2860, + "noteOrder": 3017, "time": 0.32808566803985073, "position": { "x": 4, @@ -4172,7 +4172,7 @@ { "lineGroupId": 69, "indexInLine": 4, - "noteOrder": 2866.0, + "noteOrder": 3023.0, "time": 0.32808566803985073, "position": { "x": 4, @@ -4195,7 +4195,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2884, + "noteOrder": 3042, "time": 0.33084269046035364, "position": { "x": 6, @@ -4218,7 +4218,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 6, @@ -4241,7 +4241,7 @@ { "lineGroupId": 72, "indexInLine": 1, - "noteOrder": 2932, + "noteOrder": 3093, "time": 0.3363567353013595, "position": { "x": 4, @@ -4264,7 +4264,7 @@ { "lineGroupId": 72, "indexInLine": 2, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 4, @@ -4287,7 +4287,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2980, + "noteOrder": 3144, "time": 0.3418707801423655, "position": { "x": 6, @@ -4310,7 +4310,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 6, @@ -4333,7 +4333,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 3029, + "noteOrder": 3194, "time": 0.34738482498337137, "position": { "x": 4, @@ -4356,7 +4356,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 4, @@ -4379,7 +4379,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 3077, + "noteOrder": 3245, "time": 0.35289886982437724, "position": { "x": 7, @@ -4402,7 +4402,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 3101, + "noteOrder": 3271, "time": 0.3556558922448802, "position": { "x": 6, @@ -4425,7 +4425,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 3125, + "noteOrder": 3296, "time": 0.3584129146653831, "position": { "x": 3, @@ -4448,7 +4448,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 3149, + "noteOrder": 3321, "time": 0.3611699370858861, "position": { "x": 4, @@ -4471,7 +4471,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 3173, + "noteOrder": 3347, "time": 0.36392695950638904, "position": { "x": 7, @@ -4494,7 +4494,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 3197, + "noteOrder": 3372, "time": 0.36668398192689194, "position": { "x": 6, @@ -4517,7 +4517,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 3221, + "noteOrder": 3397, "time": 0.3694410043473949, "position": { "x": 3, @@ -4540,7 +4540,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 3245, + "noteOrder": 3423, "time": 0.37219802676789787, "position": { "x": 4, @@ -4563,7 +4563,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 4134, + "noteOrder": 4361, "time": 0.47420785632650686, "position": { "x": 6, @@ -4586,7 +4586,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 6, @@ -4609,7 +4609,7 @@ { "lineGroupId": 109, "indexInLine": 1, - "noteOrder": 4230, + "noteOrder": 4462, "time": 0.4852359460085187, "position": { "x": 4, @@ -4632,7 +4632,7 @@ { "lineGroupId": 109, "indexInLine": 2, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 4, @@ -4655,7 +4655,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 4326, + "noteOrder": 4564, "time": 0.4962640356905305, "position": { "x": 6, @@ -4678,7 +4678,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 4399, + "noteOrder": 4640, "time": 0.5045351029520393, "position": { "x": 6, @@ -4701,7 +4701,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 4423, + "noteOrder": 4665, "time": 0.5072921253725423, "position": { "x": 7, @@ -4724,7 +4724,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 4447, + "noteOrder": 4690, "time": 0.5100491477930452, "position": { "x": 7, @@ -4747,7 +4747,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 6, @@ -4770,7 +4770,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 4519, + "noteOrder": 4766, "time": 0.5183202150545541, "position": { "x": 4, @@ -4793,7 +4793,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 4, @@ -4816,7 +4816,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 4615, + "noteOrder": 4868, "time": 0.5293483047365659, "position": { "x": 6, @@ -4839,7 +4839,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 4711, + "noteOrder": 4969, "time": 0.5403763944185777, "position": { "x": 6, @@ -4862,7 +4862,7 @@ { "lineGroupId": 133, "indexInLine": 1, - "noteOrder": 4903, + "noteOrder": 5172, "time": 0.5624325737826013, "position": { "x": 2, @@ -4885,7 +4885,7 @@ { "lineGroupId": 133, "indexInLine": 2, - "noteOrder": 4951, + "noteOrder": 5223, "time": 0.5679466186236072, "position": { "x": 4, @@ -4908,7 +4908,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4999, + "noteOrder": 5273, "time": 0.573460663464613, "position": { "x": 8, @@ -4931,7 +4931,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 5048, + "noteOrder": 5324, "time": 0.5789747083056189, "position": { "x": 6, @@ -4954,7 +4954,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 5384, + "noteOrder": 5679, "time": 0.6175730221926601, "position": { "x": 4, @@ -4977,7 +4977,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 4, @@ -5000,7 +5000,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 5480, + "noteOrder": 5780, "time": 0.628601111874672, "position": { "x": 6, @@ -5023,7 +5023,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 5576, + "noteOrder": 5882, "time": 0.6396292015566838, "position": { "x": 6, @@ -5046,7 +5046,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 5865, + "noteOrder": 6186, "time": 0.672713470602719, "position": { "x": 7, @@ -5069,7 +5069,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 7, @@ -5092,7 +5092,7 @@ { "lineGroupId": 162, "indexInLine": 3, - "noteOrder": 5889, + "noteOrder": 6211, "time": 0.675470493023222, "position": { "x": 6, @@ -5115,7 +5115,7 @@ { "lineGroupId": 162, "indexInLine": 4, - "noteOrder": 5895.0, + "noteOrder": 6217.0, "time": 0.675470493023222, "position": { "x": 6, @@ -5138,7 +5138,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5913, + "noteOrder": 6237, "time": 0.678227515443725, "position": { "x": 7, @@ -5161,7 +5161,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 7, @@ -5184,7 +5184,7 @@ { "lineGroupId": 163, "indexInLine": 3, - "noteOrder": 5937, + "noteOrder": 6262, "time": 0.680984537864228, "position": { "x": 6, @@ -5207,7 +5207,7 @@ { "lineGroupId": 163, "indexInLine": 4, - "noteOrder": 5943.0, + "noteOrder": 6268.0, "time": 0.680984537864228, "position": { "x": 6, @@ -5230,7 +5230,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 5961, + "noteOrder": 6288, "time": 0.683741560284731, "position": { "x": 7, @@ -5253,7 +5253,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 7, @@ -5276,7 +5276,7 @@ { "lineGroupId": 164, "indexInLine": 3, - "noteOrder": 5985, + "noteOrder": 6313, "time": 0.6864985827052338, "position": { "x": 6, @@ -5299,7 +5299,7 @@ { "lineGroupId": 164, "indexInLine": 4, - "noteOrder": 5991.0, + "noteOrder": 6319.0, "time": 0.6864985827052338, "position": { "x": 6, @@ -5322,7 +5322,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 6249, + "noteOrder": 6592, "time": 0.7168258293307662, "position": { "x": 3, @@ -5345,7 +5345,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 3, @@ -5368,7 +5368,7 @@ { "lineGroupId": 174, "indexInLine": 3, - "noteOrder": 6273, + "noteOrder": 6617, "time": 0.7195828517512692, "position": { "x": 4, @@ -5391,7 +5391,7 @@ { "lineGroupId": 174, "indexInLine": 4, - "noteOrder": 6279.0, + "noteOrder": 6623.0, "time": 0.7195828517512692, "position": { "x": 4, @@ -5414,7 +5414,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 6297, + "noteOrder": 6642, "time": 0.7223398741717721, "position": { "x": 3, @@ -5437,7 +5437,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 3, @@ -5460,7 +5460,7 @@ { "lineGroupId": 175, "indexInLine": 3, - "noteOrder": 6321, + "noteOrder": 6668, "time": 0.7250968965922752, "position": { "x": 4, @@ -5483,7 +5483,7 @@ { "lineGroupId": 175, "indexInLine": 4, - "noteOrder": 6327.0, + "noteOrder": 6674.0, "time": 0.7250968965922752, "position": { "x": 4, @@ -5506,7 +5506,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 6346, + "noteOrder": 6693, "time": 0.7278539190127781, "position": { "x": 3, @@ -5529,7 +5529,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 3, @@ -5552,7 +5552,7 @@ { "lineGroupId": 176, "indexInLine": 3, - "noteOrder": 6358, + "noteOrder": 6706, "time": 0.7292324302230295, "position": { "x": 4, @@ -5575,7 +5575,7 @@ { "lineGroupId": 176, "indexInLine": 4, - "noteOrder": 6364.0, + "noteOrder": 6712.0, "time": 0.7292324302230295, "position": { "x": 4, @@ -5598,7 +5598,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 6370, + "noteOrder": 6719, "time": 0.730610941433281, "position": { "x": 3, @@ -5621,7 +5621,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 3, @@ -5644,7 +5644,7 @@ { "lineGroupId": 177, "indexInLine": 3, - "noteOrder": 6382, + "noteOrder": 6731, "time": 0.7319894526435324, "position": { "x": 4, @@ -5667,7 +5667,7 @@ { "lineGroupId": 177, "indexInLine": 4, - "noteOrder": 6388.0, + "noteOrder": 6737.0, "time": 0.7319894526435324, "position": { "x": 4, @@ -5690,7 +5690,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 6538, + "noteOrder": 6896, "time": 0.7499100983768017, "position": { "x": 6, @@ -5713,7 +5713,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 6562, + "noteOrder": 6921, "time": 0.7526671207973046, "position": { "x": 6, @@ -5736,7 +5736,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 6586, + "noteOrder": 6947, "time": 0.7554241432178076, "position": { "x": 6, @@ -5759,7 +5759,7 @@ { "lineGroupId": 183, "indexInLine": 1, - "noteOrder": 6634, + "noteOrder": 6997, "time": 0.7609381880588134, "position": { "x": 4, @@ -5782,7 +5782,7 @@ { "lineGroupId": 183, "indexInLine": 2, - "noteOrder": 6658, + "noteOrder": 7023, "time": 0.7636952104793163, "position": { "x": 4, @@ -5805,7 +5805,7 @@ { "lineGroupId": 183, "indexInLine": 3, - "noteOrder": 6682, + "noteOrder": 7048, "time": 0.7664522328998193, "position": { "x": 4, @@ -5828,7 +5828,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 3, @@ -5851,7 +5851,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 3, @@ -5874,7 +5874,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 4, @@ -5897,7 +5897,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 6730, + "noteOrder": 7099, "time": 0.7719662777408252, "position": { "x": 7, @@ -5920,7 +5920,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 6754, + "noteOrder": 7124, "time": 0.7747233001613282, "position": { "x": 7, @@ -5943,7 +5943,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 6778, + "noteOrder": 7150, "time": 0.7774803225818311, "position": { "x": 6, @@ -5966,7 +5966,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 6922, + "noteOrder": 7302, "time": 0.7940224571048488, "position": { "x": 6, @@ -5989,7 +5989,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 6, @@ -6012,7 +6012,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 6946, + "noteOrder": 7327, "time": 0.7967794795253518, "position": { "x": 6, @@ -6035,7 +6035,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 6952.0, + "noteOrder": 7333.0, "time": 0.7967794795253518, "position": { "x": 6, @@ -6058,7 +6058,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 6970, + "noteOrder": 7352, "time": 0.7995365019458547, "position": { "x": 6, @@ -6081,7 +6081,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 6, @@ -6104,7 +6104,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 6994, + "noteOrder": 7378, "time": 0.8022935243663576, "position": { "x": 6, @@ -6127,7 +6127,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 7000.0, + "noteOrder": 7384.0, "time": 0.8022935243663576, "position": { "x": 6, @@ -6150,7 +6150,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 7019, + "noteOrder": 7403, "time": 0.8050505467868606, "position": { "x": 7, @@ -6173,7 +6173,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 7067, + "noteOrder": 7454, "time": 0.8105645916278665, "position": { "x": 4, @@ -6196,7 +6196,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 7115, + "noteOrder": 7504, "time": 0.8160786364688724, "position": { "x": 4, @@ -6219,7 +6219,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 4, @@ -6242,7 +6242,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 7139, + "noteOrder": 7530, "time": 0.8188356588893753, "position": { "x": 4, @@ -6265,7 +6265,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 7145.0, + "noteOrder": 7536.0, "time": 0.8188356588893753, "position": { "x": 4, @@ -6288,7 +6288,7 @@ { "lineGroupId": 193, "indexInLine": 1, - "noteOrder": 7163, + "noteOrder": 7555, "time": 0.8215926813098783, "position": { "x": 4, @@ -6311,7 +6311,7 @@ { "lineGroupId": 193, "indexInLine": 2, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 4, @@ -6334,7 +6334,7 @@ { "lineGroupId": 193, "indexInLine": 3, - "noteOrder": 7187, + "noteOrder": 7581, "time": 0.8243497037303812, "position": { "x": 4, @@ -6357,7 +6357,7 @@ { "lineGroupId": 193, "indexInLine": 4, - "noteOrder": 7193.0, + "noteOrder": 7587.0, "time": 0.8243497037303812, "position": { "x": 4, @@ -6380,7 +6380,7 @@ { "lineGroupId": 194, "indexInLine": 1, - "noteOrder": 7211, + "noteOrder": 7606, "time": 0.8271067261508842, "position": { "x": 4, @@ -6403,7 +6403,7 @@ { "lineGroupId": 194, "indexInLine": 2, - "noteOrder": 7259, + "noteOrder": 7657, "time": 0.83262077099189, "position": { "x": 6, @@ -6426,7 +6426,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 7307, + "noteOrder": 7707, "time": 0.838134815832896, "position": { "x": 6, @@ -6449,7 +6449,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 6, @@ -6472,7 +6472,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 7355, + "noteOrder": 7758, "time": 0.8436488606739018, "position": { "x": 4, @@ -6495,7 +6495,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 4, @@ -6518,7 +6518,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 7403, + "noteOrder": 7809, "time": 0.8491629055149077, "position": { "x": 6, @@ -6541,7 +6541,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 6, @@ -6564,7 +6564,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 7451, + "noteOrder": 7859, "time": 0.8546769503559136, "position": { "x": 4, @@ -6587,7 +6587,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 7499, + "noteOrder": 7910, "time": 0.8601909951969196, "position": { "x": 4, @@ -6610,7 +6610,7 @@ { "lineGroupId": 204, "indexInLine": 1, - "noteOrder": 7547, + "noteOrder": 7961, "time": 0.8657050400379254, "position": { "x": 6, @@ -6633,7 +6633,7 @@ { "lineGroupId": 204, "indexInLine": 2, - "noteOrder": 7595, + "noteOrder": 8012, "time": 0.8712190848789313, "position": { "x": 6, @@ -6656,7 +6656,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 7643, + "noteOrder": 8062, "time": 0.8767331297199372, "position": { "x": 3, @@ -6679,7 +6679,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 7692, + "noteOrder": 8113, "time": 0.8822471745609431, "position": { "x": 3, @@ -6702,7 +6702,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 7740, + "noteOrder": 8164, "time": 0.8877612194019491, "position": { "x": 7, @@ -6725,7 +6725,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 7, @@ -6748,7 +6748,7 @@ { "lineGroupId": 208, "indexInLine": 3, - "noteOrder": 7764, + "noteOrder": 8189, "time": 0.890518241822452, "position": { "x": 6, @@ -6771,7 +6771,7 @@ { "lineGroupId": 208, "indexInLine": 4, - "noteOrder": 7770.0, + "noteOrder": 8195.0, "time": 0.890518241822452, "position": { "x": 6, @@ -6794,7 +6794,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 7788, + "noteOrder": 8214, "time": 0.8932752642429548, "position": { "x": 7, @@ -6817,7 +6817,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 7, @@ -6840,7 +6840,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 7812, + "noteOrder": 8240, "time": 0.8960322866634578, "position": { "x": 6, @@ -6863,7 +6863,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 7818.0, + "noteOrder": 8246.0, "time": 0.8960322866634578, "position": { "x": 6, @@ -6886,7 +6886,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 7836, + "noteOrder": 8265, "time": 0.8987893090839607, "position": { "x": 7, @@ -6909,7 +6909,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 7, @@ -6932,7 +6932,7 @@ { "lineGroupId": 210, "indexInLine": 3, - "noteOrder": 7848, + "noteOrder": 8278, "time": 0.9001678202942123, "position": { "x": 6, @@ -6955,7 +6955,7 @@ { "lineGroupId": 210, "indexInLine": 4, - "noteOrder": 7854.0, + "noteOrder": 8284.0, "time": 0.9001678202942123, "position": { "x": 6, @@ -6978,7 +6978,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 7860, + "noteOrder": 8290, "time": 0.9015463315044637, "position": { "x": 7, @@ -7001,7 +7001,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 7, @@ -7024,7 +7024,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 7872, + "noteOrder": 8303, "time": 0.9029248427147152, "position": { "x": 6, @@ -7047,7 +7047,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 7878.0, + "noteOrder": 8309.0, "time": 0.9029248427147152, "position": { "x": 6, @@ -7070,7 +7070,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 7932, + "noteOrder": 8366, "time": 0.9098173987659726, "position": { "x": 4, @@ -7093,7 +7093,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 7956, + "noteOrder": 8392, "time": 0.9125744211864756, "position": { "x": 4, @@ -7116,7 +7116,7 @@ { "lineGroupId": 216, "indexInLine": 1, - "noteOrder": 7980, + "noteOrder": 8417, "time": 0.9153314436069785, "position": { "x": 6, @@ -7139,7 +7139,7 @@ { "lineGroupId": 216, "indexInLine": 2, - "noteOrder": 8004, + "noteOrder": 8443, "time": 0.9180884660274815, "position": { "x": 6, @@ -7162,7 +7162,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 7, @@ -7185,7 +7185,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 7, @@ -7208,7 +7208,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 8076, + "noteOrder": 8519, "time": 0.9263595332889902, "position": { "x": 3, @@ -7231,7 +7231,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 8220, + "noteOrder": 8671, "time": 0.942901667812008, "position": { "x": 3, @@ -7266,7 +7266,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 146, + "BPM": 154, "NPS": "2.36", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/info.json b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/info.json index acc00e59..9931235e 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ピアノ体操第一/info.json @@ -3,7 +3,7 @@ "SongName": "\u30d4\u30a2\u30ce\u4f53\u64cd\u7b2c\u4e00", "SongLength": "149.282472", "SongAuthorName": "\u30ce\u30b9\u30bf\u30eb\u30b8\u30a2\u6f14\u594f\u5354\u4f1a\u266a", - "Bpm": "146", + "Bpm": "154", "SongPath": "265.ogg", "CreateTicks": 637528320000000000, "CreateTime": "637528320000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a.json index 61729afa..f5e30208 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u30e6\u30e1\u30d6\u30ad difficulty_1a", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.010525995485277733, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 60, "time": 0.013157494356597167, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 72, "time": 0.0157889932279166, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 84, "time": 0.018420492099236033, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 108, "time": 0.0236834898418749, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 132, "time": 0.028946487584513767, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 168, "time": 0.036840984198472065, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 180, "time": 0.0394724830697915, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 324, "time": 0.0710504695256247, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 324, "time": 0.0710504695256247, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 852, + "noteOrder": 426, "time": 0.09341820993183989, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 876, + "noteOrder": 438, "time": 0.09604970880315931, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 828, "time": 0.18157342212104088, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.18420492099236033, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 852, "time": 0.18683641986367977, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 876, "time": 0.19209941760631863, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 900, "time": 0.19736241534895752, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.2842018781024988, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.2868333769738183, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.29209637471645705, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.29735937245909594, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.3026223702017348, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.3105168668156931, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.32893735891492915, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.33420035665756803, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.33683185552888745, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 1548, "time": 0.3394633544002069, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.3526208487568041, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 1620, "time": 0.3552523476281235, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 1644, "time": 0.3605153453707624, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 1668, "time": 0.36577834311340124, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 1668, "time": 0.36577834311340124, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.36840984198472065, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 1692, "time": 0.37104134085604007, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.37367283972735954, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3432, + "noteOrder": 1716, "time": 0.37630433859867896, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 1740, "time": 0.38156733634131784, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.38419883521263726, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 1764, "time": 0.38683033408395673, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.39472483069791503, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 1884, "time": 0.41314532279715105, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 1908, "time": 0.41840832053978994, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 1932, "time": 0.42367131828242877, "position": { "x": 3, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 1956, "time": 0.42893431602506765, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.4341973137677065, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.4368288126390259, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.43946031151034537, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.44472330925298426, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.4499863069956231, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.4499863069956231, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.455249304738262, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.4631438013522203, "position": { "x": 3, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 2142, "time": 0.4697225485305188, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 2142, "time": 0.4697225485305188, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.49735328667937295, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.5052477832933312, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 2334, "time": 0.5118265304716298, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 2334, "time": 0.5118265304716298, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.5262997742638866, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 2412, "time": 0.528931273135206, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.5315627720065256, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.5315627720065256, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 2460, "time": 0.5394572686204838, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.5473517652344422, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5052, + "noteOrder": 2526, "time": 0.5539305124127407, "position": { "x": 6, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5052, + "noteOrder": 2526, "time": 0.5539305124127407, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 2580, "time": 0.5657722573336782, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 2628, "time": 0.576298252818956, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.5789297516902754, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 2652, "time": 0.5815612505615948, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.5841927494329141, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 2676, "time": 0.5868242483042337, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.589455747175553, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 2700, "time": 0.5920872460468725, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.5947187449181919, "position": { "x": 7, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 2724, "time": 0.5973502437895113, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 6, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5688, + "noteOrder": 2844, "time": 0.6236652325027057, "position": { "x": 3, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 2868, "time": 0.6289282302453446, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5976, + "noteOrder": 2988, "time": 0.655243218958539, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 6024, + "noteOrder": 3012, "time": 0.6605062167011777, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 3, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 6072, + "noteOrder": 3036, "time": 0.6657692144438166, "position": { "x": 4, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 6120, + "noteOrder": 3060, "time": 0.6710322121864555, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 6, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.6947157020283304, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 6360, + "noteOrder": 3180, "time": 0.6973472008996499, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.6999786997709693, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6408, + "noteOrder": 3204, "time": 0.7026101986422887, "position": { "x": 3, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 3, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 7, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 3252, "time": 0.7131361941275665, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 3252, "time": 0.7131361941275665, "position": { "x": 7, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 3, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6744, + "noteOrder": 3372, "time": 0.7394511828407607, "position": { "x": 4, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6792, + "noteOrder": 3396, "time": 0.7447141805833997, "position": { "x": 7, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 7, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6840, + "noteOrder": 3420, "time": 0.7499771783260385, "position": { "x": 6, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6888, + "noteOrder": 3444, "time": 0.7552401760686773, "position": { "x": 3, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 4, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 6, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.7789236659105523, "position": { "x": 3, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7128, + "noteOrder": 3564, "time": 0.7815551647818717, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.7841866636531912, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7176, + "noteOrder": 3588, "time": 0.7868181625245106, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 3, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 7, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7224, + "noteOrder": 3612, "time": 0.7920811602671495, "position": { "x": 6, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7224, + "noteOrder": 3612, "time": 0.7920811602671495, "position": { "x": 4, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 3, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7272, + "noteOrder": 3636, "time": 0.7973441580097884, "position": { "x": 7, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.7999756568811077, "position": { "x": 3, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7320, + "noteOrder": 3660, "time": 0.8026071557524271, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.8052386546237466, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7368, + "noteOrder": 3684, "time": 0.807870153495066, "position": { "x": 7, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.8105016523663855, "position": { "x": 7, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7416, + "noteOrder": 3708, "time": 0.8131331512377049, "position": { "x": 6, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.8157646501090243, "position": { "x": 4, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7464, + "noteOrder": 3732, "time": 0.8183961489803437, "position": { "x": 3, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 4, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 6, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 7, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7704, + "noteOrder": 3852, "time": 0.8447111376935381, "position": { "x": 6, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 4, @@ -3303,7 +3303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7752, + "noteOrder": 3876, "time": 0.8499741354361771, "position": { "x": 3, @@ -3323,7 +3323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.8526056343074965, "position": { "x": 3, @@ -3343,7 +3343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7800, + "noteOrder": 3900, "time": 0.8552371331788159, "position": { "x": 4, @@ -3363,7 +3363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 6, @@ -3383,7 +3383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7848, + "noteOrder": 3924, "time": 0.8605001309214546, "position": { "x": 7, @@ -3403,7 +3403,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 6, @@ -3423,7 +3423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 4, @@ -3443,7 +3443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.8841836207633296, "position": { "x": 7, @@ -3463,7 +3463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8088, + "noteOrder": 4044, "time": 0.886815119634649, "position": { "x": 7, @@ -3483,7 +3483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.8894466185059685, "position": { "x": 3, @@ -3503,7 +3503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8136, + "noteOrder": 4068, "time": 0.8920781173772879, "position": { "x": 3, @@ -3523,7 +3523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.8947096162486073, "position": { "x": 7, @@ -3543,7 +3543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8184, + "noteOrder": 4092, "time": 0.8973411151199268, "position": { "x": 3, @@ -3563,7 +3563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.8999726139912462, "position": { "x": 6, @@ -3583,7 +3583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8232, + "noteOrder": 4116, "time": 0.9026041128625657, "position": { "x": 4, @@ -3603,7 +3603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.9052356117338851, "position": { "x": 7, @@ -3623,7 +3623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8280, + "noteOrder": 4140, "time": 0.9078671106052045, "position": { "x": 7, @@ -3643,7 +3643,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.910498609476524, "position": { "x": 3, @@ -3663,7 +3663,7 @@ "isPlayAudio": false }, { - "noteOrder": 8328, + "noteOrder": 4164, "time": 0.9131301083478434, "position": { "x": 3, @@ -3683,7 +3683,7 @@ "isPlayAudio": false }, { - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.9289191015757601, "position": { "x": 6, @@ -3703,7 +3703,7 @@ "isPlayAudio": false }, { - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.9341820993183988, "position": { "x": 4, @@ -3723,7 +3723,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.9368135981897182, "position": { "x": 7, @@ -3743,7 +3743,7 @@ "isPlayAudio": false }, { - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.9394450970610376, "position": { "x": 3, @@ -3763,7 +3763,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.9420765959323572, "position": { "x": 6, @@ -3783,7 +3783,7 @@ "isPlayAudio": false }, { - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.9447080948036766, "position": { "x": 4, @@ -3803,7 +3803,7 @@ "isPlayAudio": false }, { - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.9499710925463154, "position": { "x": 6, @@ -3823,7 +3823,7 @@ "isPlayAudio": false }, { - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.9552340902889543, "position": { "x": 4, @@ -3843,7 +3843,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 3, @@ -3863,7 +3863,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 7, @@ -3883,7 +3883,7 @@ "isPlayAudio": false }, { - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.9604970880315932, "position": { "x": 6, @@ -3903,7 +3903,7 @@ "isPlayAudio": false }, { - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.9604970880315932, "position": { "x": 4, @@ -3923,7 +3923,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 7, @@ -3943,7 +3943,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 3, @@ -3967,7 +3967,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 7, @@ -3990,7 +3990,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 336, + "noteOrder": 168, "time": 0.036840984198472065, "position": { "x": 7, @@ -4013,7 +4013,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 3, @@ -4036,7 +4036,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 3, @@ -4059,7 +4059,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 240, "time": 0.05262997742638867, "position": { "x": 7, @@ -4082,7 +4082,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 7, @@ -4105,7 +4105,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 6, @@ -4128,7 +4128,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 600, + "noteOrder": 300, "time": 0.06578747178298583, "position": { "x": 6, @@ -4151,7 +4151,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 4, @@ -4174,7 +4174,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 600, + "noteOrder": 300, "time": 0.06578747178298583, "position": { "x": 4, @@ -4197,7 +4197,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 336, "time": 0.07368196839694413, "position": { "x": 3, @@ -4220,7 +4220,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 3, @@ -4243,7 +4243,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 4, @@ -4266,7 +4266,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 4, @@ -4289,7 +4289,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 6, @@ -4312,7 +4312,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 6, @@ -4335,7 +4335,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 912, + "noteOrder": 456, "time": 0.09999695711013847, "position": { "x": 7, @@ -4358,7 +4358,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 468, "time": 0.1026284559814579, "position": { "x": 7, @@ -4381,7 +4381,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 936, + "noteOrder": 468, "time": 0.1026284559814579, "position": { "x": 3, @@ -4404,7 +4404,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 480, "time": 0.10525995485277734, "position": { "x": 3, @@ -4427,7 +4427,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 492, "time": 0.10789145372409678, "position": { "x": 4, @@ -4450,7 +4450,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 510, "time": 0.11183870203107592, "position": { "x": 4, @@ -4473,7 +4473,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 492, "time": 0.10789145372409678, "position": { "x": 6, @@ -4496,7 +4496,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 510, "time": 0.11183870203107592, "position": { "x": 6, @@ -4519,7 +4519,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.11578595033805507, "position": { "x": 7, @@ -4542,7 +4542,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 540, "time": 0.1184174492093745, "position": { "x": 7, @@ -4565,7 +4565,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 1080, + "noteOrder": 540, "time": 0.1184174492093745, "position": { "x": 6, @@ -4588,7 +4588,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 6, @@ -4611,7 +4611,7 @@ { "lineGroupId": 33, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 5, @@ -4634,7 +4634,7 @@ { "lineGroupId": 33, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 558.0, "time": 0.12104894808069394, "position": { "x": 5, @@ -4657,7 +4657,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 7, @@ -4680,7 +4680,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 564, "time": 0.12368044695201337, "position": { "x": 7, @@ -4703,7 +4703,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 1128, + "noteOrder": 564, "time": 0.12368044695201337, "position": { "x": 6, @@ -4726,7 +4726,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 6, @@ -4749,7 +4749,7 @@ { "lineGroupId": 34, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 5, @@ -4772,7 +4772,7 @@ { "lineGroupId": 34, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 582.0, "time": 0.1263119458233328, "position": { "x": 5, @@ -4795,7 +4795,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 7, @@ -4818,7 +4818,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 1176, + "noteOrder": 588, "time": 0.12894344469465224, "position": { "x": 7, @@ -4841,7 +4841,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 1176, + "noteOrder": 588, "time": 0.12894344469465224, "position": { "x": 6, @@ -4864,7 +4864,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 6, @@ -4887,7 +4887,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 7, @@ -4910,7 +4910,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 1206.0, + "noteOrder": 606.0, "time": 0.13157494356597166, "position": { "x": 7, @@ -4933,7 +4933,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 3, @@ -4956,7 +4956,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 636, "time": 0.13946944017992996, "position": { "x": 3, @@ -4979,7 +4979,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 1272, + "noteOrder": 636, "time": 0.13946944017992996, "position": { "x": 4, @@ -5002,7 +5002,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 4, @@ -5025,7 +5025,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 5, @@ -5048,7 +5048,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 1302.0, + "noteOrder": 654.0, "time": 0.1421009390512494, "position": { "x": 5, @@ -5071,7 +5071,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 3, @@ -5094,7 +5094,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 660, "time": 0.14473243792256885, "position": { "x": 3, @@ -5117,7 +5117,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1320, + "noteOrder": 660, "time": 0.14473243792256885, "position": { "x": 4, @@ -5140,7 +5140,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 4, @@ -5163,7 +5163,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 5, @@ -5186,7 +5186,7 @@ { "lineGroupId": 38, "indexInLine": 6, - "noteOrder": 1350.0, + "noteOrder": 678.0, "time": 0.14736393679388826, "position": { "x": 5, @@ -5209,7 +5209,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 3, @@ -5232,7 +5232,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 684, "time": 0.1499954356652077, "position": { "x": 3, @@ -5255,7 +5255,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 684, "time": 0.1499954356652077, "position": { "x": 4, @@ -5278,7 +5278,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 4, @@ -5301,7 +5301,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 3, @@ -5324,7 +5324,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1398.0, + "noteOrder": 702.0, "time": 0.15262693453652712, "position": { "x": 3, @@ -5347,7 +5347,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.157889932279166, "position": { "x": 7, @@ -5370,7 +5370,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 7, @@ -5393,7 +5393,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.16841592776444372, "position": { "x": 3, @@ -5416,7 +5416,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 3, @@ -5439,7 +5439,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 912, "time": 0.19999391422027693, "position": { "x": 7, @@ -5462,7 +5462,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1848, + "noteOrder": 924, "time": 0.20262541309159637, "position": { "x": 7, @@ -5485,7 +5485,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1848, + "noteOrder": 924, "time": 0.20262541309159637, "position": { "x": 6, @@ -5508,7 +5508,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 6, @@ -5531,7 +5531,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 5, @@ -5554,7 +5554,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 1878.0, + "noteOrder": 942.0, "time": 0.2052569119629158, "position": { "x": 5, @@ -5577,7 +5577,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 7, @@ -5600,7 +5600,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1896, + "noteOrder": 948, "time": 0.20788841083423523, "position": { "x": 7, @@ -5623,7 +5623,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1896, + "noteOrder": 948, "time": 0.20788841083423523, "position": { "x": 6, @@ -5646,7 +5646,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 6, @@ -5669,7 +5669,7 @@ { "lineGroupId": 54, "indexInLine": 5, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 5, @@ -5692,7 +5692,7 @@ { "lineGroupId": 54, "indexInLine": 6, - "noteOrder": 1926.0, + "noteOrder": 966.0, "time": 0.21051990970555468, "position": { "x": 5, @@ -5715,7 +5715,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 7, @@ -5738,7 +5738,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1944, + "noteOrder": 972, "time": 0.21315140857687412, "position": { "x": 7, @@ -5761,7 +5761,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1944, + "noteOrder": 972, "time": 0.21315140857687412, "position": { "x": 6, @@ -5784,7 +5784,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 6, @@ -5807,7 +5807,7 @@ { "lineGroupId": 55, "indexInLine": 5, - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 7, @@ -5830,7 +5830,7 @@ { "lineGroupId": 55, "indexInLine": 6, - "noteOrder": 1974.0, + "noteOrder": 990.0, "time": 0.21578290744819356, "position": { "x": 7, @@ -5853,7 +5853,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 6, @@ -5876,7 +5876,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 1044, "time": 0.22894040180479072, "position": { "x": 6, @@ -5899,7 +5899,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 4, @@ -5922,7 +5922,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 1044, "time": 0.22894040180479072, "position": { "x": 4, @@ -5945,7 +5945,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 3, @@ -5968,7 +5968,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 3, @@ -5991,7 +5991,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.24209789616138788, "position": { "x": 7, @@ -6014,7 +6014,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 7, @@ -6037,7 +6037,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 3, @@ -6060,7 +6060,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2328, + "noteOrder": 1164, "time": 0.25525539051798507, "position": { "x": 3, @@ -6083,7 +6083,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 2328, + "noteOrder": 1164, "time": 0.25525539051798507, "position": { "x": 4, @@ -6106,7 +6106,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 4, @@ -6129,7 +6129,7 @@ { "lineGroupId": 63, "indexInLine": 5, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 5, @@ -6152,7 +6152,7 @@ { "lineGroupId": 63, "indexInLine": 6, - "noteOrder": 2358.0, + "noteOrder": 1182.0, "time": 0.2578868893893045, "position": { "x": 5, @@ -6175,7 +6175,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 3, @@ -6198,7 +6198,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2376, + "noteOrder": 1188, "time": 0.2605183882606239, "position": { "x": 3, @@ -6221,7 +6221,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 2376, + "noteOrder": 1188, "time": 0.2605183882606239, "position": { "x": 4, @@ -6244,7 +6244,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 4, @@ -6267,7 +6267,7 @@ { "lineGroupId": 64, "indexInLine": 5, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 5, @@ -6290,7 +6290,7 @@ { "lineGroupId": 64, "indexInLine": 6, - "noteOrder": 2406.0, + "noteOrder": 1206.0, "time": 0.2631498871319433, "position": { "x": 5, @@ -6313,7 +6313,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 3, @@ -6336,7 +6336,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.2657813860032628, "position": { "x": 3, @@ -6359,7 +6359,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.2657813860032628, "position": { "x": 4, @@ -6382,7 +6382,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 4, @@ -6405,7 +6405,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 3, @@ -6428,7 +6428,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 3, @@ -6451,7 +6451,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 7, @@ -6474,7 +6474,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 7, @@ -6497,7 +6497,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.2947278735877765, "position": { "x": 7, @@ -6520,7 +6520,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 7, @@ -6543,7 +6543,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 3, @@ -6566,7 +6566,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.3105168668156931, "position": { "x": 3, @@ -6589,7 +6589,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 7, @@ -6612,7 +6612,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 7, @@ -6635,7 +6635,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.3263058600436098, "position": { "x": 3, @@ -6658,7 +6658,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.32893735891492915, "position": { "x": 3, @@ -6681,7 +6681,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 7, @@ -6704,7 +6704,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.33420035665756803, "position": { "x": 7, @@ -6727,7 +6727,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 6, @@ -6750,7 +6750,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 1572, "time": 0.34472635214284575, "position": { "x": 6, @@ -6773,7 +6773,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 4, @@ -6796,7 +6796,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 1572, "time": 0.34472635214284575, "position": { "x": 4, @@ -6819,7 +6819,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 7, @@ -6842,7 +6842,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 1596, "time": 0.34998934988548464, "position": { "x": 7, @@ -6865,7 +6865,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 3, @@ -6888,7 +6888,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 1596, "time": 0.34998934988548464, "position": { "x": 3, @@ -6911,7 +6911,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.3789358374699984, "position": { "x": 3, @@ -6934,7 +6934,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 3, @@ -6957,7 +6957,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 7, @@ -6980,7 +6980,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.39472483069791503, "position": { "x": 7, @@ -7003,7 +7003,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 3, @@ -7026,7 +7026,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 3, @@ -7049,7 +7049,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.4105138239258316, "position": { "x": 7, @@ -7072,7 +7072,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 1884, "time": 0.41314532279715105, "position": { "x": 7, @@ -7095,7 +7095,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 3, @@ -7118,7 +7118,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 1908, "time": 0.41840832053978994, "position": { "x": 3, @@ -7141,7 +7141,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 3, @@ -7164,7 +7164,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.4815642934514563, "position": { "x": 3, @@ -7187,7 +7187,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 7, @@ -7210,7 +7210,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.4815642934514563, "position": { "x": 7, @@ -7233,7 +7233,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 3, @@ -7256,7 +7256,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 2364, "time": 0.5184052776499284, "position": { "x": 3, @@ -7279,7 +7279,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 7, @@ -7302,7 +7302,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 2364, "time": 0.5184052776499284, "position": { "x": 7, @@ -7325,7 +7325,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 4, @@ -7348,7 +7348,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 2388, "time": 0.5236682753925672, "position": { "x": 4, @@ -7371,7 +7371,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 6, @@ -7394,7 +7394,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 2388, "time": 0.5236682753925672, "position": { "x": 6, @@ -7417,7 +7417,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.5578777607197198, "position": { "x": 7, @@ -7440,7 +7440,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5160, + "noteOrder": 2580, "time": 0.5657722573336782, "position": { "x": 7, @@ -7463,7 +7463,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.5684037562049976, "position": { "x": 3, @@ -7486,7 +7486,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 2628, "time": 0.576298252818956, "position": { "x": 3, @@ -7509,7 +7509,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.5999817426608308, "position": { "x": 7, @@ -7532,7 +7532,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 7, @@ -7555,7 +7555,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 3, @@ -7578,7 +7578,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 3, @@ -7601,7 +7601,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.631559729116664, "position": { "x": 7, @@ -7624,7 +7624,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 5784, + "noteOrder": 2892, "time": 0.6341912279879834, "position": { "x": 7, @@ -7647,7 +7647,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 5784, + "noteOrder": 2892, "time": 0.6341912279879834, "position": { "x": 6, @@ -7670,7 +7670,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 6, @@ -7693,7 +7693,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 5, @@ -7716,7 +7716,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 5814.0, + "noteOrder": 2910.0, "time": 0.6368227268593029, "position": { "x": 5, @@ -7739,7 +7739,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 7, @@ -7762,7 +7762,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 5832, + "noteOrder": 2916, "time": 0.6394542257306224, "position": { "x": 7, @@ -7785,7 +7785,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 5832, + "noteOrder": 2916, "time": 0.6394542257306224, "position": { "x": 6, @@ -7808,7 +7808,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 6, @@ -7831,7 +7831,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 5, @@ -7854,7 +7854,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 5862.0, + "noteOrder": 2934.0, "time": 0.6420857246019418, "position": { "x": 5, @@ -7877,7 +7877,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 7, @@ -7900,7 +7900,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 5880, + "noteOrder": 2940, "time": 0.6447172234732612, "position": { "x": 7, @@ -7923,7 +7923,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 5880, + "noteOrder": 2940, "time": 0.6447172234732612, "position": { "x": 6, @@ -7946,7 +7946,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 6, @@ -7969,7 +7969,7 @@ { "lineGroupId": 187, "indexInLine": 5, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 5, @@ -7992,7 +7992,7 @@ { "lineGroupId": 187, "indexInLine": 6, - "noteOrder": 5910.0, + "noteOrder": 2958.0, "time": 0.6473487223445806, "position": { "x": 5, @@ -8015,7 +8015,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 7, @@ -8038,7 +8038,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 5928, + "noteOrder": 2964, "time": 0.6499802212159, "position": { "x": 7, @@ -8061,7 +8061,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 5928, + "noteOrder": 2964, "time": 0.6499802212159, "position": { "x": 6, @@ -8084,7 +8084,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 6, @@ -8107,7 +8107,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 5, @@ -8130,7 +8130,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 5958.0, + "noteOrder": 2982.0, "time": 0.6526117200872196, "position": { "x": 5, @@ -8153,7 +8153,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 4, @@ -8176,7 +8176,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 6024, + "noteOrder": 3012, "time": 0.6605062167011777, "position": { "x": 4, @@ -8199,7 +8199,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 6, @@ -8222,7 +8222,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 6120, + "noteOrder": 3060, "time": 0.6710322121864555, "position": { "x": 6, @@ -8245,7 +8245,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 7, @@ -8268,7 +8268,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 7, @@ -8291,7 +8291,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.6841897065430527, "position": { "x": 3, @@ -8314,7 +8314,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 3, @@ -8337,7 +8337,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 6456, + "noteOrder": 3228, "time": 0.7078731963849276, "position": { "x": 4, @@ -8360,7 +8360,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 4, @@ -8383,7 +8383,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 6456, + "noteOrder": 3228, "time": 0.7078731963849276, "position": { "x": 6, @@ -8406,7 +8406,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 6, @@ -8429,7 +8429,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.7157676929988859, "position": { "x": 3, @@ -8452,7 +8452,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 6552, + "noteOrder": 3276, "time": 0.7183991918702054, "position": { "x": 3, @@ -8475,7 +8475,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 6552, + "noteOrder": 3276, "time": 0.7183991918702054, "position": { "x": 4, @@ -8498,7 +8498,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 4, @@ -8521,7 +8521,7 @@ { "lineGroupId": 211, "indexInLine": 5, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 5, @@ -8544,7 +8544,7 @@ { "lineGroupId": 211, "indexInLine": 6, - "noteOrder": 6582.0, + "noteOrder": 3294.0, "time": 0.7210306907415248, "position": { "x": 5, @@ -8567,7 +8567,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 3, @@ -8590,7 +8590,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 6600, + "noteOrder": 3300, "time": 0.7236621896128442, "position": { "x": 3, @@ -8613,7 +8613,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 6600, + "noteOrder": 3300, "time": 0.7236621896128442, "position": { "x": 4, @@ -8636,7 +8636,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 4, @@ -8659,7 +8659,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 5, @@ -8682,7 +8682,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 6630.0, + "noteOrder": 3318.0, "time": 0.7262936884841635, "position": { "x": 5, @@ -8705,7 +8705,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 3, @@ -8728,7 +8728,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 6648, + "noteOrder": 3324, "time": 0.728925187355483, "position": { "x": 3, @@ -8751,7 +8751,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 6648, + "noteOrder": 3324, "time": 0.728925187355483, "position": { "x": 4, @@ -8774,7 +8774,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 4, @@ -8797,7 +8797,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 5, @@ -8820,7 +8820,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 6678.0, + "noteOrder": 3342.0, "time": 0.7315566862268025, "position": { "x": 5, @@ -8843,7 +8843,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 3, @@ -8866,7 +8866,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 6696, + "noteOrder": 3348, "time": 0.7341881850981219, "position": { "x": 3, @@ -8889,7 +8889,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 6696, + "noteOrder": 3348, "time": 0.7341881850981219, "position": { "x": 4, @@ -8912,7 +8912,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 4, @@ -8935,7 +8935,7 @@ { "lineGroupId": 214, "indexInLine": 5, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 5, @@ -8958,7 +8958,7 @@ { "lineGroupId": 214, "indexInLine": 6, - "noteOrder": 6726.0, + "noteOrder": 3366.0, "time": 0.7368196839694413, "position": { "x": 5, @@ -8981,7 +8981,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 6, @@ -9004,7 +9004,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 6792, + "noteOrder": 3396, "time": 0.7447141805833997, "position": { "x": 6, @@ -9027,7 +9027,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 4, @@ -9050,7 +9050,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 6888, + "noteOrder": 3444, "time": 0.7552401760686773, "position": { "x": 4, @@ -9073,7 +9073,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 3, @@ -9096,7 +9096,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 3, @@ -9119,7 +9119,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.7683976704252745, "position": { "x": 7, @@ -9142,7 +9142,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 7, @@ -9165,7 +9165,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 3, @@ -9188,7 +9188,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 3, @@ -9211,7 +9211,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.8315536433369409, "position": { "x": 7, @@ -9234,7 +9234,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 7, @@ -9257,7 +9257,7 @@ { "lineGroupId": 257, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.8631316297927742, "position": { "x": 7, @@ -9280,7 +9280,7 @@ { "lineGroupId": 257, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 7, @@ -9303,7 +9303,7 @@ { "lineGroupId": 259, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.8736576252780518, "position": { "x": 3, @@ -9326,7 +9326,7 @@ { "lineGroupId": 259, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 3, @@ -9349,7 +9349,7 @@ { "lineGroupId": 273, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.9157616072191629, "position": { "x": 7, @@ -9372,7 +9372,7 @@ { "lineGroupId": 273, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 7, @@ -9395,7 +9395,7 @@ { "lineGroupId": 274, "indexInLine": 1, - "noteOrder": 8376, + "noteOrder": 4188, "time": 0.9183931060904823, "position": { "x": 3, @@ -9418,7 +9418,7 @@ { "lineGroupId": 274, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 3, @@ -9441,7 +9441,7 @@ { "lineGroupId": 276, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.9262876027044405, "position": { "x": 7, @@ -9464,7 +9464,7 @@ { "lineGroupId": 276, "indexInLine": 2, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.9289191015757601, "position": { "x": 7, @@ -9487,7 +9487,7 @@ { "lineGroupId": 278, "indexInLine": 1, - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.9315506004470795, "position": { "x": 3, @@ -9510,7 +9510,7 @@ { "lineGroupId": 278, "indexInLine": 2, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.9341820993183988, "position": { "x": 3, @@ -9533,7 +9533,7 @@ { "lineGroupId": 284, "indexInLine": 1, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.947339593674996, "position": { "x": 7, @@ -9556,7 +9556,7 @@ { "lineGroupId": 284, "indexInLine": 2, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.9499710925463154, "position": { "x": 7, @@ -9579,7 +9579,7 @@ { "lineGroupId": 286, "indexInLine": 1, - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.9526025914176348, "position": { "x": 3, @@ -9602,7 +9602,7 @@ { "lineGroupId": 286, "indexInLine": 2, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.9552340902889543, "position": { "x": 3, @@ -9625,7 +9625,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 433.5, + "noteOrder": 217.5, "time": 0.0473669796837498, "position": { "x": 5, @@ -9653,7 +9653,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2497.5, + "noteOrder": 1249.5, "time": 0.2736758826172211, "position": { "x": 5, @@ -9681,7 +9681,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4153.5, + "noteOrder": 2077.5, "time": 0.455249304738262, "position": { "x": 5, @@ -9709,7 +9709,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4225.5, + "noteOrder": 2113.5, "time": 0.4631438013522203, "position": { "x": 5, @@ -9737,7 +9737,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4393.5, + "noteOrder": 2197.5, "time": 0.4815642934514563, "position": { "x": 5, @@ -9765,7 +9765,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4441.5, + "noteOrder": 2221.5, "time": 0.4868272911940952, "position": { "x": 5, @@ -9793,7 +9793,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4489.5, + "noteOrder": 2245.5, "time": 0.49209028893673407, "position": { "x": 5, @@ -9821,7 +9821,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4537.5, + "noteOrder": 2269.5, "time": 0.49735328667937295, "position": { "x": 5, @@ -9849,7 +9849,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 2305.5, "time": 0.5052477832933312, "position": { "x": 5, @@ -9877,7 +9877,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4921.5, + "noteOrder": 2461.5, "time": 0.5394572686204838, "position": { "x": 5, @@ -9905,7 +9905,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4993.5, + "noteOrder": 2497.5, "time": 0.5473517652344422, "position": { "x": 5, @@ -9933,7 +9933,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8401.5, + "noteOrder": 4201.5, "time": 0.9210246049618017, "position": { "x": 5, @@ -9961,7 +9961,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8833.5, + "noteOrder": 4417.5, "time": 0.9683915846455515, "position": { "x": 5, @@ -10002,7 +10002,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 200, + "BPM": 100, "NPS": "4.01", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a_blockless.json index 09120cbc..39ea31fc 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u30e6\u30e1\u30d6\u30ad difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 96, + "noteOrder": 48, "time": 0.010525995485277733, "position": { "x": 7, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 120, + "noteOrder": 60, "time": 0.013157494356597167, "position": { "x": 3, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 144, + "noteOrder": 72, "time": 0.0157889932279166, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 84, "time": 0.018420492099236033, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 216, + "noteOrder": 108, "time": 0.0236834898418749, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 264, + "noteOrder": 132, "time": 0.028946487584513767, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 168, "time": 0.036840984198472065, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 180, "time": 0.0394724830697915, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 3, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 7, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 324, "time": 0.0710504695256247, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 324, "time": 0.0710504695256247, "position": { "x": 6, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 852, + "noteOrder": 426, "time": 0.09341820993183989, "position": { "x": 7, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 876, + "noteOrder": 438, "time": 0.09604970880315931, "position": { "x": 3, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 3, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 828, "time": 0.18157342212104088, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 840, "time": 0.18420492099236033, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 852, "time": 0.18683641986367977, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1752, + "noteOrder": 876, "time": 0.19209941760631863, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 7, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 900, "time": 0.19736241534895752, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 4, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.2842018781024988, "position": { "x": 7, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 1308, "time": 0.2868333769738183, "position": { "x": 3, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 6, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 1332, "time": 0.29209637471645705, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2712, + "noteOrder": 1356, "time": 0.29735937245909594, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 4, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2760, + "noteOrder": 1380, "time": 0.3026223702017348, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.3105168668156931, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.32893735891492915, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.33420035665756803, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.33683185552888745, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 1548, "time": 0.3394633544002069, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 1608, "time": 0.3526208487568041, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 1620, "time": 0.3552523476281235, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 1644, "time": 0.3605153453707624, "position": { "x": 3, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 1668, "time": 0.36577834311340124, "position": { "x": 7, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 1668, "time": 0.36577834311340124, "position": { "x": 3, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.36840984198472065, "position": { "x": 3, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 1692, "time": 0.37104134085604007, "position": { "x": 7, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.37367283972735954, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 3432, + "noteOrder": 1716, "time": 0.37630433859867896, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 3480, + "noteOrder": 1740, "time": 0.38156733634131784, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.38419883521263726, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 3528, + "noteOrder": 1764, "time": 0.38683033408395673, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.39472483069791503, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 1884, "time": 0.41314532279715105, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 1908, "time": 0.41840832053978994, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3864, + "noteOrder": 1932, "time": 0.42367131828242877, "position": { "x": 3, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3912, + "noteOrder": 1956, "time": 0.42893431602506765, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 7, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 1980, "time": 0.4341973137677065, "position": { "x": 6, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.4368288126390259, "position": { "x": 4, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 4008, + "noteOrder": 2004, "time": 0.43946031151034537, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 2028, "time": 0.44472330925298426, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 4, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 6, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.4499863069956231, "position": { "x": 3, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 2052, "time": 0.4499863069956231, "position": { "x": 7, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 2076, "time": 0.455249304738262, "position": { "x": 7, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4224, + "noteOrder": 2112, "time": 0.4631438013522203, "position": { "x": 3, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 2142, "time": 0.4697225485305188, "position": { "x": 4, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4284, + "noteOrder": 2142, "time": 0.4697225485305188, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4536, + "noteOrder": 2268, "time": 0.49735328667937295, "position": { "x": 3, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4608, + "noteOrder": 2304, "time": 0.5052477832933312, "position": { "x": 7, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 2334, "time": 0.5118265304716298, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4668, + "noteOrder": 2334, "time": 0.5118265304716298, "position": { "x": 4, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.5262997742638866, "position": { "x": 7, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4824, + "noteOrder": 2412, "time": 0.528931273135206, "position": { "x": 3, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.5315627720065256, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4848, + "noteOrder": 2424, "time": 0.5315627720065256, "position": { "x": 6, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 3, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4920, + "noteOrder": 2460, "time": 0.5394572686204838, "position": { "x": 7, @@ -1943,7 +1943,7 @@ "isPlayAudio": false }, { - "noteOrder": 4992, + "noteOrder": 2496, "time": 0.5473517652344422, "position": { "x": 3, @@ -1963,7 +1963,7 @@ "isPlayAudio": false }, { - "noteOrder": 5052, + "noteOrder": 2526, "time": 0.5539305124127407, "position": { "x": 6, @@ -1983,7 +1983,7 @@ "isPlayAudio": false }, { - "noteOrder": 5052, + "noteOrder": 2526, "time": 0.5539305124127407, "position": { "x": 4, @@ -2003,7 +2003,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 4, @@ -2023,7 +2023,7 @@ "isPlayAudio": false }, { - "noteOrder": 5160, + "noteOrder": 2580, "time": 0.5657722573336782, "position": { "x": 6, @@ -2043,7 +2043,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 6, @@ -2063,7 +2063,7 @@ "isPlayAudio": false }, { - "noteOrder": 5256, + "noteOrder": 2628, "time": 0.576298252818956, "position": { "x": 4, @@ -2083,7 +2083,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.5789297516902754, "position": { "x": 7, @@ -2103,7 +2103,7 @@ "isPlayAudio": false }, { - "noteOrder": 5304, + "noteOrder": 2652, "time": 0.5815612505615948, "position": { "x": 6, @@ -2123,7 +2123,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.5841927494329141, "position": { "x": 4, @@ -2143,7 +2143,7 @@ "isPlayAudio": false }, { - "noteOrder": 5352, + "noteOrder": 2676, "time": 0.5868242483042337, "position": { "x": 3, @@ -2163,7 +2163,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.589455747175553, "position": { "x": 3, @@ -2183,7 +2183,7 @@ "isPlayAudio": false }, { - "noteOrder": 5400, + "noteOrder": 2700, "time": 0.5920872460468725, "position": { "x": 4, @@ -2203,7 +2203,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.5947187449181919, "position": { "x": 7, @@ -2223,7 +2223,7 @@ "isPlayAudio": false }, { - "noteOrder": 5448, + "noteOrder": 2724, "time": 0.5973502437895113, "position": { "x": 3, @@ -2243,7 +2243,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 6, @@ -2263,7 +2263,7 @@ "isPlayAudio": false }, { - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 4, @@ -2283,7 +2283,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 7, @@ -2303,7 +2303,7 @@ "isPlayAudio": false }, { - "noteOrder": 5688, + "noteOrder": 2844, "time": 0.6236652325027057, "position": { "x": 3, @@ -2323,7 +2323,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 6, @@ -2343,7 +2343,7 @@ "isPlayAudio": false }, { - "noteOrder": 5736, + "noteOrder": 2868, "time": 0.6289282302453446, "position": { "x": 4, @@ -2363,7 +2363,7 @@ "isPlayAudio": false }, { - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 7, @@ -2383,7 +2383,7 @@ "isPlayAudio": false }, { - "noteOrder": 5976, + "noteOrder": 2988, "time": 0.655243218958539, "position": { "x": 6, @@ -2403,7 +2403,7 @@ "isPlayAudio": false }, { - "noteOrder": 6024, + "noteOrder": 3012, "time": 0.6605062167011777, "position": { "x": 3, @@ -2423,7 +2423,7 @@ "isPlayAudio": false }, { - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 3, @@ -2443,7 +2443,7 @@ "isPlayAudio": false }, { - "noteOrder": 6072, + "noteOrder": 3036, "time": 0.6657692144438166, "position": { "x": 4, @@ -2463,7 +2463,7 @@ "isPlayAudio": false }, { - "noteOrder": 6120, + "noteOrder": 3060, "time": 0.6710322121864555, "position": { "x": 7, @@ -2483,7 +2483,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 6, @@ -2503,7 +2503,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 4, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.6947157020283304, "position": { "x": 7, @@ -2543,7 +2543,7 @@ "isPlayAudio": false }, { - "noteOrder": 6360, + "noteOrder": 3180, "time": 0.6973472008996499, "position": { "x": 7, @@ -2563,7 +2563,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.6999786997709693, "position": { "x": 3, @@ -2583,7 +2583,7 @@ "isPlayAudio": false }, { - "noteOrder": 6408, + "noteOrder": 3204, "time": 0.7026101986422887, "position": { "x": 3, @@ -2603,7 +2603,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 3, @@ -2623,7 +2623,7 @@ "isPlayAudio": false }, { - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 7, @@ -2643,7 +2643,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 3252, "time": 0.7131361941275665, "position": { "x": 3, @@ -2663,7 +2663,7 @@ "isPlayAudio": false }, { - "noteOrder": 6504, + "noteOrder": 3252, "time": 0.7131361941275665, "position": { "x": 7, @@ -2683,7 +2683,7 @@ "isPlayAudio": false }, { - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 3, @@ -2703,7 +2703,7 @@ "isPlayAudio": false }, { - "noteOrder": 6744, + "noteOrder": 3372, "time": 0.7394511828407607, "position": { "x": 4, @@ -2723,7 +2723,7 @@ "isPlayAudio": false }, { - "noteOrder": 6792, + "noteOrder": 3396, "time": 0.7447141805833997, "position": { "x": 7, @@ -2743,7 +2743,7 @@ "isPlayAudio": false }, { - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 7, @@ -2763,7 +2763,7 @@ "isPlayAudio": false }, { - "noteOrder": 6840, + "noteOrder": 3420, "time": 0.7499771783260385, "position": { "x": 6, @@ -2783,7 +2783,7 @@ "isPlayAudio": false }, { - "noteOrder": 6888, + "noteOrder": 3444, "time": 0.7552401760686773, "position": { "x": 3, @@ -2803,7 +2803,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 4, @@ -2823,7 +2823,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 6, @@ -2843,7 +2843,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.7789236659105523, "position": { "x": 3, @@ -2863,7 +2863,7 @@ "isPlayAudio": false }, { - "noteOrder": 7128, + "noteOrder": 3564, "time": 0.7815551647818717, "position": { "x": 3, @@ -2883,7 +2883,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.7841866636531912, "position": { "x": 7, @@ -2903,7 +2903,7 @@ "isPlayAudio": false }, { - "noteOrder": 7176, + "noteOrder": 3588, "time": 0.7868181625245106, "position": { "x": 7, @@ -2923,7 +2923,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 3, @@ -2943,7 +2943,7 @@ "isPlayAudio": false }, { - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 7, @@ -2963,7 +2963,7 @@ "isPlayAudio": false }, { - "noteOrder": 7224, + "noteOrder": 3612, "time": 0.7920811602671495, "position": { "x": 6, @@ -2983,7 +2983,7 @@ "isPlayAudio": false }, { - "noteOrder": 7224, + "noteOrder": 3612, "time": 0.7920811602671495, "position": { "x": 4, @@ -3003,7 +3003,7 @@ "isPlayAudio": false }, { - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 3, @@ -3023,7 +3023,7 @@ "isPlayAudio": false }, { - "noteOrder": 7272, + "noteOrder": 3636, "time": 0.7973441580097884, "position": { "x": 7, @@ -3043,7 +3043,7 @@ "isPlayAudio": false }, { - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.7999756568811077, "position": { "x": 3, @@ -3063,7 +3063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7320, + "noteOrder": 3660, "time": 0.8026071557524271, "position": { "x": 4, @@ -3083,7 +3083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.8052386546237466, "position": { "x": 6, @@ -3103,7 +3103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7368, + "noteOrder": 3684, "time": 0.807870153495066, "position": { "x": 7, @@ -3123,7 +3123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.8105016523663855, "position": { "x": 7, @@ -3143,7 +3143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7416, + "noteOrder": 3708, "time": 0.8131331512377049, "position": { "x": 6, @@ -3163,7 +3163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.8157646501090243, "position": { "x": 4, @@ -3183,7 +3183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7464, + "noteOrder": 3732, "time": 0.8183961489803437, "position": { "x": 3, @@ -3203,7 +3203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 4, @@ -3223,7 +3223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 6, @@ -3243,7 +3243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 7, @@ -3263,7 +3263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7704, + "noteOrder": 3852, "time": 0.8447111376935381, "position": { "x": 6, @@ -3283,7 +3283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 4, @@ -3303,7 +3303,7 @@ "isPlayAudio": false }, { - "noteOrder": 7752, + "noteOrder": 3876, "time": 0.8499741354361771, "position": { "x": 3, @@ -3323,7 +3323,7 @@ "isPlayAudio": false }, { - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.8526056343074965, "position": { "x": 3, @@ -3343,7 +3343,7 @@ "isPlayAudio": false }, { - "noteOrder": 7800, + "noteOrder": 3900, "time": 0.8552371331788159, "position": { "x": 4, @@ -3363,7 +3363,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 6, @@ -3383,7 +3383,7 @@ "isPlayAudio": false }, { - "noteOrder": 7848, + "noteOrder": 3924, "time": 0.8605001309214546, "position": { "x": 7, @@ -3403,7 +3403,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 6, @@ -3423,7 +3423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 4, @@ -3443,7 +3443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.8841836207633296, "position": { "x": 7, @@ -3463,7 +3463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8088, + "noteOrder": 4044, "time": 0.886815119634649, "position": { "x": 7, @@ -3483,7 +3483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.8894466185059685, "position": { "x": 3, @@ -3503,7 +3503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8136, + "noteOrder": 4068, "time": 0.8920781173772879, "position": { "x": 3, @@ -3523,7 +3523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.8947096162486073, "position": { "x": 7, @@ -3543,7 +3543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8184, + "noteOrder": 4092, "time": 0.8973411151199268, "position": { "x": 3, @@ -3563,7 +3563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.8999726139912462, "position": { "x": 6, @@ -3583,7 +3583,7 @@ "isPlayAudio": false }, { - "noteOrder": 8232, + "noteOrder": 4116, "time": 0.9026041128625657, "position": { "x": 4, @@ -3603,7 +3603,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.9052356117338851, "position": { "x": 7, @@ -3623,7 +3623,7 @@ "isPlayAudio": false }, { - "noteOrder": 8280, + "noteOrder": 4140, "time": 0.9078671106052045, "position": { "x": 7, @@ -3643,7 +3643,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.910498609476524, "position": { "x": 3, @@ -3663,7 +3663,7 @@ "isPlayAudio": false }, { - "noteOrder": 8328, + "noteOrder": 4164, "time": 0.9131301083478434, "position": { "x": 3, @@ -3683,7 +3683,7 @@ "isPlayAudio": false }, { - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.9289191015757601, "position": { "x": 6, @@ -3703,7 +3703,7 @@ "isPlayAudio": false }, { - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.9341820993183988, "position": { "x": 4, @@ -3723,7 +3723,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.9368135981897182, "position": { "x": 7, @@ -3743,7 +3743,7 @@ "isPlayAudio": false }, { - "noteOrder": 8568, + "noteOrder": 4284, "time": 0.9394450970610376, "position": { "x": 3, @@ -3763,7 +3763,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.9420765959323572, "position": { "x": 6, @@ -3783,7 +3783,7 @@ "isPlayAudio": false }, { - "noteOrder": 8616, + "noteOrder": 4308, "time": 0.9447080948036766, "position": { "x": 4, @@ -3803,7 +3803,7 @@ "isPlayAudio": false }, { - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.9499710925463154, "position": { "x": 6, @@ -3823,7 +3823,7 @@ "isPlayAudio": false }, { - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.9552340902889543, "position": { "x": 4, @@ -3843,7 +3843,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 3, @@ -3863,7 +3863,7 @@ "isPlayAudio": false }, { - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 7, @@ -3883,7 +3883,7 @@ "isPlayAudio": false }, { - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.9604970880315932, "position": { "x": 6, @@ -3903,7 +3903,7 @@ "isPlayAudio": false }, { - "noteOrder": 8760, + "noteOrder": 4380, "time": 0.9604970880315932, "position": { "x": 4, @@ -3923,7 +3923,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 7, @@ -3943,7 +3943,7 @@ "isPlayAudio": false }, { - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 3, @@ -3967,7 +3967,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 7, @@ -3990,7 +3990,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 336, + "noteOrder": 168, "time": 0.036840984198472065, "position": { "x": 7, @@ -4013,7 +4013,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 3, @@ -4036,7 +4036,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 3, @@ -4059,7 +4059,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 240, "time": 0.05262997742638867, "position": { "x": 7, @@ -4082,7 +4082,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 7, @@ -4105,7 +4105,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 6, @@ -4128,7 +4128,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 600, + "noteOrder": 300, "time": 0.06578747178298583, "position": { "x": 6, @@ -4151,7 +4151,7 @@ { "lineGroupId": 18, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 4, @@ -4174,7 +4174,7 @@ { "lineGroupId": 18, "indexInLine": 2, - "noteOrder": 600, + "noteOrder": 300, "time": 0.06578747178298583, "position": { "x": 4, @@ -4197,7 +4197,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 336, "time": 0.07368196839694413, "position": { "x": 3, @@ -4220,7 +4220,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 3, @@ -4243,7 +4243,7 @@ { "lineGroupId": 25, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 4, @@ -4266,7 +4266,7 @@ { "lineGroupId": 25, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 4, @@ -4289,7 +4289,7 @@ { "lineGroupId": 26, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 6, @@ -4312,7 +4312,7 @@ { "lineGroupId": 26, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 6, @@ -4335,7 +4335,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 912, + "noteOrder": 456, "time": 0.09999695711013847, "position": { "x": 7, @@ -4358,7 +4358,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 936, + "noteOrder": 468, "time": 0.1026284559814579, "position": { "x": 7, @@ -4381,7 +4381,7 @@ { "lineGroupId": 30, "indexInLine": 1, - "noteOrder": 936, + "noteOrder": 468, "time": 0.1026284559814579, "position": { "x": 3, @@ -4404,7 +4404,7 @@ { "lineGroupId": 30, "indexInLine": 2, - "noteOrder": 960, + "noteOrder": 480, "time": 0.10525995485277734, "position": { "x": 3, @@ -4427,7 +4427,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 492, "time": 0.10789145372409678, "position": { "x": 4, @@ -4450,7 +4450,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 510, "time": 0.11183870203107592, "position": { "x": 4, @@ -4473,7 +4473,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 492, "time": 0.10789145372409678, "position": { "x": 6, @@ -4496,7 +4496,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 510, "time": 0.11183870203107592, "position": { "x": 6, @@ -4519,7 +4519,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.11578595033805507, "position": { "x": 7, @@ -4542,7 +4542,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 1080, + "noteOrder": 540, "time": 0.1184174492093745, "position": { "x": 7, @@ -4565,7 +4565,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 1080, + "noteOrder": 540, "time": 0.1184174492093745, "position": { "x": 6, @@ -4588,7 +4588,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 6, @@ -4611,7 +4611,7 @@ { "lineGroupId": 33, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 5, @@ -4634,7 +4634,7 @@ { "lineGroupId": 33, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 558.0, "time": 0.12104894808069394, "position": { "x": 5, @@ -4657,7 +4657,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 7, @@ -4680,7 +4680,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 1128, + "noteOrder": 564, "time": 0.12368044695201337, "position": { "x": 7, @@ -4703,7 +4703,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 1128, + "noteOrder": 564, "time": 0.12368044695201337, "position": { "x": 6, @@ -4726,7 +4726,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 6, @@ -4749,7 +4749,7 @@ { "lineGroupId": 34, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 5, @@ -4772,7 +4772,7 @@ { "lineGroupId": 34, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 582.0, "time": 0.1263119458233328, "position": { "x": 5, @@ -4795,7 +4795,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 7, @@ -4818,7 +4818,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 1176, + "noteOrder": 588, "time": 0.12894344469465224, "position": { "x": 7, @@ -4841,7 +4841,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 1176, + "noteOrder": 588, "time": 0.12894344469465224, "position": { "x": 6, @@ -4864,7 +4864,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 6, @@ -4887,7 +4887,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 7, @@ -4910,7 +4910,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 1206.0, + "noteOrder": 606.0, "time": 0.13157494356597166, "position": { "x": 7, @@ -4933,7 +4933,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 3, @@ -4956,7 +4956,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1272, + "noteOrder": 636, "time": 0.13946944017992996, "position": { "x": 3, @@ -4979,7 +4979,7 @@ { "lineGroupId": 37, "indexInLine": 3, - "noteOrder": 1272, + "noteOrder": 636, "time": 0.13946944017992996, "position": { "x": 4, @@ -5002,7 +5002,7 @@ { "lineGroupId": 37, "indexInLine": 4, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 4, @@ -5025,7 +5025,7 @@ { "lineGroupId": 37, "indexInLine": 5, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 5, @@ -5048,7 +5048,7 @@ { "lineGroupId": 37, "indexInLine": 6, - "noteOrder": 1302.0, + "noteOrder": 654.0, "time": 0.1421009390512494, "position": { "x": 5, @@ -5071,7 +5071,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 1296, + "noteOrder": 648, "time": 0.1421009390512494, "position": { "x": 3, @@ -5094,7 +5094,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 1320, + "noteOrder": 660, "time": 0.14473243792256885, "position": { "x": 3, @@ -5117,7 +5117,7 @@ { "lineGroupId": 38, "indexInLine": 3, - "noteOrder": 1320, + "noteOrder": 660, "time": 0.14473243792256885, "position": { "x": 4, @@ -5140,7 +5140,7 @@ { "lineGroupId": 38, "indexInLine": 4, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 4, @@ -5163,7 +5163,7 @@ { "lineGroupId": 38, "indexInLine": 5, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 5, @@ -5186,7 +5186,7 @@ { "lineGroupId": 38, "indexInLine": 6, - "noteOrder": 1350.0, + "noteOrder": 678.0, "time": 0.14736393679388826, "position": { "x": 5, @@ -5209,7 +5209,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 3, @@ -5232,7 +5232,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 684, "time": 0.1499954356652077, "position": { "x": 3, @@ -5255,7 +5255,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 684, "time": 0.1499954356652077, "position": { "x": 4, @@ -5278,7 +5278,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 4, @@ -5301,7 +5301,7 @@ { "lineGroupId": 39, "indexInLine": 5, - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 3, @@ -5324,7 +5324,7 @@ { "lineGroupId": 39, "indexInLine": 6, - "noteOrder": 1398.0, + "noteOrder": 702.0, "time": 0.15262693453652712, "position": { "x": 3, @@ -5347,7 +5347,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.157889932279166, "position": { "x": 7, @@ -5370,7 +5370,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 7, @@ -5393,7 +5393,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.16841592776444372, "position": { "x": 3, @@ -5416,7 +5416,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 3, @@ -5439,7 +5439,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 912, "time": 0.19999391422027693, "position": { "x": 7, @@ -5462,7 +5462,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1848, + "noteOrder": 924, "time": 0.20262541309159637, "position": { "x": 7, @@ -5485,7 +5485,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1848, + "noteOrder": 924, "time": 0.20262541309159637, "position": { "x": 6, @@ -5508,7 +5508,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 6, @@ -5531,7 +5531,7 @@ { "lineGroupId": 53, "indexInLine": 5, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 5, @@ -5554,7 +5554,7 @@ { "lineGroupId": 53, "indexInLine": 6, - "noteOrder": 1878.0, + "noteOrder": 942.0, "time": 0.2052569119629158, "position": { "x": 5, @@ -5577,7 +5577,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 7, @@ -5600,7 +5600,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1896, + "noteOrder": 948, "time": 0.20788841083423523, "position": { "x": 7, @@ -5623,7 +5623,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1896, + "noteOrder": 948, "time": 0.20788841083423523, "position": { "x": 6, @@ -5646,7 +5646,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 6, @@ -5669,7 +5669,7 @@ { "lineGroupId": 54, "indexInLine": 5, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 5, @@ -5692,7 +5692,7 @@ { "lineGroupId": 54, "indexInLine": 6, - "noteOrder": 1926.0, + "noteOrder": 966.0, "time": 0.21051990970555468, "position": { "x": 5, @@ -5715,7 +5715,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 7, @@ -5738,7 +5738,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1944, + "noteOrder": 972, "time": 0.21315140857687412, "position": { "x": 7, @@ -5761,7 +5761,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1944, + "noteOrder": 972, "time": 0.21315140857687412, "position": { "x": 6, @@ -5784,7 +5784,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 6, @@ -5807,7 +5807,7 @@ { "lineGroupId": 55, "indexInLine": 5, - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 7, @@ -5830,7 +5830,7 @@ { "lineGroupId": 55, "indexInLine": 6, - "noteOrder": 1974.0, + "noteOrder": 990.0, "time": 0.21578290744819356, "position": { "x": 7, @@ -5853,7 +5853,7 @@ { "lineGroupId": 57, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 6, @@ -5876,7 +5876,7 @@ { "lineGroupId": 57, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 1044, "time": 0.22894040180479072, "position": { "x": 6, @@ -5899,7 +5899,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 4, @@ -5922,7 +5922,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 2088, + "noteOrder": 1044, "time": 0.22894040180479072, "position": { "x": 4, @@ -5945,7 +5945,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 3, @@ -5968,7 +5968,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 3, @@ -5991,7 +5991,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.24209789616138788, "position": { "x": 7, @@ -6014,7 +6014,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 7, @@ -6037,7 +6037,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 3, @@ -6060,7 +6060,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 2328, + "noteOrder": 1164, "time": 0.25525539051798507, "position": { "x": 3, @@ -6083,7 +6083,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 2328, + "noteOrder": 1164, "time": 0.25525539051798507, "position": { "x": 4, @@ -6106,7 +6106,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 4, @@ -6129,7 +6129,7 @@ { "lineGroupId": 63, "indexInLine": 5, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 5, @@ -6152,7 +6152,7 @@ { "lineGroupId": 63, "indexInLine": 6, - "noteOrder": 2358.0, + "noteOrder": 1182.0, "time": 0.2578868893893045, "position": { "x": 5, @@ -6175,7 +6175,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 3, @@ -6198,7 +6198,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 2376, + "noteOrder": 1188, "time": 0.2605183882606239, "position": { "x": 3, @@ -6221,7 +6221,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 2376, + "noteOrder": 1188, "time": 0.2605183882606239, "position": { "x": 4, @@ -6244,7 +6244,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 4, @@ -6267,7 +6267,7 @@ { "lineGroupId": 64, "indexInLine": 5, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 5, @@ -6290,7 +6290,7 @@ { "lineGroupId": 64, "indexInLine": 6, - "noteOrder": 2406.0, + "noteOrder": 1206.0, "time": 0.2631498871319433, "position": { "x": 5, @@ -6313,7 +6313,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 3, @@ -6336,7 +6336,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.2657813860032628, "position": { "x": 3, @@ -6359,7 +6359,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 2424, + "noteOrder": 1212, "time": 0.2657813860032628, "position": { "x": 4, @@ -6382,7 +6382,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 4, @@ -6405,7 +6405,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 3, @@ -6428,7 +6428,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 3, @@ -6451,7 +6451,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 7, @@ -6474,7 +6474,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 7, @@ -6497,7 +6497,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.2947278735877765, "position": { "x": 7, @@ -6520,7 +6520,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 7, @@ -6543,7 +6543,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 3, @@ -6566,7 +6566,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2832, + "noteOrder": 1416, "time": 0.3105168668156931, "position": { "x": 3, @@ -6589,7 +6589,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 7, @@ -6612,7 +6612,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 7, @@ -6635,7 +6635,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.3263058600436098, "position": { "x": 3, @@ -6658,7 +6658,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 1500, "time": 0.32893735891492915, "position": { "x": 3, @@ -6681,7 +6681,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 7, @@ -6704,7 +6704,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 1524, "time": 0.33420035665756803, "position": { "x": 7, @@ -6727,7 +6727,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 6, @@ -6750,7 +6750,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 1572, "time": 0.34472635214284575, "position": { "x": 6, @@ -6773,7 +6773,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 4, @@ -6796,7 +6796,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 3144, + "noteOrder": 1572, "time": 0.34472635214284575, "position": { "x": 4, @@ -6819,7 +6819,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 7, @@ -6842,7 +6842,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 1596, "time": 0.34998934988548464, "position": { "x": 7, @@ -6865,7 +6865,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 3, @@ -6888,7 +6888,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 1596, "time": 0.34998934988548464, "position": { "x": 3, @@ -6911,7 +6911,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.3789358374699984, "position": { "x": 3, @@ -6934,7 +6934,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 3, @@ -6957,7 +6957,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 7, @@ -6980,7 +6980,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 3600, + "noteOrder": 1800, "time": 0.39472483069791503, "position": { "x": 7, @@ -7003,7 +7003,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 3, @@ -7026,7 +7026,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 3, @@ -7049,7 +7049,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.4105138239258316, "position": { "x": 7, @@ -7072,7 +7072,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 1884, "time": 0.41314532279715105, "position": { "x": 7, @@ -7095,7 +7095,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 3, @@ -7118,7 +7118,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 1908, "time": 0.41840832053978994, "position": { "x": 3, @@ -7141,7 +7141,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 3, @@ -7164,7 +7164,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.4815642934514563, "position": { "x": 3, @@ -7187,7 +7187,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 7, @@ -7210,7 +7210,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 4392, + "noteOrder": 2196, "time": 0.4815642934514563, "position": { "x": 7, @@ -7233,7 +7233,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 3, @@ -7256,7 +7256,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 2364, "time": 0.5184052776499284, "position": { "x": 3, @@ -7279,7 +7279,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 7, @@ -7302,7 +7302,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 4728, + "noteOrder": 2364, "time": 0.5184052776499284, "position": { "x": 7, @@ -7325,7 +7325,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 4, @@ -7348,7 +7348,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 2388, "time": 0.5236682753925672, "position": { "x": 4, @@ -7371,7 +7371,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 6, @@ -7394,7 +7394,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 4776, + "noteOrder": 2388, "time": 0.5236682753925672, "position": { "x": 6, @@ -7417,7 +7417,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.5578777607197198, "position": { "x": 7, @@ -7440,7 +7440,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 5160, + "noteOrder": 2580, "time": 0.5657722573336782, "position": { "x": 7, @@ -7463,7 +7463,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.5684037562049976, "position": { "x": 3, @@ -7486,7 +7486,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 5256, + "noteOrder": 2628, "time": 0.576298252818956, "position": { "x": 3, @@ -7509,7 +7509,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.5999817426608308, "position": { "x": 7, @@ -7532,7 +7532,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 7, @@ -7555,7 +7555,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 3, @@ -7578,7 +7578,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 3, @@ -7601,7 +7601,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.631559729116664, "position": { "x": 7, @@ -7624,7 +7624,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 5784, + "noteOrder": 2892, "time": 0.6341912279879834, "position": { "x": 7, @@ -7647,7 +7647,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 5784, + "noteOrder": 2892, "time": 0.6341912279879834, "position": { "x": 6, @@ -7670,7 +7670,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 6, @@ -7693,7 +7693,7 @@ { "lineGroupId": 185, "indexInLine": 5, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 5, @@ -7716,7 +7716,7 @@ { "lineGroupId": 185, "indexInLine": 6, - "noteOrder": 5814.0, + "noteOrder": 2910.0, "time": 0.6368227268593029, "position": { "x": 5, @@ -7739,7 +7739,7 @@ { "lineGroupId": 186, "indexInLine": 1, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 7, @@ -7762,7 +7762,7 @@ { "lineGroupId": 186, "indexInLine": 2, - "noteOrder": 5832, + "noteOrder": 2916, "time": 0.6394542257306224, "position": { "x": 7, @@ -7785,7 +7785,7 @@ { "lineGroupId": 186, "indexInLine": 3, - "noteOrder": 5832, + "noteOrder": 2916, "time": 0.6394542257306224, "position": { "x": 6, @@ -7808,7 +7808,7 @@ { "lineGroupId": 186, "indexInLine": 4, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 6, @@ -7831,7 +7831,7 @@ { "lineGroupId": 186, "indexInLine": 5, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 5, @@ -7854,7 +7854,7 @@ { "lineGroupId": 186, "indexInLine": 6, - "noteOrder": 5862.0, + "noteOrder": 2934.0, "time": 0.6420857246019418, "position": { "x": 5, @@ -7877,7 +7877,7 @@ { "lineGroupId": 187, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 7, @@ -7900,7 +7900,7 @@ { "lineGroupId": 187, "indexInLine": 2, - "noteOrder": 5880, + "noteOrder": 2940, "time": 0.6447172234732612, "position": { "x": 7, @@ -7923,7 +7923,7 @@ { "lineGroupId": 187, "indexInLine": 3, - "noteOrder": 5880, + "noteOrder": 2940, "time": 0.6447172234732612, "position": { "x": 6, @@ -7946,7 +7946,7 @@ { "lineGroupId": 187, "indexInLine": 4, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 6, @@ -7969,7 +7969,7 @@ { "lineGroupId": 187, "indexInLine": 5, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 5, @@ -7992,7 +7992,7 @@ { "lineGroupId": 187, "indexInLine": 6, - "noteOrder": 5910.0, + "noteOrder": 2958.0, "time": 0.6473487223445806, "position": { "x": 5, @@ -8015,7 +8015,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 7, @@ -8038,7 +8038,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 5928, + "noteOrder": 2964, "time": 0.6499802212159, "position": { "x": 7, @@ -8061,7 +8061,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 5928, + "noteOrder": 2964, "time": 0.6499802212159, "position": { "x": 6, @@ -8084,7 +8084,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 6, @@ -8107,7 +8107,7 @@ { "lineGroupId": 188, "indexInLine": 5, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 5, @@ -8130,7 +8130,7 @@ { "lineGroupId": 188, "indexInLine": 6, - "noteOrder": 5958.0, + "noteOrder": 2982.0, "time": 0.6526117200872196, "position": { "x": 5, @@ -8153,7 +8153,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 4, @@ -8176,7 +8176,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 6024, + "noteOrder": 3012, "time": 0.6605062167011777, "position": { "x": 4, @@ -8199,7 +8199,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 6, @@ -8222,7 +8222,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 6120, + "noteOrder": 3060, "time": 0.6710322121864555, "position": { "x": 6, @@ -8245,7 +8245,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 7, @@ -8268,7 +8268,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 7, @@ -8291,7 +8291,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.6841897065430527, "position": { "x": 3, @@ -8314,7 +8314,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 3, @@ -8337,7 +8337,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 6456, + "noteOrder": 3228, "time": 0.7078731963849276, "position": { "x": 4, @@ -8360,7 +8360,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 4, @@ -8383,7 +8383,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 6456, + "noteOrder": 3228, "time": 0.7078731963849276, "position": { "x": 6, @@ -8406,7 +8406,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 6, @@ -8429,7 +8429,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.7157676929988859, "position": { "x": 3, @@ -8452,7 +8452,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 6552, + "noteOrder": 3276, "time": 0.7183991918702054, "position": { "x": 3, @@ -8475,7 +8475,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 6552, + "noteOrder": 3276, "time": 0.7183991918702054, "position": { "x": 4, @@ -8498,7 +8498,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 4, @@ -8521,7 +8521,7 @@ { "lineGroupId": 211, "indexInLine": 5, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 5, @@ -8544,7 +8544,7 @@ { "lineGroupId": 211, "indexInLine": 6, - "noteOrder": 6582.0, + "noteOrder": 3294.0, "time": 0.7210306907415248, "position": { "x": 5, @@ -8567,7 +8567,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 3, @@ -8590,7 +8590,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 6600, + "noteOrder": 3300, "time": 0.7236621896128442, "position": { "x": 3, @@ -8613,7 +8613,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 6600, + "noteOrder": 3300, "time": 0.7236621896128442, "position": { "x": 4, @@ -8636,7 +8636,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 4, @@ -8659,7 +8659,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 5, @@ -8682,7 +8682,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 6630.0, + "noteOrder": 3318.0, "time": 0.7262936884841635, "position": { "x": 5, @@ -8705,7 +8705,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 3, @@ -8728,7 +8728,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 6648, + "noteOrder": 3324, "time": 0.728925187355483, "position": { "x": 3, @@ -8751,7 +8751,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 6648, + "noteOrder": 3324, "time": 0.728925187355483, "position": { "x": 4, @@ -8774,7 +8774,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 4, @@ -8797,7 +8797,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 5, @@ -8820,7 +8820,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 6678.0, + "noteOrder": 3342.0, "time": 0.7315566862268025, "position": { "x": 5, @@ -8843,7 +8843,7 @@ { "lineGroupId": 214, "indexInLine": 1, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 3, @@ -8866,7 +8866,7 @@ { "lineGroupId": 214, "indexInLine": 2, - "noteOrder": 6696, + "noteOrder": 3348, "time": 0.7341881850981219, "position": { "x": 3, @@ -8889,7 +8889,7 @@ { "lineGroupId": 214, "indexInLine": 3, - "noteOrder": 6696, + "noteOrder": 3348, "time": 0.7341881850981219, "position": { "x": 4, @@ -8912,7 +8912,7 @@ { "lineGroupId": 214, "indexInLine": 4, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 4, @@ -8935,7 +8935,7 @@ { "lineGroupId": 214, "indexInLine": 5, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 5, @@ -8958,7 +8958,7 @@ { "lineGroupId": 214, "indexInLine": 6, - "noteOrder": 6726.0, + "noteOrder": 3366.0, "time": 0.7368196839694413, "position": { "x": 5, @@ -8981,7 +8981,7 @@ { "lineGroupId": 217, "indexInLine": 1, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 6, @@ -9004,7 +9004,7 @@ { "lineGroupId": 217, "indexInLine": 2, - "noteOrder": 6792, + "noteOrder": 3396, "time": 0.7447141805833997, "position": { "x": 6, @@ -9027,7 +9027,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 4, @@ -9050,7 +9050,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 6888, + "noteOrder": 3444, "time": 0.7552401760686773, "position": { "x": 4, @@ -9073,7 +9073,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 3, @@ -9096,7 +9096,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 3, @@ -9119,7 +9119,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.7683976704252745, "position": { "x": 7, @@ -9142,7 +9142,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 7, @@ -9165,7 +9165,7 @@ { "lineGroupId": 245, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 3, @@ -9188,7 +9188,7 @@ { "lineGroupId": 245, "indexInLine": 2, - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 3, @@ -9211,7 +9211,7 @@ { "lineGroupId": 247, "indexInLine": 1, - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.8315536433369409, "position": { "x": 7, @@ -9234,7 +9234,7 @@ { "lineGroupId": 247, "indexInLine": 2, - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 7, @@ -9257,7 +9257,7 @@ { "lineGroupId": 257, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.8631316297927742, "position": { "x": 7, @@ -9280,7 +9280,7 @@ { "lineGroupId": 257, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 7, @@ -9303,7 +9303,7 @@ { "lineGroupId": 259, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.8736576252780518, "position": { "x": 3, @@ -9326,7 +9326,7 @@ { "lineGroupId": 259, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 3, @@ -9349,7 +9349,7 @@ { "lineGroupId": 273, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.9157616072191629, "position": { "x": 7, @@ -9372,7 +9372,7 @@ { "lineGroupId": 273, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 7, @@ -9395,7 +9395,7 @@ { "lineGroupId": 274, "indexInLine": 1, - "noteOrder": 8376, + "noteOrder": 4188, "time": 0.9183931060904823, "position": { "x": 3, @@ -9418,7 +9418,7 @@ { "lineGroupId": 274, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 3, @@ -9441,7 +9441,7 @@ { "lineGroupId": 276, "indexInLine": 1, - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.9262876027044405, "position": { "x": 7, @@ -9464,7 +9464,7 @@ { "lineGroupId": 276, "indexInLine": 2, - "noteOrder": 8472, + "noteOrder": 4236, "time": 0.9289191015757601, "position": { "x": 7, @@ -9487,7 +9487,7 @@ { "lineGroupId": 278, "indexInLine": 1, - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.9315506004470795, "position": { "x": 3, @@ -9510,7 +9510,7 @@ { "lineGroupId": 278, "indexInLine": 2, - "noteOrder": 8520, + "noteOrder": 4260, "time": 0.9341820993183988, "position": { "x": 3, @@ -9533,7 +9533,7 @@ { "lineGroupId": 284, "indexInLine": 1, - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.947339593674996, "position": { "x": 7, @@ -9556,7 +9556,7 @@ { "lineGroupId": 284, "indexInLine": 2, - "noteOrder": 8664, + "noteOrder": 4332, "time": 0.9499710925463154, "position": { "x": 7, @@ -9579,7 +9579,7 @@ { "lineGroupId": 286, "indexInLine": 1, - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.9526025914176348, "position": { "x": 3, @@ -9602,7 +9602,7 @@ { "lineGroupId": 286, "indexInLine": 2, - "noteOrder": 8712, + "noteOrder": 4356, "time": 0.9552340902889543, "position": { "x": 3, @@ -9637,7 +9637,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 200, + "BPM": 100, "NPS": "4.01", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b.json index 27d19eae..7df341a0 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u30e6\u30e1\u30d6\u30ad difficulty_1b", "sphereNodes": [ { - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 912, "time": 0.19999391422027693, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.36840984198472065, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.37367283972735954, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.3789358374699984, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.38419883521263726, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.4789327945801369, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.4894587900654146, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.5789297516902754, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.5841927494329141, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.589455747175553, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.5947187449181919, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.5999817426608308, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.6947157020283304, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.6999786997709693, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.7789236659105523, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.7841866636531912, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.8052386546237466, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.8105016523663855, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.8157646501090243, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.8315536433369409, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 8, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.8841836207633296, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.8894466185059685, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.8947096162486073, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.8999726139912462, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.9052356117338851, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.910498609476524, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.9262876027044405, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.9315506004470795, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.9368135981897182, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.9420765959323572, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.947339593674996, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.9526025914176348, "position": { "x": 3, @@ -1587,7 +1587,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 48, "time": 0.010525995485277733, "position": { "x": 7, @@ -1610,7 +1610,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 7, @@ -1633,7 +1633,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 3, @@ -1656,7 +1656,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 3, @@ -1679,7 +1679,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 7, @@ -1702,7 +1702,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 7, @@ -1725,7 +1725,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 3, @@ -1748,7 +1748,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 3, @@ -1771,7 +1771,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 7, @@ -1794,7 +1794,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 7, @@ -1817,7 +1817,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 240, "time": 0.05262997742638867, "position": { "x": 3, @@ -1840,7 +1840,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 3, @@ -1863,7 +1863,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 7, @@ -1886,7 +1886,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 7, @@ -1909,7 +1909,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 336, "time": 0.07368196839694413, "position": { "x": 3, @@ -1932,7 +1932,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 3, @@ -1955,7 +1955,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 7, @@ -1978,7 +1978,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 7, @@ -2001,7 +2001,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 1008, + "noteOrder": 504, "time": 0.1105229525954162, "position": { "x": 6, @@ -2024,7 +2024,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.11578595033805507, "position": { "x": 3, @@ -2047,7 +2047,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 3, @@ -2070,7 +2070,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 7, @@ -2093,7 +2093,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 7, @@ -2116,7 +2116,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 3, @@ -2139,7 +2139,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 3, @@ -2162,7 +2162,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 7, @@ -2185,7 +2185,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 7, @@ -2208,7 +2208,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.157889932279166, "position": { "x": 7, @@ -2231,7 +2231,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 7, @@ -2254,7 +2254,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.16841592776444372, "position": { "x": 3, @@ -2277,7 +2277,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 3, @@ -2300,7 +2300,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 7, @@ -2323,7 +2323,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 7, @@ -2346,7 +2346,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 3, @@ -2369,7 +2369,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 3, @@ -2392,7 +2392,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 3, @@ -2415,7 +2415,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 3, @@ -2438,7 +2438,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 7, @@ -2461,7 +2461,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 7, @@ -2484,7 +2484,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.24209789616138788, "position": { "x": 7, @@ -2507,7 +2507,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 7, @@ -2530,7 +2530,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 6, @@ -2553,7 +2553,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 6, @@ -2576,7 +2576,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 5, @@ -2599,7 +2599,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 2310.0, + "noteOrder": 1158.0, "time": 0.2526238916466656, "position": { "x": 5, @@ -2622,7 +2622,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 7, @@ -2645,7 +2645,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 7, @@ -2668,7 +2668,7 @@ { "lineGroupId": 36, "indexInLine": 3, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 6, @@ -2691,7 +2691,7 @@ { "lineGroupId": 36, "indexInLine": 4, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 6, @@ -2714,7 +2714,7 @@ { "lineGroupId": 36, "indexInLine": 5, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 5, @@ -2737,7 +2737,7 @@ { "lineGroupId": 36, "indexInLine": 6, - "noteOrder": 2406.0, + "noteOrder": 1206.0, "time": 0.2631498871319433, "position": { "x": 5, @@ -2760,7 +2760,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 7, @@ -2783,7 +2783,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 7, @@ -2806,7 +2806,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 3, @@ -2829,7 +2829,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 3, @@ -2852,7 +2852,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.2842018781024988, "position": { "x": 7, @@ -2875,7 +2875,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 7, @@ -2898,7 +2898,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.2947278735877765, "position": { "x": 3, @@ -2921,7 +2921,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 3, @@ -2944,7 +2944,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 3, @@ -2967,7 +2967,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 3, @@ -2990,7 +2990,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 7, @@ -3013,7 +3013,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 7, @@ -3036,7 +3036,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.3263058600436098, "position": { "x": 3, @@ -3059,7 +3059,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 3, @@ -3082,7 +3082,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.33683185552888745, "position": { "x": 7, @@ -3105,7 +3105,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 7, @@ -3128,7 +3128,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 7, @@ -3151,7 +3151,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 7, @@ -3174,7 +3174,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 3, @@ -3197,7 +3197,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 3, @@ -3220,7 +3220,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 7, @@ -3243,7 +3243,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 7, @@ -3266,7 +3266,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 3, @@ -3289,7 +3289,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 3, @@ -3312,7 +3312,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.4105138239258316, "position": { "x": 3, @@ -3335,7 +3335,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 3, @@ -3358,7 +3358,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 4, @@ -3381,7 +3381,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 4, @@ -3404,7 +3404,7 @@ { "lineGroupId": 66, "indexInLine": 5, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 5, @@ -3427,7 +3427,7 @@ { "lineGroupId": 66, "indexInLine": 6, - "noteOrder": 3846.0, + "noteOrder": 1926.0, "time": 0.42103981941110935, "position": { "x": 5, @@ -3450,7 +3450,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 3, @@ -3473,7 +3473,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 3, @@ -3496,7 +3496,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 4, @@ -3519,7 +3519,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 4, @@ -3542,7 +3542,7 @@ { "lineGroupId": 67, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 5, @@ -3565,7 +3565,7 @@ { "lineGroupId": 67, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 1974.0, "time": 0.4315658148963871, "position": { "x": 5, @@ -3588,7 +3588,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 3, @@ -3611,7 +3611,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 3, @@ -3634,7 +3634,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.4368288126390259, "position": { "x": 7, @@ -3657,7 +3657,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 7, @@ -3680,7 +3680,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 7, @@ -3703,7 +3703,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.4789327945801369, "position": { "x": 7, @@ -3726,7 +3726,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.48419579232277576, "position": { "x": 3, @@ -3749,7 +3749,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.4894587900654146, "position": { "x": 3, @@ -3772,7 +3772,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 3, @@ -3795,7 +3795,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 3, @@ -3818,7 +3818,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 7, @@ -3841,7 +3841,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.5262997742638866, "position": { "x": 7, @@ -3864,7 +3864,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 4824, + "noteOrder": 2412, "time": 0.528931273135206, "position": { "x": 3, @@ -3887,7 +3887,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 3, @@ -3910,7 +3910,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.5578777607197198, "position": { "x": 3, @@ -3933,7 +3933,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 3, @@ -3956,7 +3956,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.5684037562049976, "position": { "x": 7, @@ -3979,7 +3979,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 7, @@ -4002,7 +4002,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 4, @@ -4025,7 +4025,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 4, @@ -4048,7 +4048,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 6, @@ -4071,7 +4071,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 6, @@ -4094,7 +4094,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.631559729116664, "position": { "x": 3, @@ -4117,7 +4117,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 3, @@ -4140,7 +4140,7 @@ { "lineGroupId": 104, "indexInLine": 3, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 4, @@ -4163,7 +4163,7 @@ { "lineGroupId": 104, "indexInLine": 4, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 4, @@ -4186,7 +4186,7 @@ { "lineGroupId": 104, "indexInLine": 5, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 5, @@ -4209,7 +4209,7 @@ { "lineGroupId": 104, "indexInLine": 6, - "noteOrder": 5862.0, + "noteOrder": 2934.0, "time": 0.6420857246019418, "position": { "x": 5, @@ -4232,7 +4232,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 3, @@ -4255,7 +4255,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 3, @@ -4278,7 +4278,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 4, @@ -4301,7 +4301,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 4, @@ -4324,7 +4324,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 5, @@ -4347,7 +4347,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 5958.0, + "noteOrder": 2982.0, "time": 0.6526117200872196, "position": { "x": 5, @@ -4370,7 +4370,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 3, @@ -4393,7 +4393,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 3, @@ -4416,7 +4416,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 4, @@ -4439,7 +4439,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 4, @@ -4462,7 +4462,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 5, @@ -4485,7 +4485,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 6054.0, + "noteOrder": 3030.0, "time": 0.6631377155724971, "position": { "x": 5, @@ -4508,7 +4508,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 3, @@ -4531,7 +4531,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 3, @@ -4554,7 +4554,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 4, @@ -4577,7 +4577,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 4, @@ -4600,7 +4600,7 @@ { "lineGroupId": 107, "indexInLine": 5, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 5, @@ -4623,7 +4623,7 @@ { "lineGroupId": 107, "indexInLine": 6, - "noteOrder": 6150.0, + "noteOrder": 3078.0, "time": 0.6736637110577749, "position": { "x": 5, @@ -4646,7 +4646,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 3, @@ -4669,7 +4669,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 3, @@ -4692,7 +4692,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.6841897065430527, "position": { "x": 7, @@ -4715,7 +4715,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 7, @@ -4738,7 +4738,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 4, @@ -4761,7 +4761,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 4, @@ -4784,7 +4784,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 6, @@ -4807,7 +4807,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 6, @@ -4830,7 +4830,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.7157676929988859, "position": { "x": 7, @@ -4853,7 +4853,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 7, @@ -4876,7 +4876,7 @@ { "lineGroupId": 117, "indexInLine": 3, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 6, @@ -4899,7 +4899,7 @@ { "lineGroupId": 117, "indexInLine": 4, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 6, @@ -4922,7 +4922,7 @@ { "lineGroupId": 117, "indexInLine": 5, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 5, @@ -4945,7 +4945,7 @@ { "lineGroupId": 117, "indexInLine": 6, - "noteOrder": 6630.0, + "noteOrder": 3318.0, "time": 0.7262936884841635, "position": { "x": 5, @@ -4968,7 +4968,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 7, @@ -4991,7 +4991,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 7, @@ -5014,7 +5014,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 6, @@ -5037,7 +5037,7 @@ { "lineGroupId": 118, "indexInLine": 4, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 6, @@ -5060,7 +5060,7 @@ { "lineGroupId": 118, "indexInLine": 5, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 5, @@ -5083,7 +5083,7 @@ { "lineGroupId": 118, "indexInLine": 6, - "noteOrder": 6726.0, + "noteOrder": 3366.0, "time": 0.7368196839694413, "position": { "x": 5, @@ -5106,7 +5106,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 7, @@ -5129,7 +5129,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 7, @@ -5152,7 +5152,7 @@ { "lineGroupId": 119, "indexInLine": 3, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 6, @@ -5175,7 +5175,7 @@ { "lineGroupId": 119, "indexInLine": 4, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 6, @@ -5198,7 +5198,7 @@ { "lineGroupId": 119, "indexInLine": 5, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 5, @@ -5221,7 +5221,7 @@ { "lineGroupId": 119, "indexInLine": 6, - "noteOrder": 6822.0, + "noteOrder": 3414.0, "time": 0.7473456794547191, "position": { "x": 5, @@ -5244,7 +5244,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 7, @@ -5267,7 +5267,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 7, @@ -5290,7 +5290,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 6, @@ -5313,7 +5313,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 6, @@ -5336,7 +5336,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 5, @@ -5359,7 +5359,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 6918.0, + "noteOrder": 3462.0, "time": 0.7578716749399969, "position": { "x": 5, @@ -5382,7 +5382,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 7, @@ -5405,7 +5405,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 7, @@ -5428,7 +5428,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.7683976704252745, "position": { "x": 3, @@ -5451,7 +5451,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 3, @@ -5474,7 +5474,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 6, @@ -5497,7 +5497,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 6, @@ -5520,7 +5520,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 4, @@ -5543,7 +5543,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 4, @@ -5566,7 +5566,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.7999756568811077, "position": { "x": 3, @@ -5589,7 +5589,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 3, @@ -5612,7 +5612,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 7, @@ -5635,7 +5635,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 7, @@ -5658,7 +5658,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 3, @@ -5681,7 +5681,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 3, @@ -5704,7 +5704,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.8526056343074965, "position": { "x": 7, @@ -5727,7 +5727,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 7, @@ -5750,7 +5750,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.8631316297927742, "position": { "x": 4, @@ -5773,7 +5773,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 4, @@ -5796,7 +5796,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.8736576252780518, "position": { "x": 6, @@ -5819,7 +5819,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 6, @@ -5842,7 +5842,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.9157616072191629, "position": { "x": 4, @@ -5865,7 +5865,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 4, @@ -5888,7 +5888,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 4, @@ -5911,7 +5911,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 4, @@ -5934,7 +5934,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 6, @@ -5957,7 +5957,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 6, @@ -5980,7 +5980,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 2497.5, + "noteOrder": 1249.5, "time": 0.2736758826172211, "position": { "x": 5, @@ -6008,7 +6008,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4033.5, + "noteOrder": 2017.5, "time": 0.4420918103816648, "position": { "x": 5, @@ -6036,7 +6036,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4153.5, + "noteOrder": 2077.5, "time": 0.455249304738262, "position": { "x": 5, @@ -6064,7 +6064,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4225.5, + "noteOrder": 2113.5, "time": 0.4631438013522203, "position": { "x": 5, @@ -6092,7 +6092,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4537.5, + "noteOrder": 2269.5, "time": 0.49735328667937295, "position": { "x": 5, @@ -6120,7 +6120,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 2305.5, "time": 0.5052477832933312, "position": { "x": 5, @@ -6148,7 +6148,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4921.5, + "noteOrder": 2461.5, "time": 0.5394572686204838, "position": { "x": 5, @@ -6176,7 +6176,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4993.5, + "noteOrder": 2497.5, "time": 0.5473517652344422, "position": { "x": 5, @@ -6204,7 +6204,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 5628.0, + "noteOrder": 2820.0, "time": 0.6157707358887474, "position": { "x": 5, @@ -6232,7 +6232,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 6481.5, + "noteOrder": 3241.5, "time": 0.710504695256247, "position": { "x": 5, @@ -6260,7 +6260,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 7249.5, + "noteOrder": 3625.5, "time": 0.7947126591384688, "position": { "x": 5, @@ -6288,7 +6288,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8401.5, + "noteOrder": 4201.5, "time": 0.9210246049618017, "position": { "x": 5, @@ -6316,7 +6316,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8785.5, + "noteOrder": 4393.5, "time": 0.9631285869029126, "position": { "x": 5, @@ -6344,7 +6344,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 8833.5, + "noteOrder": 4417.5, "time": 0.9683915846455515, "position": { "x": 5, @@ -6385,7 +6385,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 200, + "BPM": 100, "NPS": "2.49", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b_blockless.json index cad4928a..b61725e7 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u30e6\u30e1\u30d6\u30ad difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 1392, + "noteOrder": 696, "time": 0.15262693453652712, "position": { "x": 6, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 6, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 4, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 4, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 888, "time": 0.19473091647763807, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 1824, + "noteOrder": 912, "time": 0.19999391422027693, "position": { "x": 3, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 936, "time": 0.2052569119629158, "position": { "x": 4, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 960, "time": 0.21051990970555468, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 984, "time": 0.21578290744819356, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 6, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 1080, "time": 0.236834898418749, "position": { "x": 4, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 1272, "time": 0.2789388803598599, "position": { "x": 6, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 6, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 4, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 2928, + "noteOrder": 1464, "time": 0.3210428623009709, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 4, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 1656, "time": 0.36314684424208177, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 1680, "time": 0.36840984198472065, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 1704, "time": 0.37367283972735954, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3456, + "noteOrder": 1728, "time": 0.3789358374699984, "position": { "x": 3, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 1752, "time": 0.38419883521263726, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 1848, "time": 0.40525082618319275, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 2040, "time": 0.44735480812430367, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.4789327945801369, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.4894587900654146, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 5280, + "noteOrder": 2640, "time": 0.5789297516902754, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 5328, + "noteOrder": 2664, "time": 0.5841927494329141, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 5376, + "noteOrder": 2688, "time": 0.589455747175553, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 5424, + "noteOrder": 2712, "time": 0.5947187449181919, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 5472, + "noteOrder": 2736, "time": 0.5999817426608308, "position": { "x": 3, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 5520, + "noteOrder": 2760, "time": 0.6052447404034696, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 7, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 5664, + "noteOrder": 2832, "time": 0.6210337336313863, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 6, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 5712, + "noteOrder": 2856, "time": 0.6262967313740252, "position": { "x": 4, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 4, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 6, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 6336, + "noteOrder": 3168, "time": 0.6947157020283304, "position": { "x": 3, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 6384, + "noteOrder": 3192, "time": 0.6999786997709693, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 6, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 4, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 7104, + "noteOrder": 3552, "time": 0.7789236659105523, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 7152, + "noteOrder": 3576, "time": 0.7841866636531912, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 7344, + "noteOrder": 3672, "time": 0.8052386546237466, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 7392, + "noteOrder": 3696, "time": 0.8105016523663855, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 7440, + "noteOrder": 3720, "time": 0.8157646501090243, "position": { "x": 5, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 7536, + "noteOrder": 3768, "time": 0.8262906455943021, "position": { "x": 5, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 7584, + "noteOrder": 3792, "time": 0.8315536433369409, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 7632, + "noteOrder": 3816, "time": 0.8368166410795799, "position": { "x": 5, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 4, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 6, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 2, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 8, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 8064, + "noteOrder": 4032, "time": 0.8841836207633296, "position": { "x": 3, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 8112, + "noteOrder": 4056, "time": 0.8894466185059685, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 8160, + "noteOrder": 4080, "time": 0.8947096162486073, "position": { "x": 7, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 8208, + "noteOrder": 4104, "time": 0.8999726139912462, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 8256, + "noteOrder": 4128, "time": 0.9052356117338851, "position": { "x": 3, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 8304, + "noteOrder": 4152, "time": 0.910498609476524, "position": { "x": 7, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 6, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 8448, + "noteOrder": 4224, "time": 0.9262876027044405, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 8496, + "noteOrder": 4248, "time": 0.9315506004470795, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 8544, + "noteOrder": 4272, "time": 0.9368135981897182, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 8592, + "noteOrder": 4296, "time": 0.9420765959323572, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 8640, + "noteOrder": 4320, "time": 0.947339593674996, "position": { "x": 7, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 8688, + "noteOrder": 4344, "time": 0.9526025914176348, "position": { "x": 3, @@ -1587,7 +1587,7 @@ { "lineGroupId": 1, "indexInLine": 1, - "noteOrder": 96, + "noteOrder": 48, "time": 0.010525995485277733, "position": { "x": 7, @@ -1610,7 +1610,7 @@ { "lineGroupId": 1, "indexInLine": 2, - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 7, @@ -1633,7 +1633,7 @@ { "lineGroupId": 2, "indexInLine": 1, - "noteOrder": 192, + "noteOrder": 96, "time": 0.021051990970555465, "position": { "x": 3, @@ -1656,7 +1656,7 @@ { "lineGroupId": 2, "indexInLine": 2, - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 3, @@ -1679,7 +1679,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 240, + "noteOrder": 120, "time": 0.026314988713194334, "position": { "x": 7, @@ -1702,7 +1702,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 7, @@ -1725,7 +1725,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 144, "time": 0.0315779864558332, "position": { "x": 3, @@ -1748,7 +1748,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 3, @@ -1771,7 +1771,7 @@ { "lineGroupId": 5, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 192, "time": 0.04210398194111093, "position": { "x": 7, @@ -1794,7 +1794,7 @@ { "lineGroupId": 5, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 216, "time": 0.0473669796837498, "position": { "x": 7, @@ -1817,7 +1817,7 @@ { "lineGroupId": 7, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 240, "time": 0.05262997742638867, "position": { "x": 3, @@ -1840,7 +1840,7 @@ { "lineGroupId": 7, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 258, "time": 0.05657722573336782, "position": { "x": 3, @@ -1863,7 +1863,7 @@ { "lineGroupId": 8, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 276, "time": 0.06052447404034697, "position": { "x": 7, @@ -1886,7 +1886,7 @@ { "lineGroupId": 8, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 312, "time": 0.06841897065430527, "position": { "x": 7, @@ -1909,7 +1909,7 @@ { "lineGroupId": 9, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 336, "time": 0.07368196839694413, "position": { "x": 3, @@ -1932,7 +1932,7 @@ { "lineGroupId": 9, "indexInLine": 2, - "noteOrder": 708, + "noteOrder": 354, "time": 0.07762921670392328, "position": { "x": 3, @@ -1955,7 +1955,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 744, + "noteOrder": 372, "time": 0.08157646501090245, "position": { "x": 7, @@ -1978,7 +1978,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 816, + "noteOrder": 408, "time": 0.08947096162486073, "position": { "x": 7, @@ -2001,7 +2001,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 1008, + "noteOrder": 504, "time": 0.1105229525954162, "position": { "x": 6, @@ -2024,7 +2024,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 528, "time": 0.11578595033805507, "position": { "x": 3, @@ -2047,7 +2047,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 1104, + "noteOrder": 552, "time": 0.12104894808069394, "position": { "x": 3, @@ -2070,7 +2070,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 576, "time": 0.1263119458233328, "position": { "x": 7, @@ -2093,7 +2093,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 600, "time": 0.13157494356597166, "position": { "x": 7, @@ -2116,7 +2116,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 3, @@ -2139,7 +2139,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 3, @@ -2162,7 +2162,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 1248, + "noteOrder": 624, "time": 0.13683794130861054, "position": { "x": 7, @@ -2185,7 +2185,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 1344, + "noteOrder": 672, "time": 0.14736393679388826, "position": { "x": 7, @@ -2208,7 +2208,7 @@ { "lineGroupId": 19, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 720, "time": 0.157889932279166, "position": { "x": 7, @@ -2231,7 +2231,7 @@ { "lineGroupId": 19, "indexInLine": 2, - "noteOrder": 1488, + "noteOrder": 744, "time": 0.1631529300218049, "position": { "x": 7, @@ -2254,7 +2254,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 768, "time": 0.16841592776444372, "position": { "x": 3, @@ -2277,7 +2277,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 792, "time": 0.1736789255070826, "position": { "x": 3, @@ -2300,7 +2300,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 7, @@ -2323,7 +2323,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 7, @@ -2346,7 +2346,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 1632, + "noteOrder": 816, "time": 0.17894192324972147, "position": { "x": 3, @@ -2369,7 +2369,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 1728, + "noteOrder": 864, "time": 0.1894679187349992, "position": { "x": 3, @@ -2392,7 +2392,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 3, @@ -2415,7 +2415,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 3, @@ -2438,7 +2438,7 @@ { "lineGroupId": 32, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 1008, "time": 0.2210459051908324, "position": { "x": 7, @@ -2461,7 +2461,7 @@ { "lineGroupId": 32, "indexInLine": 2, - "noteOrder": 2112, + "noteOrder": 1056, "time": 0.23157190067611014, "position": { "x": 7, @@ -2484,7 +2484,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 1104, "time": 0.24209789616138788, "position": { "x": 7, @@ -2507,7 +2507,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 7, @@ -2530,7 +2530,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 2256, + "noteOrder": 1128, "time": 0.24736089390402674, "position": { "x": 6, @@ -2553,7 +2553,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 6, @@ -2576,7 +2576,7 @@ { "lineGroupId": 35, "indexInLine": 5, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 5, @@ -2599,7 +2599,7 @@ { "lineGroupId": 35, "indexInLine": 6, - "noteOrder": 2310.0, + "noteOrder": 1158.0, "time": 0.2526238916466656, "position": { "x": 5, @@ -2622,7 +2622,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 1152, "time": 0.2526238916466656, "position": { "x": 7, @@ -2645,7 +2645,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 7, @@ -2668,7 +2668,7 @@ { "lineGroupId": 36, "indexInLine": 3, - "noteOrder": 2352, + "noteOrder": 1176, "time": 0.2578868893893045, "position": { "x": 6, @@ -2691,7 +2691,7 @@ { "lineGroupId": 36, "indexInLine": 4, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 6, @@ -2714,7 +2714,7 @@ { "lineGroupId": 36, "indexInLine": 5, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 5, @@ -2737,7 +2737,7 @@ { "lineGroupId": 36, "indexInLine": 6, - "noteOrder": 2406.0, + "noteOrder": 1206.0, "time": 0.2631498871319433, "position": { "x": 5, @@ -2760,7 +2760,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 1200, "time": 0.2631498871319433, "position": { "x": 7, @@ -2783,7 +2783,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 7, @@ -2806,7 +2806,7 @@ { "lineGroupId": 38, "indexInLine": 1, - "noteOrder": 2448, + "noteOrder": 1224, "time": 0.2684128848745822, "position": { "x": 3, @@ -2829,7 +2829,7 @@ { "lineGroupId": 38, "indexInLine": 2, - "noteOrder": 2496, + "noteOrder": 1248, "time": 0.2736758826172211, "position": { "x": 3, @@ -2852,7 +2852,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 1296, "time": 0.2842018781024988, "position": { "x": 7, @@ -2875,7 +2875,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 2640, + "noteOrder": 1320, "time": 0.2894648758451377, "position": { "x": 7, @@ -2898,7 +2898,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 2688, + "noteOrder": 1344, "time": 0.2947278735877765, "position": { "x": 3, @@ -2921,7 +2921,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 2736, + "noteOrder": 1368, "time": 0.2999908713304154, "position": { "x": 3, @@ -2944,7 +2944,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 3, @@ -2967,7 +2967,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 3, @@ -2990,7 +2990,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 1392, "time": 0.30525386907305424, "position": { "x": 7, @@ -3013,7 +3013,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 1440, "time": 0.315779864558332, "position": { "x": 7, @@ -3036,7 +3036,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 1488, "time": 0.3263058600436098, "position": { "x": 3, @@ -3059,7 +3059,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 1512, "time": 0.33156885778624856, "position": { "x": 3, @@ -3082,7 +3082,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 1536, "time": 0.33683185552888745, "position": { "x": 7, @@ -3105,7 +3105,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 1560, "time": 0.34209485327152633, "position": { "x": 7, @@ -3128,7 +3128,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 7, @@ -3151,7 +3151,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 7, @@ -3174,7 +3174,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 1584, "time": 0.3473578510141652, "position": { "x": 3, @@ -3197,7 +3197,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 1632, "time": 0.35788384649944294, "position": { "x": 3, @@ -3220,7 +3220,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 7, @@ -3243,7 +3243,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 7, @@ -3266,7 +3266,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 1776, "time": 0.38946183295527614, "position": { "x": 3, @@ -3289,7 +3289,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 3648, + "noteOrder": 1824, "time": 0.39998782844055386, "position": { "x": 3, @@ -3312,7 +3312,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 1872, "time": 0.4105138239258316, "position": { "x": 3, @@ -3335,7 +3335,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 3, @@ -3358,7 +3358,7 @@ { "lineGroupId": 66, "indexInLine": 3, - "noteOrder": 3792, + "noteOrder": 1896, "time": 0.41577682166847046, "position": { "x": 4, @@ -3381,7 +3381,7 @@ { "lineGroupId": 66, "indexInLine": 4, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 4, @@ -3404,7 +3404,7 @@ { "lineGroupId": 66, "indexInLine": 5, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 5, @@ -3427,7 +3427,7 @@ { "lineGroupId": 66, "indexInLine": 6, - "noteOrder": 3846.0, + "noteOrder": 1926.0, "time": 0.42103981941110935, "position": { "x": 5, @@ -3450,7 +3450,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 1920, "time": 0.42103981941110935, "position": { "x": 3, @@ -3473,7 +3473,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 3, @@ -3496,7 +3496,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 3888, + "noteOrder": 1944, "time": 0.42630281715374824, "position": { "x": 4, @@ -3519,7 +3519,7 @@ { "lineGroupId": 67, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 4, @@ -3542,7 +3542,7 @@ { "lineGroupId": 67, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 5, @@ -3565,7 +3565,7 @@ { "lineGroupId": 67, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 1974.0, "time": 0.4315658148963871, "position": { "x": 5, @@ -3588,7 +3588,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 1968, "time": 0.4315658148963871, "position": { "x": 3, @@ -3611,7 +3611,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 3, @@ -3634,7 +3634,7 @@ { "lineGroupId": 69, "indexInLine": 1, - "noteOrder": 3984, + "noteOrder": 1992, "time": 0.4368288126390259, "position": { "x": 7, @@ -3657,7 +3657,7 @@ { "lineGroupId": 69, "indexInLine": 2, - "noteOrder": 4032, + "noteOrder": 2016, "time": 0.4420918103816648, "position": { "x": 7, @@ -3680,7 +3680,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 2160, "time": 0.473669796837498, "position": { "x": 7, @@ -3703,7 +3703,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 4368, + "noteOrder": 2184, "time": 0.4789327945801369, "position": { "x": 7, @@ -3726,7 +3726,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 2208, "time": 0.48419579232277576, "position": { "x": 3, @@ -3749,7 +3749,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 4464, + "noteOrder": 2232, "time": 0.4894587900654146, "position": { "x": 3, @@ -3772,7 +3772,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 4704, + "noteOrder": 2352, "time": 0.515773778778609, "position": { "x": 3, @@ -3795,7 +3795,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 3, @@ -3818,7 +3818,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 4752, + "noteOrder": 2376, "time": 0.5210367765212478, "position": { "x": 7, @@ -3841,7 +3841,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 4800, + "noteOrder": 2400, "time": 0.5262997742638866, "position": { "x": 7, @@ -3864,7 +3864,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 4824, + "noteOrder": 2412, "time": 0.528931273135206, "position": { "x": 3, @@ -3887,7 +3887,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 4872, + "noteOrder": 2436, "time": 0.534194270877845, "position": { "x": 3, @@ -3910,7 +3910,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 5088, + "noteOrder": 2544, "time": 0.5578777607197198, "position": { "x": 3, @@ -3933,7 +3933,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 5136, + "noteOrder": 2568, "time": 0.5631407584623588, "position": { "x": 3, @@ -3956,7 +3956,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 5184, + "noteOrder": 2592, "time": 0.5684037562049976, "position": { "x": 7, @@ -3979,7 +3979,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 5232, + "noteOrder": 2616, "time": 0.5736667539476366, "position": { "x": 7, @@ -4002,7 +4002,7 @@ { "lineGroupId": 97, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 4, @@ -4025,7 +4025,7 @@ { "lineGroupId": 97, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 4, @@ -4048,7 +4048,7 @@ { "lineGroupId": 98, "indexInLine": 1, - "noteOrder": 5568, + "noteOrder": 2784, "time": 0.6105077381461085, "position": { "x": 6, @@ -4071,7 +4071,7 @@ { "lineGroupId": 98, "indexInLine": 2, - "noteOrder": 5616, + "noteOrder": 2808, "time": 0.6157707358887474, "position": { "x": 6, @@ -4094,7 +4094,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 5760, + "noteOrder": 2880, "time": 0.631559729116664, "position": { "x": 3, @@ -4117,7 +4117,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 3, @@ -4140,7 +4140,7 @@ { "lineGroupId": 104, "indexInLine": 3, - "noteOrder": 5808, + "noteOrder": 2904, "time": 0.6368227268593029, "position": { "x": 4, @@ -4163,7 +4163,7 @@ { "lineGroupId": 104, "indexInLine": 4, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 4, @@ -4186,7 +4186,7 @@ { "lineGroupId": 104, "indexInLine": 5, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 5, @@ -4209,7 +4209,7 @@ { "lineGroupId": 104, "indexInLine": 6, - "noteOrder": 5862.0, + "noteOrder": 2934.0, "time": 0.6420857246019418, "position": { "x": 5, @@ -4232,7 +4232,7 @@ { "lineGroupId": 105, "indexInLine": 1, - "noteOrder": 5856, + "noteOrder": 2928, "time": 0.6420857246019418, "position": { "x": 3, @@ -4255,7 +4255,7 @@ { "lineGroupId": 105, "indexInLine": 2, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 3, @@ -4278,7 +4278,7 @@ { "lineGroupId": 105, "indexInLine": 3, - "noteOrder": 5904, + "noteOrder": 2952, "time": 0.6473487223445806, "position": { "x": 4, @@ -4301,7 +4301,7 @@ { "lineGroupId": 105, "indexInLine": 4, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 4, @@ -4324,7 +4324,7 @@ { "lineGroupId": 105, "indexInLine": 5, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 5, @@ -4347,7 +4347,7 @@ { "lineGroupId": 105, "indexInLine": 6, - "noteOrder": 5958.0, + "noteOrder": 2982.0, "time": 0.6526117200872196, "position": { "x": 5, @@ -4370,7 +4370,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 5952, + "noteOrder": 2976, "time": 0.6526117200872196, "position": { "x": 3, @@ -4393,7 +4393,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 3, @@ -4416,7 +4416,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 6000, + "noteOrder": 3000, "time": 0.6578747178298583, "position": { "x": 4, @@ -4439,7 +4439,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 4, @@ -4462,7 +4462,7 @@ { "lineGroupId": 106, "indexInLine": 5, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 5, @@ -4485,7 +4485,7 @@ { "lineGroupId": 106, "indexInLine": 6, - "noteOrder": 6054.0, + "noteOrder": 3030.0, "time": 0.6631377155724971, "position": { "x": 5, @@ -4508,7 +4508,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 6048, + "noteOrder": 3024, "time": 0.6631377155724971, "position": { "x": 3, @@ -4531,7 +4531,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 3, @@ -4554,7 +4554,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 6096, + "noteOrder": 3048, "time": 0.6684007133151361, "position": { "x": 4, @@ -4577,7 +4577,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 4, @@ -4600,7 +4600,7 @@ { "lineGroupId": 107, "indexInLine": 5, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 5, @@ -4623,7 +4623,7 @@ { "lineGroupId": 107, "indexInLine": 6, - "noteOrder": 6150.0, + "noteOrder": 3078.0, "time": 0.6736637110577749, "position": { "x": 5, @@ -4646,7 +4646,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 6144, + "noteOrder": 3072, "time": 0.6736637110577749, "position": { "x": 3, @@ -4669,7 +4669,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 6192, + "noteOrder": 3096, "time": 0.6789267088004138, "position": { "x": 3, @@ -4692,7 +4692,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 6240, + "noteOrder": 3120, "time": 0.6841897065430527, "position": { "x": 7, @@ -4715,7 +4715,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 6288, + "noteOrder": 3144, "time": 0.6894527042856915, "position": { "x": 7, @@ -4738,7 +4738,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 4, @@ -4761,7 +4761,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 4, @@ -4784,7 +4784,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 6432, + "noteOrder": 3216, "time": 0.7052416975136082, "position": { "x": 6, @@ -4807,7 +4807,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 6480, + "noteOrder": 3240, "time": 0.710504695256247, "position": { "x": 6, @@ -4830,7 +4830,7 @@ { "lineGroupId": 117, "indexInLine": 1, - "noteOrder": 6528, + "noteOrder": 3264, "time": 0.7157676929988859, "position": { "x": 7, @@ -4853,7 +4853,7 @@ { "lineGroupId": 117, "indexInLine": 2, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 7, @@ -4876,7 +4876,7 @@ { "lineGroupId": 117, "indexInLine": 3, - "noteOrder": 6576, + "noteOrder": 3288, "time": 0.7210306907415248, "position": { "x": 6, @@ -4899,7 +4899,7 @@ { "lineGroupId": 117, "indexInLine": 4, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 6, @@ -4922,7 +4922,7 @@ { "lineGroupId": 117, "indexInLine": 5, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 5, @@ -4945,7 +4945,7 @@ { "lineGroupId": 117, "indexInLine": 6, - "noteOrder": 6630.0, + "noteOrder": 3318.0, "time": 0.7262936884841635, "position": { "x": 5, @@ -4968,7 +4968,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 6624, + "noteOrder": 3312, "time": 0.7262936884841635, "position": { "x": 7, @@ -4991,7 +4991,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 7, @@ -5014,7 +5014,7 @@ { "lineGroupId": 118, "indexInLine": 3, - "noteOrder": 6672, + "noteOrder": 3336, "time": 0.7315566862268025, "position": { "x": 6, @@ -5037,7 +5037,7 @@ { "lineGroupId": 118, "indexInLine": 4, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 6, @@ -5060,7 +5060,7 @@ { "lineGroupId": 118, "indexInLine": 5, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 5, @@ -5083,7 +5083,7 @@ { "lineGroupId": 118, "indexInLine": 6, - "noteOrder": 6726.0, + "noteOrder": 3366.0, "time": 0.7368196839694413, "position": { "x": 5, @@ -5106,7 +5106,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 6720, + "noteOrder": 3360, "time": 0.7368196839694413, "position": { "x": 7, @@ -5129,7 +5129,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 7, @@ -5152,7 +5152,7 @@ { "lineGroupId": 119, "indexInLine": 3, - "noteOrder": 6768, + "noteOrder": 3384, "time": 0.7420826817120801, "position": { "x": 6, @@ -5175,7 +5175,7 @@ { "lineGroupId": 119, "indexInLine": 4, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 6, @@ -5198,7 +5198,7 @@ { "lineGroupId": 119, "indexInLine": 5, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 5, @@ -5221,7 +5221,7 @@ { "lineGroupId": 119, "indexInLine": 6, - "noteOrder": 6822.0, + "noteOrder": 3414.0, "time": 0.7473456794547191, "position": { "x": 5, @@ -5244,7 +5244,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 6816, + "noteOrder": 3408, "time": 0.7473456794547191, "position": { "x": 7, @@ -5267,7 +5267,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 7, @@ -5290,7 +5290,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 6864, + "noteOrder": 3432, "time": 0.7526086771973579, "position": { "x": 6, @@ -5313,7 +5313,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 6, @@ -5336,7 +5336,7 @@ { "lineGroupId": 120, "indexInLine": 5, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 5, @@ -5359,7 +5359,7 @@ { "lineGroupId": 120, "indexInLine": 6, - "noteOrder": 6918.0, + "noteOrder": 3462.0, "time": 0.7578716749399969, "position": { "x": 5, @@ -5382,7 +5382,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 6912, + "noteOrder": 3456, "time": 0.7578716749399969, "position": { "x": 7, @@ -5405,7 +5405,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 6960, + "noteOrder": 3480, "time": 0.7631346726826357, "position": { "x": 7, @@ -5428,7 +5428,7 @@ { "lineGroupId": 123, "indexInLine": 1, - "noteOrder": 7008, + "noteOrder": 3504, "time": 0.7683976704252745, "position": { "x": 3, @@ -5451,7 +5451,7 @@ { "lineGroupId": 123, "indexInLine": 2, - "noteOrder": 7056, + "noteOrder": 3528, "time": 0.7736606681679135, "position": { "x": 3, @@ -5474,7 +5474,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 6, @@ -5497,7 +5497,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 6, @@ -5520,7 +5520,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 7200, + "noteOrder": 3600, "time": 0.7894496613958301, "position": { "x": 4, @@ -5543,7 +5543,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 7248, + "noteOrder": 3624, "time": 0.7947126591384688, "position": { "x": 4, @@ -5566,7 +5566,7 @@ { "lineGroupId": 130, "indexInLine": 1, - "noteOrder": 7296, + "noteOrder": 3648, "time": 0.7999756568811077, "position": { "x": 3, @@ -5589,7 +5589,7 @@ { "lineGroupId": 130, "indexInLine": 2, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 3, @@ -5612,7 +5612,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 7488, + "noteOrder": 3744, "time": 0.8210276478516632, "position": { "x": 7, @@ -5635,7 +5635,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 7, @@ -5658,7 +5658,7 @@ { "lineGroupId": 138, "indexInLine": 1, - "noteOrder": 7680, + "noteOrder": 3840, "time": 0.8420796388222187, "position": { "x": 3, @@ -5681,7 +5681,7 @@ { "lineGroupId": 138, "indexInLine": 2, - "noteOrder": 7728, + "noteOrder": 3864, "time": 0.8473426365648575, "position": { "x": 3, @@ -5704,7 +5704,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 7776, + "noteOrder": 3888, "time": 0.8526056343074965, "position": { "x": 7, @@ -5727,7 +5727,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 7824, + "noteOrder": 3912, "time": 0.8578686320501353, "position": { "x": 7, @@ -5750,7 +5750,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 7872, + "noteOrder": 3936, "time": 0.8631316297927742, "position": { "x": 4, @@ -5773,7 +5773,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 7920, + "noteOrder": 3960, "time": 0.868394627535413, "position": { "x": 4, @@ -5796,7 +5796,7 @@ { "lineGroupId": 144, "indexInLine": 1, - "noteOrder": 7968, + "noteOrder": 3984, "time": 0.8736576252780518, "position": { "x": 6, @@ -5819,7 +5819,7 @@ { "lineGroupId": 144, "indexInLine": 2, - "noteOrder": 8016, + "noteOrder": 4008, "time": 0.8789206230206907, "position": { "x": 6, @@ -5842,7 +5842,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 8352, + "noteOrder": 4176, "time": 0.9157616072191629, "position": { "x": 4, @@ -5865,7 +5865,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 8400, + "noteOrder": 4200, "time": 0.9210246049618017, "position": { "x": 4, @@ -5888,7 +5888,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 4, @@ -5911,7 +5911,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 4, @@ -5934,7 +5934,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 8736, + "noteOrder": 4368, "time": 0.9578655891602738, "position": { "x": 6, @@ -5957,7 +5957,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 8784, + "noteOrder": 4392, "time": 0.9631285869029126, "position": { "x": 6, @@ -5992,7 +5992,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 200, + "BPM": 100, "NPS": "2.49", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/info.json b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/info.json index b9b0f548..b226cb12 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/ユメブキ/info.json @@ -3,7 +3,7 @@ "SongName": "\u30e6\u30e1\u30d6\u30ad", "SongLength": "114.003469", "SongAuthorName": "\u7d2b\u5d0e \u96ea,Risa Yuzuki,709sec. by BEMANI Sound Team \"PHQUASE & SYUNN\"", - "Bpm": "200", + "Bpm": "100", "SongPath": "292.ogg", "CreateTicks": 637655328000000000, "CreateTime": "637655328000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a.json index 6a4083a3..ef5b44cb 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) SPONGEBOB EDITION difficulty_1a", "sphereNodes": [ { - "noteOrder": 240, + "noteOrder": 480, "time": 0.049998672766434854, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 252, + "noteOrder": 504, "time": 0.05249860640475659, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999734553286971, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999708008615669, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 1296, "time": 0.1349964164693741, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499615102266109, "position": { "x": 8, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499588557594804, "position": { "x": 2, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999522195916548, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999495651245246, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 2, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 8, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699928329387482, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.2749927002153917, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999256749203516, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 8, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.339990974811757, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.34499084208840053, "position": { "x": 5, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.349990709365044, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549905766416875, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874897139398701, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874897139398701, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.4249887185146963, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998858579133975, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2076, + "noteOrder": 4152, "time": 0.4324885194296615, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 4176, "time": 0.4349884530679832, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.44498818762127024, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.44998805489791366, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 4344, "time": 0.4524879885362354, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 4368, "time": 0.45498792217455714, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 4560, "time": 0.47498739128113115, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 4752, "time": 0.49498686038770506, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049865949409921, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099864622176355, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2460, + "noteOrder": 4920, "time": 0.5124863958559572, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 4944, "time": 0.514986329494279, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.524986064047566, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.5299859313242095, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2556, + "noteOrder": 5112, "time": 0.5324858649625311, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 5136, "time": 0.5349857986008529, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 5328, "time": 0.554985267707427, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2676, + "noteOrder": 5352, "time": 0.5574852013457486, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 5400, "time": 0.5624850686223921, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 5448, "time": 0.5674849358990356, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2748, + "noteOrder": 5496, "time": 0.5724848031756791, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349831441337227, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.649982745963653, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3372, + "noteOrder": 6744, "time": 0.7024813523684097, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 6768, "time": 0.7049812860067315, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3396, + "noteOrder": 6792, "time": 0.7074812196450532, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 6816, "time": 0.709981153283375, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 6816, "time": 0.709981153283375, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599798260498098, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699795606030968, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249781006461752, "position": { "x": 8, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399777024761055, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499774370293925, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 8520, "time": 0.8874764416042187, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 8520, "time": 0.8874764416042187, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299753134556883, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 8952, "time": 0.93247524709401, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 4, @@ -1947,7 +1947,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 288, "time": 0.02999920365986091, "position": { "x": 7, @@ -1970,7 +1970,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 156, + "noteOrder": 312, "time": 0.032499137298182657, "position": { "x": 7, @@ -1993,7 +1993,7 @@ { "lineGroupId": 3, "indexInLine": 3, - "noteOrder": 156, + "noteOrder": 312, "time": 0.032499137298182657, "position": { "x": 6, @@ -2016,7 +2016,7 @@ { "lineGroupId": 3, "indexInLine": 4, - "noteOrder": 162.0, + "noteOrder": 318.0, "time": 0.032499137298182657, "position": { "x": 6, @@ -2039,7 +2039,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 168, + "noteOrder": 336, "time": 0.034999070936504395, "position": { "x": 3, @@ -2062,7 +2062,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 180, + "noteOrder": 360, "time": 0.03749900457482614, "position": { "x": 3, @@ -2085,7 +2085,7 @@ { "lineGroupId": 4, "indexInLine": 3, - "noteOrder": 180, + "noteOrder": 360, "time": 0.03749900457482614, "position": { "x": 4, @@ -2108,7 +2108,7 @@ { "lineGroupId": 4, "indexInLine": 4, - "noteOrder": 186.0, + "noteOrder": 366.0, "time": 0.03749900457482614, "position": { "x": 4, @@ -2131,7 +2131,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999840731972182, "position": { "x": 6, @@ -2154,7 +2154,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 300, + "noteOrder": 600, "time": 0.06249834095804357, "position": { "x": 6, @@ -2177,7 +2177,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 300, + "noteOrder": 600, "time": 0.06249834095804357, "position": { "x": 5, @@ -2200,7 +2200,7 @@ { "lineGroupId": 10, "indexInLine": 4, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 5, @@ -2223,7 +2223,7 @@ { "lineGroupId": 10, "indexInLine": 5, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 3, @@ -2246,7 +2246,7 @@ { "lineGroupId": 10, "indexInLine": 6, - "noteOrder": 318.0, + "noteOrder": 630.0, "time": 0.06499827459636531, "position": { "x": 3, @@ -2269,7 +2269,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 6, @@ -2292,7 +2292,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 324, + "noteOrder": 648, "time": 0.06749820823468705, "position": { "x": 6, @@ -2315,7 +2315,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 324, + "noteOrder": 648, "time": 0.06749820823468705, "position": { "x": 5, @@ -2338,7 +2338,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 5, @@ -2361,7 +2361,7 @@ { "lineGroupId": 11, "indexInLine": 5, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 3, @@ -2384,7 +2384,7 @@ { "lineGroupId": 11, "indexInLine": 6, - "noteOrder": 342.0, + "noteOrder": 678.0, "time": 0.06999814187300879, "position": { "x": 3, @@ -2407,7 +2407,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 6, @@ -2430,7 +2430,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249807551133054, "position": { "x": 6, @@ -2453,7 +2453,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249807551133054, "position": { "x": 5, @@ -2476,7 +2476,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 5, @@ -2499,7 +2499,7 @@ { "lineGroupId": 12, "indexInLine": 5, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 3, @@ -2522,7 +2522,7 @@ { "lineGroupId": 12, "indexInLine": 6, - "noteOrder": 366.0, + "noteOrder": 726.0, "time": 0.07499800914965228, "position": { "x": 3, @@ -2545,7 +2545,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 6, @@ -2568,7 +2568,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07749794278797402, "position": { "x": 6, @@ -2591,7 +2591,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07749794278797402, "position": { "x": 5, @@ -2614,7 +2614,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 5, @@ -2637,7 +2637,7 @@ { "lineGroupId": 13, "indexInLine": 5, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 3, @@ -2660,7 +2660,7 @@ { "lineGroupId": 13, "indexInLine": 6, - "noteOrder": 390.0, + "noteOrder": 774.0, "time": 0.07999787642629577, "position": { "x": 3, @@ -2683,7 +2683,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 6, @@ -2706,7 +2706,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -2729,7 +2729,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999761097958274, "position": { "x": 7, @@ -2752,7 +2752,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 444, + "noteOrder": 888, "time": 0.09249754461790448, "position": { "x": 7, @@ -2775,7 +2775,7 @@ { "lineGroupId": 16, "indexInLine": 3, - "noteOrder": 444, + "noteOrder": 888, "time": 0.09249754461790448, "position": { "x": 6, @@ -2798,7 +2798,7 @@ { "lineGroupId": 16, "indexInLine": 4, - "noteOrder": 450.0, + "noteOrder": 894.0, "time": 0.09249754461790448, "position": { "x": 6, @@ -2821,7 +2821,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 3, @@ -2844,7 +2844,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 468, + "noteOrder": 936, "time": 0.09749741189454796, "position": { "x": 3, @@ -2867,7 +2867,7 @@ { "lineGroupId": 17, "indexInLine": 3, - "noteOrder": 468, + "noteOrder": 936, "time": 0.09749741189454796, "position": { "x": 4, @@ -2890,7 +2890,7 @@ { "lineGroupId": 17, "indexInLine": 4, - "noteOrder": 474.0, + "noteOrder": 942.0, "time": 0.09749741189454796, "position": { "x": 4, @@ -2913,7 +2913,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999681463944364, "position": { "x": 7, @@ -2936,7 +2936,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 588, + "noteOrder": 1176, "time": 0.1224967482777654, "position": { "x": 7, @@ -2959,7 +2959,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 588, + "noteOrder": 1176, "time": 0.1224967482777654, "position": { "x": 6, @@ -2982,7 +2982,7 @@ { "lineGroupId": 22, "indexInLine": 4, - "noteOrder": 594.0, + "noteOrder": 1182.0, "time": 0.1224967482777654, "position": { "x": 6, @@ -3005,7 +3005,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499668191608714, "position": { "x": 3, @@ -3028,7 +3028,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 612, + "noteOrder": 1224, "time": 0.1274966155544089, "position": { "x": 3, @@ -3051,7 +3051,7 @@ { "lineGroupId": 23, "indexInLine": 3, - "noteOrder": 612, + "noteOrder": 1224, "time": 0.1274966155544089, "position": { "x": 4, @@ -3074,7 +3074,7 @@ { "lineGroupId": 23, "indexInLine": 4, - "noteOrder": 618.0, + "noteOrder": 1230.0, "time": 0.1274966155544089, "position": { "x": 4, @@ -3097,7 +3097,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 1248, "time": 0.12999654919273063, "position": { "x": 7, @@ -3120,7 +3120,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 636, + "noteOrder": 1272, "time": 0.13249648283105236, "position": { "x": 7, @@ -3143,7 +3143,7 @@ { "lineGroupId": 24, "indexInLine": 3, - "noteOrder": 636, + "noteOrder": 1272, "time": 0.13249648283105236, "position": { "x": 6, @@ -3166,7 +3166,7 @@ { "lineGroupId": 24, "indexInLine": 4, - "noteOrder": 642.0, + "noteOrder": 1278.0, "time": 0.13249648283105236, "position": { "x": 6, @@ -3189,7 +3189,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999628374601758, "position": { "x": 6, @@ -3212,7 +3212,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 6, @@ -3235,7 +3235,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 4, @@ -3258,7 +3258,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 4, @@ -3281,7 +3281,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 7, @@ -3304,7 +3304,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 7, @@ -3327,7 +3327,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 3, @@ -3350,7 +3350,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 828, + "noteOrder": 1656, "time": 0.17249542104420026, "position": { "x": 3, @@ -3373,7 +3373,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 828, + "noteOrder": 1656, "time": 0.17249542104420026, "position": { "x": 4, @@ -3396,7 +3396,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 834.0, + "noteOrder": 1662.0, "time": 0.17249542104420026, "position": { "x": 4, @@ -3419,7 +3419,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 840, + "noteOrder": 1680, "time": 0.174995354682522, "position": { "x": 7, @@ -3442,7 +3442,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 852, + "noteOrder": 1704, "time": 0.17749528832084374, "position": { "x": 7, @@ -3465,7 +3465,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 852, + "noteOrder": 1704, "time": 0.17749528832084374, "position": { "x": 6, @@ -3488,7 +3488,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 858.0, + "noteOrder": 1710.0, "time": 0.17749528832084374, "position": { "x": 6, @@ -3511,7 +3511,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999469106573942, "position": { "x": 3, @@ -3534,7 +3534,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 1944, "time": 0.20249462470406115, "position": { "x": 3, @@ -3557,7 +3557,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 1944, "time": 0.20249462470406115, "position": { "x": 4, @@ -3580,7 +3580,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 1950.0, "time": 0.20249462470406115, "position": { "x": 4, @@ -3603,7 +3603,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 7, @@ -3626,7 +3626,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 1992, "time": 0.20749449198070466, "position": { "x": 7, @@ -3649,7 +3649,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 1992, "time": 0.20749449198070466, "position": { "x": 6, @@ -3672,7 +3672,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1002.0, + "noteOrder": 1998.0, "time": 0.20749449198070466, "position": { "x": 6, @@ -3695,7 +3695,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 3, @@ -3718,7 +3718,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249435925734814, "position": { "x": 3, @@ -3741,7 +3741,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249435925734814, "position": { "x": 4, @@ -3764,7 +3764,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1026.0, + "noteOrder": 2046.0, "time": 0.21249435925734814, "position": { "x": 4, @@ -3787,7 +3787,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 7, @@ -3810,7 +3810,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1044, + "noteOrder": 2088, "time": 0.2174942265339916, "position": { "x": 7, @@ -3833,7 +3833,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999416017231338, "position": { "x": 4, @@ -3856,7 +3856,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 4, @@ -3879,7 +3879,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 5, @@ -3902,7 +3902,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 5, @@ -3925,7 +3925,7 @@ { "lineGroupId": 44, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 7, @@ -3948,7 +3948,7 @@ { "lineGroupId": 44, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 2166.0, "time": 0.22499402744895683, "position": { "x": 7, @@ -3971,7 +3971,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 4, @@ -3994,7 +3994,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 4, @@ -4017,7 +4017,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 5, @@ -4040,7 +4040,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 5, @@ -4063,7 +4063,7 @@ { "lineGroupId": 45, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 7, @@ -4086,7 +4086,7 @@ { "lineGroupId": 45, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 2214.0, "time": 0.22999389472560033, "position": { "x": 7, @@ -4109,7 +4109,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 4, @@ -4132,7 +4132,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1116, + "noteOrder": 2232, "time": 0.23249382836392207, "position": { "x": 4, @@ -4155,7 +4155,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1116, + "noteOrder": 2232, "time": 0.23249382836392207, "position": { "x": 5, @@ -4178,7 +4178,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 5, @@ -4201,7 +4201,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 7, @@ -4224,7 +4224,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1134.0, + "noteOrder": 2262.0, "time": 0.2349937620022438, "position": { "x": 7, @@ -4247,7 +4247,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 4, @@ -4270,7 +4270,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1140, + "noteOrder": 2280, "time": 0.23749369564056558, "position": { "x": 4, @@ -4293,7 +4293,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1140, + "noteOrder": 2280, "time": 0.23749369564056558, "position": { "x": 5, @@ -4316,7 +4316,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 5, @@ -4339,7 +4339,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 7, @@ -4362,7 +4362,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 2310.0, "time": 0.2399936292788873, "position": { "x": 7, @@ -4385,7 +4385,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 4, @@ -4408,7 +4408,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 4, @@ -4431,7 +4431,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 6, @@ -4454,7 +4454,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 6, @@ -4477,7 +4477,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28999230204532217, "position": { "x": 6, @@ -4500,7 +4500,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.2924922356836439, "position": { "x": 6, @@ -4523,7 +4523,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.2924922356836439, "position": { "x": 5, @@ -4546,7 +4546,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 2814.0, "time": 0.2924922356836439, "position": { "x": 5, @@ -4569,7 +4569,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 4, @@ -4592,7 +4592,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1428, + "noteOrder": 2856, "time": 0.2974921029602874, "position": { "x": 4, @@ -4615,7 +4615,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1428, + "noteOrder": 2856, "time": 0.2974921029602874, "position": { "x": 5, @@ -4638,7 +4638,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1434.0, + "noteOrder": 2862.0, "time": 0.2974921029602874, "position": { "x": 5, @@ -4661,7 +4661,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999920365986091, "position": { "x": 6, @@ -4684,7 +4684,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 6, @@ -4707,7 +4707,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 5, @@ -4730,7 +4730,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 5, @@ -4753,7 +4753,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 3, @@ -4776,7 +4776,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 2934.0, "time": 0.3049919038752526, "position": { "x": 3, @@ -4799,7 +4799,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 6, @@ -4822,7 +4822,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 6, @@ -4845,7 +4845,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 5, @@ -4868,7 +4868,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 5, @@ -4891,7 +4891,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 3, @@ -4914,7 +4914,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 2982.0, "time": 0.3099917711518961, "position": { "x": 3, @@ -4937,7 +4937,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 6, @@ -4960,7 +4960,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1500, + "noteOrder": 3000, "time": 0.3124917047902179, "position": { "x": 6, @@ -4983,7 +4983,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1500, + "noteOrder": 3000, "time": 0.3124917047902179, "position": { "x": 5, @@ -5006,7 +5006,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 5, @@ -5029,7 +5029,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 3, @@ -5052,7 +5052,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1518.0, + "noteOrder": 3030.0, "time": 0.3149916384285396, "position": { "x": 3, @@ -5075,7 +5075,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 6, @@ -5098,7 +5098,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1524, + "noteOrder": 3048, "time": 0.31749157206686135, "position": { "x": 6, @@ -5121,7 +5121,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1524, + "noteOrder": 3048, "time": 0.31749157206686135, "position": { "x": 5, @@ -5144,7 +5144,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 5, @@ -5167,7 +5167,7 @@ { "lineGroupId": 63, "indexInLine": 5, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 3, @@ -5190,7 +5190,7 @@ { "lineGroupId": 63, "indexInLine": 6, - "noteOrder": 1542.0, + "noteOrder": 3078.0, "time": 0.3199915057051831, "position": { "x": 3, @@ -5213,7 +5213,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 6, @@ -5236,7 +5236,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 6, @@ -5259,7 +5259,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.35999044391833096, "position": { "x": 7, @@ -5282,7 +5282,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1740, + "noteOrder": 3480, "time": 0.3624903775566527, "position": { "x": 7, @@ -5305,7 +5305,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1740, + "noteOrder": 3480, "time": 0.3624903775566527, "position": { "x": 6, @@ -5328,7 +5328,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1746.0, + "noteOrder": 3486.0, "time": 0.3624903775566527, "position": { "x": 6, @@ -5351,7 +5351,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1752, + "noteOrder": 3504, "time": 0.36499031119497444, "position": { "x": 3, @@ -5374,7 +5374,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 3528, "time": 0.3674902448332962, "position": { "x": 3, @@ -5397,7 +5397,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 3528, "time": 0.3674902448332962, "position": { "x": 4, @@ -5420,7 +5420,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1770.0, + "noteOrder": 3534.0, "time": 0.3674902448332962, "position": { "x": 4, @@ -5443,7 +5443,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 7, @@ -5466,7 +5466,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.37249011210993965, "position": { "x": 7, @@ -5489,7 +5489,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.37249011210993965, "position": { "x": 6, @@ -5512,7 +5512,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 1794.0, + "noteOrder": 3582.0, "time": 0.37249011210993965, "position": { "x": 6, @@ -5535,7 +5535,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 3, @@ -5558,7 +5558,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.3774899793865832, "position": { "x": 3, @@ -5581,7 +5581,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.3774899793865832, "position": { "x": 4, @@ -5604,7 +5604,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 1818.0, + "noteOrder": 3630.0, "time": 0.3774899793865832, "position": { "x": 4, @@ -5627,7 +5627,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.3799899130249049, "position": { "x": 7, @@ -5650,7 +5650,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 7, @@ -5673,7 +5673,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 5, @@ -5696,7 +5696,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 5, @@ -5719,7 +5719,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 6, @@ -5742,7 +5742,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849897803015484, "position": { "x": 6, @@ -5765,7 +5765,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.3799899130249049, "position": { "x": 3, @@ -5788,7 +5788,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 3, @@ -5811,7 +5811,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 5, @@ -5834,7 +5834,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 5, @@ -5857,7 +5857,7 @@ { "lineGroupId": 78, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 4, @@ -5880,7 +5880,7 @@ { "lineGroupId": 78, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849897803015484, "position": { "x": 4, @@ -5903,7 +5903,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.39998938213147883, "position": { "x": 3, @@ -5926,7 +5926,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 3864, "time": 0.40248931576980057, "position": { "x": 3, @@ -5949,7 +5949,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 3864, "time": 0.40248931576980057, "position": { "x": 4, @@ -5972,7 +5972,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 1938.0, + "noteOrder": 3870.0, "time": 0.40248931576980057, "position": { "x": 4, @@ -5995,7 +5995,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.4049892494081223, "position": { "x": 7, @@ -6018,7 +6018,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 3912, "time": 0.4074891830464441, "position": { "x": 7, @@ -6041,7 +6041,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 3912, "time": 0.4074891830464441, "position": { "x": 6, @@ -6064,7 +6064,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 1962.0, + "noteOrder": 3918.0, "time": 0.4074891830464441, "position": { "x": 6, @@ -6087,7 +6087,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 3, @@ -6110,7 +6110,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 3, @@ -6133,7 +6133,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 4, @@ -6156,7 +6156,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.4149889839614093, "position": { "x": 4, @@ -6179,7 +6179,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 7, @@ -6202,7 +6202,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 7, @@ -6225,7 +6225,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 6, @@ -6248,7 +6248,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.4149889839614093, "position": { "x": 6, @@ -6271,7 +6271,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498765672784415, "position": { "x": 7, @@ -6294,7 +6294,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 7, @@ -6317,7 +6317,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 6, @@ -6340,7 +6340,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.4674875903661659, "position": { "x": 6, @@ -6363,7 +6363,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699875240044876, "position": { "x": 3, @@ -6386,7 +6386,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.4724874576428094, "position": { "x": 3, @@ -6409,7 +6409,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.4724874576428094, "position": { "x": 4, @@ -6432,7 +6432,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 4542.0, "time": 0.4724874576428094, "position": { "x": 4, @@ -6455,7 +6455,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.48498712583441805, "position": { "x": 3, @@ -6478,7 +6478,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 3, @@ -6501,7 +6501,7 @@ { "lineGroupId": 112, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 4, @@ -6524,7 +6524,7 @@ { "lineGroupId": 112, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.48748705947273985, "position": { "x": 4, @@ -6547,7 +6547,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.4899869931110616, "position": { "x": 7, @@ -6570,7 +6570,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.4924869267493833, "position": { "x": 7, @@ -6593,7 +6593,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.4924869267493833, "position": { "x": 6, @@ -6616,7 +6616,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 4734.0, "time": 0.4924869267493833, "position": { "x": 6, @@ -6639,7 +6639,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449855331541399, "position": { "x": 7, @@ -6662,7 +6662,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 7, @@ -6685,7 +6685,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 6, @@ -6708,7 +6708,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 2634.0, + "noteOrder": 5262.0, "time": 0.5474854667924617, "position": { "x": 6, @@ -6731,7 +6731,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499854004307834, "position": { "x": 3, @@ -6754,7 +6754,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 2652, + "noteOrder": 5304, "time": 0.5524853340691052, "position": { "x": 3, @@ -6777,7 +6777,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 2652, + "noteOrder": 5304, "time": 0.5524853340691052, "position": { "x": 4, @@ -6800,7 +6800,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 2658.0, + "noteOrder": 5310.0, "time": 0.5524853340691052, "position": { "x": 4, @@ -6823,7 +6823,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799846040906443, "position": { "x": 7, @@ -6846,7 +6846,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 7, @@ -6869,7 +6869,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 5, @@ -6892,7 +6892,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 3, @@ -6915,7 +6915,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 2844, + "noteOrder": 5688, "time": 0.5924842722822531, "position": { "x": 3, @@ -6938,7 +6938,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 2844, + "noteOrder": 5688, "time": 0.5924842722822531, "position": { "x": 4, @@ -6961,7 +6961,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 2850.0, + "noteOrder": 5694.0, "time": 0.5924842722822531, "position": { "x": 4, @@ -6984,7 +6984,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 5, @@ -7007,7 +7007,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 5736, "time": 0.5974841395588966, "position": { "x": 5, @@ -7030,7 +7030,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 2868, + "noteOrder": 5736, "time": 0.5974841395588966, "position": { "x": 4, @@ -7053,7 +7053,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 2874.0, + "noteOrder": 5742.0, "time": 0.5974841395588966, "position": { "x": 4, @@ -7076,7 +7076,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999840731972182, "position": { "x": 3, @@ -7099,7 +7099,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 3, @@ -7122,7 +7122,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 5, @@ -7145,7 +7145,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 7, @@ -7168,7 +7168,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 2940, + "noteOrder": 5880, "time": 0.612483741388827, "position": { "x": 7, @@ -7191,7 +7191,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 2940, + "noteOrder": 5880, "time": 0.612483741388827, "position": { "x": 6, @@ -7214,7 +7214,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 2946.0, + "noteOrder": 5886.0, "time": 0.612483741388827, "position": { "x": 6, @@ -7237,7 +7237,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 5, @@ -7260,7 +7260,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 2964, + "noteOrder": 5928, "time": 0.6174836086654704, "position": { "x": 5, @@ -7283,7 +7283,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 2964, + "noteOrder": 5928, "time": 0.6174836086654704, "position": { "x": 6, @@ -7306,7 +7306,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 2970.0, + "noteOrder": 5934.0, "time": 0.6174836086654704, "position": { "x": 6, @@ -7329,7 +7329,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199835423037922, "position": { "x": 7, @@ -7352,7 +7352,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 7, @@ -7375,7 +7375,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 3, @@ -7398,7 +7398,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 3, @@ -7421,7 +7421,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 7, @@ -7444,7 +7444,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.649982745963653, "position": { "x": 7, @@ -7467,7 +7467,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599824805169401, "position": { "x": 3, @@ -7490,7 +7490,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 3, @@ -7513,7 +7513,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 5, @@ -7536,7 +7536,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 5, @@ -7559,7 +7559,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 7, @@ -7582,7 +7582,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 7, @@ -7605,7 +7605,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 5, @@ -7628,7 +7628,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 5, @@ -7651,7 +7651,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 3, @@ -7674,7 +7674,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 3, @@ -7697,7 +7697,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.7199808878366619, "position": { "x": 4, @@ -7720,7 +7720,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 4, @@ -7743,7 +7743,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 5, @@ -7766,7 +7766,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 5, @@ -7789,7 +7789,7 @@ { "lineGroupId": 178, "indexInLine": 5, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 7, @@ -7812,7 +7812,7 @@ { "lineGroupId": 178, "indexInLine": 6, - "noteOrder": 3486.0, + "noteOrder": 6966.0, "time": 0.7249807551133054, "position": { "x": 7, @@ -7835,7 +7835,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 4, @@ -7858,7 +7858,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 4, @@ -7881,7 +7881,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 5, @@ -7904,7 +7904,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 5, @@ -7927,7 +7927,7 @@ { "lineGroupId": 179, "indexInLine": 5, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 7, @@ -7950,7 +7950,7 @@ { "lineGroupId": 179, "indexInLine": 6, - "noteOrder": 3510.0, + "noteOrder": 7014.0, "time": 0.7299806223899489, "position": { "x": 7, @@ -7973,7 +7973,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 4, @@ -7996,7 +7996,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3516, + "noteOrder": 7032, "time": 0.7324805560282707, "position": { "x": 4, @@ -8019,7 +8019,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 3516, + "noteOrder": 7032, "time": 0.7324805560282707, "position": { "x": 5, @@ -8042,7 +8042,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 5, @@ -8065,7 +8065,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 7, @@ -8088,7 +8088,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 7062.0, "time": 0.7349804896665924, "position": { "x": 7, @@ -8111,7 +8111,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 4, @@ -8134,7 +8134,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 3540, + "noteOrder": 7080, "time": 0.7374804233049141, "position": { "x": 4, @@ -8157,7 +8157,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 3540, + "noteOrder": 7080, "time": 0.7374804233049141, "position": { "x": 5, @@ -8180,7 +8180,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 5, @@ -8203,7 +8203,7 @@ { "lineGroupId": 181, "indexInLine": 5, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 7, @@ -8226,7 +8226,7 @@ { "lineGroupId": 181, "indexInLine": 6, - "noteOrder": 3558.0, + "noteOrder": 7110.0, "time": 0.7399803569432358, "position": { "x": 7, @@ -8249,7 +8249,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 4, @@ -8272,7 +8272,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 4, @@ -8295,7 +8295,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499800914965228, "position": { "x": 3, @@ -8318,7 +8318,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 3612, + "noteOrder": 7224, "time": 0.7524800251348446, "position": { "x": 3, @@ -8341,7 +8341,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 3612, + "noteOrder": 7224, "time": 0.7524800251348446, "position": { "x": 4, @@ -8364,7 +8364,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 3618.0, + "noteOrder": 7230.0, "time": 0.7524800251348446, "position": { "x": 4, @@ -8387,7 +8387,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3624, + "noteOrder": 7248, "time": 0.7549799587731664, "position": { "x": 7, @@ -8410,7 +8410,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3636, + "noteOrder": 7272, "time": 0.757479892411488, "position": { "x": 7, @@ -8433,7 +8433,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3636, + "noteOrder": 7272, "time": 0.757479892411488, "position": { "x": 6, @@ -8456,7 +8456,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3642.0, + "noteOrder": 7278.0, "time": 0.757479892411488, "position": { "x": 6, @@ -8479,7 +8479,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799792951563836, "position": { "x": 3, @@ -8502,7 +8502,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824792287947054, "position": { "x": 3, @@ -8525,7 +8525,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824792287947054, "position": { "x": 4, @@ -8548,7 +8548,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 7518.0, "time": 0.7824792287947054, "position": { "x": 4, @@ -8571,7 +8571,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 7, @@ -8594,7 +8594,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.787479096071349, "position": { "x": 7, @@ -8617,7 +8617,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.787479096071349, "position": { "x": 6, @@ -8640,7 +8640,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 7566.0, "time": 0.787479096071349, "position": { "x": 6, @@ -8663,7 +8663,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899790297096707, "position": { "x": 3, @@ -8686,7 +8686,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.7924789633479925, "position": { "x": 3, @@ -8709,7 +8709,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.7924789633479925, "position": { "x": 4, @@ -8732,7 +8732,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 3810.0, + "noteOrder": 7614.0, "time": 0.7924789633479925, "position": { "x": 4, @@ -8755,7 +8755,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999787642629577, "position": { "x": 6, @@ -8778,7 +8778,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 6, @@ -8801,7 +8801,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 5, @@ -8824,7 +8824,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 5, @@ -8847,7 +8847,7 @@ { "lineGroupId": 195, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 3, @@ -8870,7 +8870,7 @@ { "lineGroupId": 195, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 7734.0, "time": 0.8049786315396011, "position": { "x": 3, @@ -8893,7 +8893,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 6, @@ -8916,7 +8916,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 6, @@ -8939,7 +8939,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 5, @@ -8962,7 +8962,7 @@ { "lineGroupId": 196, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 5, @@ -8985,7 +8985,7 @@ { "lineGroupId": 196, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 3, @@ -9008,7 +9008,7 @@ { "lineGroupId": 196, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 7782.0, "time": 0.8099784988162446, "position": { "x": 3, @@ -9031,7 +9031,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 6, @@ -9054,7 +9054,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 3900, + "noteOrder": 7800, "time": 0.8124784324545663, "position": { "x": 6, @@ -9077,7 +9077,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 3900, + "noteOrder": 7800, "time": 0.8124784324545663, "position": { "x": 5, @@ -9100,7 +9100,7 @@ { "lineGroupId": 197, "indexInLine": 4, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 5, @@ -9123,7 +9123,7 @@ { "lineGroupId": 197, "indexInLine": 5, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 3, @@ -9146,7 +9146,7 @@ { "lineGroupId": 197, "indexInLine": 6, - "noteOrder": 3918.0, + "noteOrder": 7830.0, "time": 0.8149783660928882, "position": { "x": 3, @@ -9169,7 +9169,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 6, @@ -9192,7 +9192,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 3924, + "noteOrder": 7848, "time": 0.8174782997312099, "position": { "x": 6, @@ -9215,7 +9215,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 3924, + "noteOrder": 7848, "time": 0.8174782997312099, "position": { "x": 5, @@ -9238,7 +9238,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 5, @@ -9261,7 +9261,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 3, @@ -9284,7 +9284,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 7878.0, "time": 0.8199782333695317, "position": { "x": 3, @@ -9307,7 +9307,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 6, @@ -9330,7 +9330,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 6, @@ -9353,7 +9353,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599771715826795, "position": { "x": 7, @@ -9376,7 +9376,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 8280, "time": 0.8624771052210013, "position": { "x": 7, @@ -9399,7 +9399,7 @@ { "lineGroupId": 208, "indexInLine": 3, - "noteOrder": 4140, + "noteOrder": 8280, "time": 0.8624771052210013, "position": { "x": 6, @@ -9422,7 +9422,7 @@ { "lineGroupId": 208, "indexInLine": 4, - "noteOrder": 4146.0, + "noteOrder": 8286.0, "time": 0.8624771052210013, "position": { "x": 6, @@ -9445,7 +9445,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 3, @@ -9468,7 +9468,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 4164, + "noteOrder": 8328, "time": 0.8674769724976447, "position": { "x": 3, @@ -9491,7 +9491,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 4164, + "noteOrder": 8328, "time": 0.8674769724976447, "position": { "x": 4, @@ -9514,7 +9514,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 4170.0, + "noteOrder": 8334.0, "time": 0.8674769724976447, "position": { "x": 4, @@ -9537,7 +9537,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699769061359665, "position": { "x": 7, @@ -9560,7 +9560,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 4188, + "noteOrder": 8376, "time": 0.8724768397742881, "position": { "x": 7, @@ -9583,7 +9583,7 @@ { "lineGroupId": 210, "indexInLine": 3, - "noteOrder": 4188, + "noteOrder": 8376, "time": 0.8724768397742881, "position": { "x": 6, @@ -9606,7 +9606,7 @@ { "lineGroupId": 210, "indexInLine": 4, - "noteOrder": 4194.0, + "noteOrder": 8382.0, "time": 0.8724768397742881, "position": { "x": 6, @@ -9629,7 +9629,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 3, @@ -9652,7 +9652,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4212, + "noteOrder": 8424, "time": 0.8774767070509316, "position": { "x": 3, @@ -9675,7 +9675,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 4212, + "noteOrder": 8424, "time": 0.8774767070509316, "position": { "x": 4, @@ -9698,7 +9698,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 4218.0, + "noteOrder": 8430.0, "time": 0.8774767070509316, "position": { "x": 4, @@ -9721,7 +9721,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799766406892535, "position": { "x": 7, @@ -9744,7 +9744,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 7, @@ -9767,7 +9767,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 5, @@ -9790,7 +9790,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 5, @@ -9813,7 +9813,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 6, @@ -9836,7 +9836,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.884976507965897, "position": { "x": 6, @@ -9859,7 +9859,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799766406892535, "position": { "x": 3, @@ -9882,7 +9882,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 3, @@ -9905,7 +9905,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 5, @@ -9928,7 +9928,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 5, @@ -9951,7 +9951,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 4, @@ -9974,7 +9974,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.884976507965897, "position": { "x": 4, @@ -9997,7 +9997,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999761097958273, "position": { "x": 3, @@ -10020,7 +10020,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4332, + "noteOrder": 8664, "time": 0.9024760434341491, "position": { "x": 3, @@ -10043,7 +10043,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4332, + "noteOrder": 8664, "time": 0.9024760434341491, "position": { "x": 4, @@ -10066,7 +10066,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 4338.0, + "noteOrder": 8670.0, "time": 0.9024760434341491, "position": { "x": 4, @@ -10089,7 +10089,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049759770724708, "position": { "x": 7, @@ -10112,7 +10112,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 8712, "time": 0.9074759107107926, "position": { "x": 7, @@ -10135,7 +10135,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4356, + "noteOrder": 8712, "time": 0.9074759107107926, "position": { "x": 6, @@ -10158,7 +10158,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4362.0, + "noteOrder": 8718.0, "time": 0.9074759107107926, "position": { "x": 6, @@ -10181,7 +10181,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 3, @@ -10204,7 +10204,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 3, @@ -10227,7 +10227,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 4, @@ -10250,7 +10250,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149757116257579, "position": { "x": 4, @@ -10273,7 +10273,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 7, @@ -10296,7 +10296,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 7, @@ -10319,7 +10319,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 6, @@ -10342,7 +10342,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149757116257579, "position": { "x": 6, @@ -10365,7 +10365,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199755789024013, "position": { "x": 7, @@ -10388,7 +10388,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224755125407231, "position": { "x": 7, @@ -10411,7 +10411,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224755125407231, "position": { "x": 6, @@ -10434,7 +10434,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4434.0, + "noteOrder": 8862.0, "time": 0.9224755125407231, "position": { "x": 6, @@ -10457,7 +10457,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249754461790448, "position": { "x": 3, @@ -10480,7 +10480,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4452, + "noteOrder": 8904, "time": 0.9274753798173666, "position": { "x": 3, @@ -10503,7 +10503,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 4452, + "noteOrder": 8904, "time": 0.9274753798173666, "position": { "x": 4, @@ -10526,7 +10526,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 4458.0, + "noteOrder": 8910.0, "time": 0.9274753798173666, "position": { "x": 4, @@ -10549,7 +10549,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 97.5, + "noteOrder": 193.5, "time": 0.019999469106573943, "position": { "x": 5, @@ -10577,7 +10577,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 121.5, + "noteOrder": 241.5, "time": 0.024999336383217427, "position": { "x": 5, @@ -10605,7 +10605,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 193.5, + "noteOrder": 385.5, "time": 0.039998938213147886, "position": { "x": 5, @@ -10633,7 +10633,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 217.5, + "noteOrder": 433.5, "time": 0.04499880548979137, "position": { "x": 5, @@ -10661,7 +10661,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 276.0, + "noteOrder": 540.0, "time": 0.054998540043078345, "position": { "x": 5, @@ -10689,7 +10689,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 505.5, + "noteOrder": 1009.5, "time": 0.10499721280951319, "position": { "x": 5, @@ -10717,7 +10717,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 553.5, + "noteOrder": 1105.5, "time": 0.11499694736280017, "position": { "x": 5, @@ -10745,7 +10745,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 672.0, + "noteOrder": 1332.0, "time": 0.13749635010769584, "position": { "x": 5, @@ -10773,7 +10773,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 889.5, + "noteOrder": 1777.5, "time": 0.18499508923580896, "position": { "x": 5, @@ -10801,7 +10801,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 937.5, + "noteOrder": 1873.5, "time": 0.1949948237890959, "position": { "x": 5, @@ -10829,7 +10829,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1056.0, + "noteOrder": 2100.0, "time": 0.2174942265339916, "position": { "x": 5, @@ -10857,7 +10857,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1273.5, + "noteOrder": 2545.5, "time": 0.26499296566210473, "position": { "x": 5, @@ -10885,7 +10885,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1585.5, + "noteOrder": 3169.5, "time": 0.32999124025847004, "position": { "x": 5, @@ -10913,7 +10913,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1609.5, + "noteOrder": 3217.5, "time": 0.3349911075351135, "position": { "x": 5, @@ -10941,7 +10941,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1897.5, + "noteOrder": 3793.5, "time": 0.39498951485483536, "position": { "x": 5, @@ -10969,7 +10969,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1909.5, + "noteOrder": 3817.5, "time": 0.3974894484931571, "position": { "x": 5, @@ -10997,7 +10997,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1993.5, + "noteOrder": 3985.5, "time": 0.4149889839614093, "position": { "x": 5, @@ -11025,7 +11025,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2112.0, + "noteOrder": 4212.0, "time": 0.43748838670630497, "position": { "x": 5, @@ -11053,7 +11053,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2208.0, + "noteOrder": 4404.0, "time": 0.45748785581287893, "position": { "x": 5, @@ -11081,7 +11081,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2304.0, + "noteOrder": 4596.0, "time": 0.4774873249194529, "position": { "x": 5, @@ -11109,7 +11109,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2400.0, + "noteOrder": 4788.0, "time": 0.4974867940260268, "position": { "x": 5, @@ -11137,7 +11137,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2496.0, + "noteOrder": 4980.0, "time": 0.5174862631326007, "position": { "x": 5, @@ -11165,7 +11165,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2592.0, + "noteOrder": 5172.0, "time": 0.5374857322391747, "position": { "x": 5, @@ -11193,7 +11193,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2689.5, + "noteOrder": 5377.5, "time": 0.5599851349840703, "position": { "x": 5, @@ -11221,7 +11221,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2713.5, + "noteOrder": 5425.5, "time": 0.5649850022607138, "position": { "x": 5, @@ -11249,7 +11249,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2737.5, + "noteOrder": 5473.5, "time": 0.5699848695373574, "position": { "x": 5, @@ -11277,7 +11277,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2761.5, + "noteOrder": 5521.5, "time": 0.5749847368140009, "position": { "x": 5, @@ -11305,7 +11305,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2784.0, + "noteOrder": 5556.0, "time": 0.5774846704523225, "position": { "x": 5, @@ -11333,7 +11333,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3121.5, + "noteOrder": 6241.5, "time": 0.649982745963653, "position": { "x": 5, @@ -11361,7 +11361,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3145.5, + "noteOrder": 6289.5, "time": 0.6549826132402965, "position": { "x": 5, @@ -11389,7 +11389,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3313.5, + "noteOrder": 6625.5, "time": 0.6899816841768011, "position": { "x": 5, @@ -11417,7 +11417,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3337.5, + "noteOrder": 6673.5, "time": 0.6949815514534445, "position": { "x": 5, @@ -11445,7 +11445,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3444.0, + "noteOrder": 6876.0, "time": 0.7149810205600183, "position": { "x": 5, @@ -11473,7 +11473,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3673.5, + "noteOrder": 7345.5, "time": 0.7649796933264533, "position": { "x": 5, @@ -11501,7 +11501,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3721.5, + "noteOrder": 7441.5, "time": 0.7749794278797402, "position": { "x": 5, @@ -11529,7 +11529,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3840.0, + "noteOrder": 7668.0, "time": 0.797478830624636, "position": { "x": 5, @@ -11557,7 +11557,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3985.5, + "noteOrder": 7969.5, "time": 0.8299779679228186, "position": { "x": 5, @@ -11585,7 +11585,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4009.5, + "noteOrder": 8017.5, "time": 0.8349778351994621, "position": { "x": 5, @@ -11613,7 +11613,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4297.5, + "noteOrder": 8593.5, "time": 0.894976242519184, "position": { "x": 5, @@ -11641,7 +11641,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4309.5, + "noteOrder": 8617.5, "time": 0.8974761761575056, "position": { "x": 5, @@ -11669,7 +11669,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4393.5, + "noteOrder": 8785.5, "time": 0.9149757116257579, "position": { "x": 5, @@ -11697,7 +11697,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4512.0, + "noteOrder": 9012.0, "time": 0.9374751143706535, "position": { "x": 5, @@ -11725,7 +11725,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4513.5, + "noteOrder": 9025.5, "time": 0.9399750480089752, "position": { "x": 5, @@ -11753,7 +11753,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4537.5, + "noteOrder": 9073.5, "time": 0.9449749152856188, "position": { "x": 5, @@ -11781,7 +11781,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4561.5, + "noteOrder": 9121.5, "time": 0.9499747825622623, "position": { "x": 5, @@ -11809,7 +11809,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4585.5, + "noteOrder": 9169.5, "time": 0.9549746498389058, "position": { "x": 5, @@ -11837,7 +11837,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 9217.5, "time": 0.9599745171155492, "position": { "x": 5, @@ -11878,7 +11878,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "4.62", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a_blockless.json index 2562d82a..5c728545 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) SPONGEBOB EDITION difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 240, + "noteOrder": 480, "time": 0.049998672766434854, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 252, + "noteOrder": 504, "time": 0.05249860640475659, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 4, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999734553286971, "position": { "x": 6, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999708008615669, "position": { "x": 4, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 648, + "noteOrder": 1296, "time": 0.1349964164693741, "position": { "x": 3, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499615102266109, "position": { "x": 8, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499588557594804, "position": { "x": 2, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 5, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999522195916548, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999495651245246, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 2, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 8, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699928329387482, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.2749927002153917, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999256749203516, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 8, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 4, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.339990974811757, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.34499084208840053, "position": { "x": 5, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.349990709365044, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549905766416875, "position": { "x": 5, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874897139398701, "position": { "x": 4, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874897139398701, "position": { "x": 6, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 3, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.4249887185146963, "position": { "x": 7, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998858579133975, "position": { "x": 3, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 2076, + "noteOrder": 4152, "time": 0.4324885194296615, "position": { "x": 7, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 2088, + "noteOrder": 4176, "time": 0.4349884530679832, "position": { "x": 3, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 3, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 7, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.44498818762127024, "position": { "x": 3, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.44998805489791366, "position": { "x": 7, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2172, + "noteOrder": 4344, "time": 0.4524879885362354, "position": { "x": 3, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2184, + "noteOrder": 4368, "time": 0.45498792217455714, "position": { "x": 7, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2280, + "noteOrder": 4560, "time": 0.47498739128113115, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 7, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 3, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2376, + "noteOrder": 4752, "time": 0.49498686038770506, "position": { "x": 3, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 7, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 3, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049865949409921, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099864622176355, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2460, + "noteOrder": 4920, "time": 0.5124863958559572, "position": { "x": 7, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2472, + "noteOrder": 4944, "time": 0.514986329494279, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 7, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.524986064047566, "position": { "x": 3, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 5, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.5299859313242095, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2556, + "noteOrder": 5112, "time": 0.5324858649625311, "position": { "x": 3, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2568, + "noteOrder": 5136, "time": 0.5349857986008529, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 7, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 3, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2664, + "noteOrder": 5328, "time": 0.554985267707427, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2676, + "noteOrder": 5352, "time": 0.5574852013457486, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 2700, + "noteOrder": 5400, "time": 0.5624850686223921, "position": { "x": 7, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 2724, + "noteOrder": 5448, "time": 0.5674849358990356, "position": { "x": 4, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 2748, + "noteOrder": 5496, "time": 0.5724848031756791, "position": { "x": 7, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 6, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 5, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349831441337227, "position": { "x": 5, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 5, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.649982745963653, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 7, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3372, + "noteOrder": 6744, "time": 0.7024813523684097, "position": { "x": 3, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3384, + "noteOrder": 6768, "time": 0.7049812860067315, "position": { "x": 7, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3396, + "noteOrder": 6792, "time": 0.7074812196450532, "position": { "x": 3, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 6816, "time": 0.709981153283375, "position": { "x": 7, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3408, + "noteOrder": 6816, "time": 0.709981153283375, "position": { "x": 3, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 6, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599798260498098, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699795606030968, "position": { "x": 6, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 7, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249781006461752, "position": { "x": 8, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 4, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399777024761055, "position": { "x": 7, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 5, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499774370293925, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 5, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 8520, "time": 0.8874764416042187, "position": { "x": 6, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4260, + "noteOrder": 8520, "time": 0.8874764416042187, "position": { "x": 4, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 6, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299753134556883, "position": { "x": 7, @@ -1903,7 +1903,7 @@ "isPlayAudio": false }, { - "noteOrder": 4476, + "noteOrder": 8952, "time": 0.93247524709401, "position": { "x": 5, @@ -1923,7 +1923,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 4, @@ -1947,7 +1947,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 288, "time": 0.02999920365986091, "position": { "x": 7, @@ -1970,7 +1970,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 156, + "noteOrder": 312, "time": 0.032499137298182657, "position": { "x": 7, @@ -1993,7 +1993,7 @@ { "lineGroupId": 3, "indexInLine": 3, - "noteOrder": 156, + "noteOrder": 312, "time": 0.032499137298182657, "position": { "x": 6, @@ -2016,7 +2016,7 @@ { "lineGroupId": 3, "indexInLine": 4, - "noteOrder": 162.0, + "noteOrder": 318.0, "time": 0.032499137298182657, "position": { "x": 6, @@ -2039,7 +2039,7 @@ { "lineGroupId": 4, "indexInLine": 1, - "noteOrder": 168, + "noteOrder": 336, "time": 0.034999070936504395, "position": { "x": 3, @@ -2062,7 +2062,7 @@ { "lineGroupId": 4, "indexInLine": 2, - "noteOrder": 180, + "noteOrder": 360, "time": 0.03749900457482614, "position": { "x": 3, @@ -2085,7 +2085,7 @@ { "lineGroupId": 4, "indexInLine": 3, - "noteOrder": 180, + "noteOrder": 360, "time": 0.03749900457482614, "position": { "x": 4, @@ -2108,7 +2108,7 @@ { "lineGroupId": 4, "indexInLine": 4, - "noteOrder": 186.0, + "noteOrder": 366.0, "time": 0.03749900457482614, "position": { "x": 4, @@ -2131,7 +2131,7 @@ { "lineGroupId": 10, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999840731972182, "position": { "x": 6, @@ -2154,7 +2154,7 @@ { "lineGroupId": 10, "indexInLine": 2, - "noteOrder": 300, + "noteOrder": 600, "time": 0.06249834095804357, "position": { "x": 6, @@ -2177,7 +2177,7 @@ { "lineGroupId": 10, "indexInLine": 3, - "noteOrder": 300, + "noteOrder": 600, "time": 0.06249834095804357, "position": { "x": 5, @@ -2200,7 +2200,7 @@ { "lineGroupId": 10, "indexInLine": 4, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 5, @@ -2223,7 +2223,7 @@ { "lineGroupId": 10, "indexInLine": 5, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 3, @@ -2246,7 +2246,7 @@ { "lineGroupId": 10, "indexInLine": 6, - "noteOrder": 318.0, + "noteOrder": 630.0, "time": 0.06499827459636531, "position": { "x": 3, @@ -2269,7 +2269,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 6, @@ -2292,7 +2292,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 324, + "noteOrder": 648, "time": 0.06749820823468705, "position": { "x": 6, @@ -2315,7 +2315,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 324, + "noteOrder": 648, "time": 0.06749820823468705, "position": { "x": 5, @@ -2338,7 +2338,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 5, @@ -2361,7 +2361,7 @@ { "lineGroupId": 11, "indexInLine": 5, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 3, @@ -2384,7 +2384,7 @@ { "lineGroupId": 11, "indexInLine": 6, - "noteOrder": 342.0, + "noteOrder": 678.0, "time": 0.06999814187300879, "position": { "x": 3, @@ -2407,7 +2407,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 6, @@ -2430,7 +2430,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249807551133054, "position": { "x": 6, @@ -2453,7 +2453,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249807551133054, "position": { "x": 5, @@ -2476,7 +2476,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 5, @@ -2499,7 +2499,7 @@ { "lineGroupId": 12, "indexInLine": 5, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 3, @@ -2522,7 +2522,7 @@ { "lineGroupId": 12, "indexInLine": 6, - "noteOrder": 366.0, + "noteOrder": 726.0, "time": 0.07499800914965228, "position": { "x": 3, @@ -2545,7 +2545,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 6, @@ -2568,7 +2568,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07749794278797402, "position": { "x": 6, @@ -2591,7 +2591,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07749794278797402, "position": { "x": 5, @@ -2614,7 +2614,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 5, @@ -2637,7 +2637,7 @@ { "lineGroupId": 13, "indexInLine": 5, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 3, @@ -2660,7 +2660,7 @@ { "lineGroupId": 13, "indexInLine": 6, - "noteOrder": 390.0, + "noteOrder": 774.0, "time": 0.07999787642629577, "position": { "x": 3, @@ -2683,7 +2683,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 6, @@ -2706,7 +2706,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -2729,7 +2729,7 @@ { "lineGroupId": 16, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999761097958274, "position": { "x": 7, @@ -2752,7 +2752,7 @@ { "lineGroupId": 16, "indexInLine": 2, - "noteOrder": 444, + "noteOrder": 888, "time": 0.09249754461790448, "position": { "x": 7, @@ -2775,7 +2775,7 @@ { "lineGroupId": 16, "indexInLine": 3, - "noteOrder": 444, + "noteOrder": 888, "time": 0.09249754461790448, "position": { "x": 6, @@ -2798,7 +2798,7 @@ { "lineGroupId": 16, "indexInLine": 4, - "noteOrder": 450.0, + "noteOrder": 894.0, "time": 0.09249754461790448, "position": { "x": 6, @@ -2821,7 +2821,7 @@ { "lineGroupId": 17, "indexInLine": 1, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 3, @@ -2844,7 +2844,7 @@ { "lineGroupId": 17, "indexInLine": 2, - "noteOrder": 468, + "noteOrder": 936, "time": 0.09749741189454796, "position": { "x": 3, @@ -2867,7 +2867,7 @@ { "lineGroupId": 17, "indexInLine": 3, - "noteOrder": 468, + "noteOrder": 936, "time": 0.09749741189454796, "position": { "x": 4, @@ -2890,7 +2890,7 @@ { "lineGroupId": 17, "indexInLine": 4, - "noteOrder": 474.0, + "noteOrder": 942.0, "time": 0.09749741189454796, "position": { "x": 4, @@ -2913,7 +2913,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999681463944364, "position": { "x": 7, @@ -2936,7 +2936,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 588, + "noteOrder": 1176, "time": 0.1224967482777654, "position": { "x": 7, @@ -2959,7 +2959,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 588, + "noteOrder": 1176, "time": 0.1224967482777654, "position": { "x": 6, @@ -2982,7 +2982,7 @@ { "lineGroupId": 22, "indexInLine": 4, - "noteOrder": 594.0, + "noteOrder": 1182.0, "time": 0.1224967482777654, "position": { "x": 6, @@ -3005,7 +3005,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499668191608714, "position": { "x": 3, @@ -3028,7 +3028,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 612, + "noteOrder": 1224, "time": 0.1274966155544089, "position": { "x": 3, @@ -3051,7 +3051,7 @@ { "lineGroupId": 23, "indexInLine": 3, - "noteOrder": 612, + "noteOrder": 1224, "time": 0.1274966155544089, "position": { "x": 4, @@ -3074,7 +3074,7 @@ { "lineGroupId": 23, "indexInLine": 4, - "noteOrder": 618.0, + "noteOrder": 1230.0, "time": 0.1274966155544089, "position": { "x": 4, @@ -3097,7 +3097,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 624, + "noteOrder": 1248, "time": 0.12999654919273063, "position": { "x": 7, @@ -3120,7 +3120,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 636, + "noteOrder": 1272, "time": 0.13249648283105236, "position": { "x": 7, @@ -3143,7 +3143,7 @@ { "lineGroupId": 24, "indexInLine": 3, - "noteOrder": 636, + "noteOrder": 1272, "time": 0.13249648283105236, "position": { "x": 6, @@ -3166,7 +3166,7 @@ { "lineGroupId": 24, "indexInLine": 4, - "noteOrder": 642.0, + "noteOrder": 1278.0, "time": 0.13249648283105236, "position": { "x": 6, @@ -3189,7 +3189,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999628374601758, "position": { "x": 6, @@ -3212,7 +3212,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 6, @@ -3235,7 +3235,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 4, @@ -3258,7 +3258,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 4, @@ -3281,7 +3281,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 7, @@ -3304,7 +3304,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 7, @@ -3327,7 +3327,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 3, @@ -3350,7 +3350,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 828, + "noteOrder": 1656, "time": 0.17249542104420026, "position": { "x": 3, @@ -3373,7 +3373,7 @@ { "lineGroupId": 33, "indexInLine": 3, - "noteOrder": 828, + "noteOrder": 1656, "time": 0.17249542104420026, "position": { "x": 4, @@ -3396,7 +3396,7 @@ { "lineGroupId": 33, "indexInLine": 4, - "noteOrder": 834.0, + "noteOrder": 1662.0, "time": 0.17249542104420026, "position": { "x": 4, @@ -3419,7 +3419,7 @@ { "lineGroupId": 34, "indexInLine": 1, - "noteOrder": 840, + "noteOrder": 1680, "time": 0.174995354682522, "position": { "x": 7, @@ -3442,7 +3442,7 @@ { "lineGroupId": 34, "indexInLine": 2, - "noteOrder": 852, + "noteOrder": 1704, "time": 0.17749528832084374, "position": { "x": 7, @@ -3465,7 +3465,7 @@ { "lineGroupId": 34, "indexInLine": 3, - "noteOrder": 852, + "noteOrder": 1704, "time": 0.17749528832084374, "position": { "x": 6, @@ -3488,7 +3488,7 @@ { "lineGroupId": 34, "indexInLine": 4, - "noteOrder": 858.0, + "noteOrder": 1710.0, "time": 0.17749528832084374, "position": { "x": 6, @@ -3511,7 +3511,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999469106573942, "position": { "x": 3, @@ -3534,7 +3534,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 972, + "noteOrder": 1944, "time": 0.20249462470406115, "position": { "x": 3, @@ -3557,7 +3557,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 972, + "noteOrder": 1944, "time": 0.20249462470406115, "position": { "x": 4, @@ -3580,7 +3580,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 978.0, + "noteOrder": 1950.0, "time": 0.20249462470406115, "position": { "x": 4, @@ -3603,7 +3603,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 7, @@ -3626,7 +3626,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 996, + "noteOrder": 1992, "time": 0.20749449198070466, "position": { "x": 7, @@ -3649,7 +3649,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 996, + "noteOrder": 1992, "time": 0.20749449198070466, "position": { "x": 6, @@ -3672,7 +3672,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1002.0, + "noteOrder": 1998.0, "time": 0.20749449198070466, "position": { "x": 6, @@ -3695,7 +3695,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 3, @@ -3718,7 +3718,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249435925734814, "position": { "x": 3, @@ -3741,7 +3741,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249435925734814, "position": { "x": 4, @@ -3764,7 +3764,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1026.0, + "noteOrder": 2046.0, "time": 0.21249435925734814, "position": { "x": 4, @@ -3787,7 +3787,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 7, @@ -3810,7 +3810,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1044, + "noteOrder": 2088, "time": 0.2174942265339916, "position": { "x": 7, @@ -3833,7 +3833,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999416017231338, "position": { "x": 4, @@ -3856,7 +3856,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 4, @@ -3879,7 +3879,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 5, @@ -3902,7 +3902,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 5, @@ -3925,7 +3925,7 @@ { "lineGroupId": 44, "indexInLine": 5, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 7, @@ -3948,7 +3948,7 @@ { "lineGroupId": 44, "indexInLine": 6, - "noteOrder": 1086.0, + "noteOrder": 2166.0, "time": 0.22499402744895683, "position": { "x": 7, @@ -3971,7 +3971,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 4, @@ -3994,7 +3994,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 4, @@ -4017,7 +4017,7 @@ { "lineGroupId": 45, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 5, @@ -4040,7 +4040,7 @@ { "lineGroupId": 45, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 5, @@ -4063,7 +4063,7 @@ { "lineGroupId": 45, "indexInLine": 5, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 7, @@ -4086,7 +4086,7 @@ { "lineGroupId": 45, "indexInLine": 6, - "noteOrder": 1110.0, + "noteOrder": 2214.0, "time": 0.22999389472560033, "position": { "x": 7, @@ -4109,7 +4109,7 @@ { "lineGroupId": 46, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 4, @@ -4132,7 +4132,7 @@ { "lineGroupId": 46, "indexInLine": 2, - "noteOrder": 1116, + "noteOrder": 2232, "time": 0.23249382836392207, "position": { "x": 4, @@ -4155,7 +4155,7 @@ { "lineGroupId": 46, "indexInLine": 3, - "noteOrder": 1116, + "noteOrder": 2232, "time": 0.23249382836392207, "position": { "x": 5, @@ -4178,7 +4178,7 @@ { "lineGroupId": 46, "indexInLine": 4, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 5, @@ -4201,7 +4201,7 @@ { "lineGroupId": 46, "indexInLine": 5, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 7, @@ -4224,7 +4224,7 @@ { "lineGroupId": 46, "indexInLine": 6, - "noteOrder": 1134.0, + "noteOrder": 2262.0, "time": 0.2349937620022438, "position": { "x": 7, @@ -4247,7 +4247,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349937620022438, "position": { "x": 4, @@ -4270,7 +4270,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1140, + "noteOrder": 2280, "time": 0.23749369564056558, "position": { "x": 4, @@ -4293,7 +4293,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1140, + "noteOrder": 2280, "time": 0.23749369564056558, "position": { "x": 5, @@ -4316,7 +4316,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 5, @@ -4339,7 +4339,7 @@ { "lineGroupId": 47, "indexInLine": 5, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 7, @@ -4362,7 +4362,7 @@ { "lineGroupId": 47, "indexInLine": 6, - "noteOrder": 1158.0, + "noteOrder": 2310.0, "time": 0.2399936292788873, "position": { "x": 7, @@ -4385,7 +4385,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 4, @@ -4408,7 +4408,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 4, @@ -4431,7 +4431,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 6, @@ -4454,7 +4454,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 6, @@ -4477,7 +4477,7 @@ { "lineGroupId": 58, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28999230204532217, "position": { "x": 6, @@ -4500,7 +4500,7 @@ { "lineGroupId": 58, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.2924922356836439, "position": { "x": 6, @@ -4523,7 +4523,7 @@ { "lineGroupId": 58, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.2924922356836439, "position": { "x": 5, @@ -4546,7 +4546,7 @@ { "lineGroupId": 58, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 2814.0, "time": 0.2924922356836439, "position": { "x": 5, @@ -4569,7 +4569,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 4, @@ -4592,7 +4592,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1428, + "noteOrder": 2856, "time": 0.2974921029602874, "position": { "x": 4, @@ -4615,7 +4615,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1428, + "noteOrder": 2856, "time": 0.2974921029602874, "position": { "x": 5, @@ -4638,7 +4638,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1434.0, + "noteOrder": 2862.0, "time": 0.2974921029602874, "position": { "x": 5, @@ -4661,7 +4661,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999920365986091, "position": { "x": 6, @@ -4684,7 +4684,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 6, @@ -4707,7 +4707,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 5, @@ -4730,7 +4730,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 5, @@ -4753,7 +4753,7 @@ { "lineGroupId": 60, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 3, @@ -4776,7 +4776,7 @@ { "lineGroupId": 60, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 2934.0, "time": 0.3049919038752526, "position": { "x": 3, @@ -4799,7 +4799,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 6, @@ -4822,7 +4822,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 6, @@ -4845,7 +4845,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 5, @@ -4868,7 +4868,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 5, @@ -4891,7 +4891,7 @@ { "lineGroupId": 61, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 3, @@ -4914,7 +4914,7 @@ { "lineGroupId": 61, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 2982.0, "time": 0.3099917711518961, "position": { "x": 3, @@ -4937,7 +4937,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 6, @@ -4960,7 +4960,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1500, + "noteOrder": 3000, "time": 0.3124917047902179, "position": { "x": 6, @@ -4983,7 +4983,7 @@ { "lineGroupId": 62, "indexInLine": 3, - "noteOrder": 1500, + "noteOrder": 3000, "time": 0.3124917047902179, "position": { "x": 5, @@ -5006,7 +5006,7 @@ { "lineGroupId": 62, "indexInLine": 4, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 5, @@ -5029,7 +5029,7 @@ { "lineGroupId": 62, "indexInLine": 5, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 3, @@ -5052,7 +5052,7 @@ { "lineGroupId": 62, "indexInLine": 6, - "noteOrder": 1518.0, + "noteOrder": 3030.0, "time": 0.3149916384285396, "position": { "x": 3, @@ -5075,7 +5075,7 @@ { "lineGroupId": 63, "indexInLine": 1, - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149916384285396, "position": { "x": 6, @@ -5098,7 +5098,7 @@ { "lineGroupId": 63, "indexInLine": 2, - "noteOrder": 1524, + "noteOrder": 3048, "time": 0.31749157206686135, "position": { "x": 6, @@ -5121,7 +5121,7 @@ { "lineGroupId": 63, "indexInLine": 3, - "noteOrder": 1524, + "noteOrder": 3048, "time": 0.31749157206686135, "position": { "x": 5, @@ -5144,7 +5144,7 @@ { "lineGroupId": 63, "indexInLine": 4, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 5, @@ -5167,7 +5167,7 @@ { "lineGroupId": 63, "indexInLine": 5, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 3, @@ -5190,7 +5190,7 @@ { "lineGroupId": 63, "indexInLine": 6, - "noteOrder": 1542.0, + "noteOrder": 3078.0, "time": 0.3199915057051831, "position": { "x": 3, @@ -5213,7 +5213,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 6, @@ -5236,7 +5236,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 6, @@ -5259,7 +5259,7 @@ { "lineGroupId": 73, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.35999044391833096, "position": { "x": 7, @@ -5282,7 +5282,7 @@ { "lineGroupId": 73, "indexInLine": 2, - "noteOrder": 1740, + "noteOrder": 3480, "time": 0.3624903775566527, "position": { "x": 7, @@ -5305,7 +5305,7 @@ { "lineGroupId": 73, "indexInLine": 3, - "noteOrder": 1740, + "noteOrder": 3480, "time": 0.3624903775566527, "position": { "x": 6, @@ -5328,7 +5328,7 @@ { "lineGroupId": 73, "indexInLine": 4, - "noteOrder": 1746.0, + "noteOrder": 3486.0, "time": 0.3624903775566527, "position": { "x": 6, @@ -5351,7 +5351,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 1752, + "noteOrder": 3504, "time": 0.36499031119497444, "position": { "x": 3, @@ -5374,7 +5374,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 1764, + "noteOrder": 3528, "time": 0.3674902448332962, "position": { "x": 3, @@ -5397,7 +5397,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 1764, + "noteOrder": 3528, "time": 0.3674902448332962, "position": { "x": 4, @@ -5420,7 +5420,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 1770.0, + "noteOrder": 3534.0, "time": 0.3674902448332962, "position": { "x": 4, @@ -5443,7 +5443,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 7, @@ -5466,7 +5466,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.37249011210993965, "position": { "x": 7, @@ -5489,7 +5489,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.37249011210993965, "position": { "x": 6, @@ -5512,7 +5512,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 1794.0, + "noteOrder": 3582.0, "time": 0.37249011210993965, "position": { "x": 6, @@ -5535,7 +5535,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 3, @@ -5558,7 +5558,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.3774899793865832, "position": { "x": 3, @@ -5581,7 +5581,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.3774899793865832, "position": { "x": 4, @@ -5604,7 +5604,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 1818.0, + "noteOrder": 3630.0, "time": 0.3774899793865832, "position": { "x": 4, @@ -5627,7 +5627,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.3799899130249049, "position": { "x": 7, @@ -5650,7 +5650,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 7, @@ -5673,7 +5673,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 5, @@ -5696,7 +5696,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 5, @@ -5719,7 +5719,7 @@ { "lineGroupId": 77, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 6, @@ -5742,7 +5742,7 @@ { "lineGroupId": 77, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849897803015484, "position": { "x": 6, @@ -5765,7 +5765,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.3799899130249049, "position": { "x": 3, @@ -5788,7 +5788,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 3, @@ -5811,7 +5811,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248984666322666, "position": { "x": 5, @@ -5834,7 +5834,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 5, @@ -5857,7 +5857,7 @@ { "lineGroupId": 78, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 4, @@ -5880,7 +5880,7 @@ { "lineGroupId": 78, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849897803015484, "position": { "x": 4, @@ -5903,7 +5903,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.39998938213147883, "position": { "x": 3, @@ -5926,7 +5926,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 1932, + "noteOrder": 3864, "time": 0.40248931576980057, "position": { "x": 3, @@ -5949,7 +5949,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 1932, + "noteOrder": 3864, "time": 0.40248931576980057, "position": { "x": 4, @@ -5972,7 +5972,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 1938.0, + "noteOrder": 3870.0, "time": 0.40248931576980057, "position": { "x": 4, @@ -5995,7 +5995,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.4049892494081223, "position": { "x": 7, @@ -6018,7 +6018,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 1956, + "noteOrder": 3912, "time": 0.4074891830464441, "position": { "x": 7, @@ -6041,7 +6041,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 1956, + "noteOrder": 3912, "time": 0.4074891830464441, "position": { "x": 6, @@ -6064,7 +6064,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 1962.0, + "noteOrder": 3918.0, "time": 0.4074891830464441, "position": { "x": 6, @@ -6087,7 +6087,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 3, @@ -6110,7 +6110,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 3, @@ -6133,7 +6133,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 4, @@ -6156,7 +6156,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.4149889839614093, "position": { "x": 4, @@ -6179,7 +6179,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 7, @@ -6202,7 +6202,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 7, @@ -6225,7 +6225,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 1980, + "noteOrder": 3960, "time": 0.4124890503230876, "position": { "x": 6, @@ -6248,7 +6248,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.4149889839614093, "position": { "x": 6, @@ -6271,7 +6271,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498765672784415, "position": { "x": 7, @@ -6294,7 +6294,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 7, @@ -6317,7 +6317,7 @@ { "lineGroupId": 106, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 6, @@ -6340,7 +6340,7 @@ { "lineGroupId": 106, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.4674875903661659, "position": { "x": 6, @@ -6363,7 +6363,7 @@ { "lineGroupId": 107, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699875240044876, "position": { "x": 3, @@ -6386,7 +6386,7 @@ { "lineGroupId": 107, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.4724874576428094, "position": { "x": 3, @@ -6409,7 +6409,7 @@ { "lineGroupId": 107, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.4724874576428094, "position": { "x": 4, @@ -6432,7 +6432,7 @@ { "lineGroupId": 107, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 4542.0, "time": 0.4724874576428094, "position": { "x": 4, @@ -6455,7 +6455,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.48498712583441805, "position": { "x": 3, @@ -6478,7 +6478,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 3, @@ -6501,7 +6501,7 @@ { "lineGroupId": 112, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 4, @@ -6524,7 +6524,7 @@ { "lineGroupId": 112, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.48748705947273985, "position": { "x": 4, @@ -6547,7 +6547,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.4899869931110616, "position": { "x": 7, @@ -6570,7 +6570,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.4924869267493833, "position": { "x": 7, @@ -6593,7 +6593,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.4924869267493833, "position": { "x": 6, @@ -6616,7 +6616,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 4734.0, "time": 0.4924869267493833, "position": { "x": 6, @@ -6639,7 +6639,7 @@ { "lineGroupId": 134, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449855331541399, "position": { "x": 7, @@ -6662,7 +6662,7 @@ { "lineGroupId": 134, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 7, @@ -6685,7 +6685,7 @@ { "lineGroupId": 134, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 6, @@ -6708,7 +6708,7 @@ { "lineGroupId": 134, "indexInLine": 4, - "noteOrder": 2634.0, + "noteOrder": 5262.0, "time": 0.5474854667924617, "position": { "x": 6, @@ -6731,7 +6731,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499854004307834, "position": { "x": 3, @@ -6754,7 +6754,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 2652, + "noteOrder": 5304, "time": 0.5524853340691052, "position": { "x": 3, @@ -6777,7 +6777,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 2652, + "noteOrder": 5304, "time": 0.5524853340691052, "position": { "x": 4, @@ -6800,7 +6800,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 2658.0, + "noteOrder": 5310.0, "time": 0.5524853340691052, "position": { "x": 4, @@ -6823,7 +6823,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799846040906443, "position": { "x": 7, @@ -6846,7 +6846,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 7, @@ -6869,7 +6869,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 5, @@ -6892,7 +6892,7 @@ { "lineGroupId": 148, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 3, @@ -6915,7 +6915,7 @@ { "lineGroupId": 148, "indexInLine": 2, - "noteOrder": 2844, + "noteOrder": 5688, "time": 0.5924842722822531, "position": { "x": 3, @@ -6938,7 +6938,7 @@ { "lineGroupId": 148, "indexInLine": 3, - "noteOrder": 2844, + "noteOrder": 5688, "time": 0.5924842722822531, "position": { "x": 4, @@ -6961,7 +6961,7 @@ { "lineGroupId": 148, "indexInLine": 4, - "noteOrder": 2850.0, + "noteOrder": 5694.0, "time": 0.5924842722822531, "position": { "x": 4, @@ -6984,7 +6984,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 5, @@ -7007,7 +7007,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 2868, + "noteOrder": 5736, "time": 0.5974841395588966, "position": { "x": 5, @@ -7030,7 +7030,7 @@ { "lineGroupId": 149, "indexInLine": 3, - "noteOrder": 2868, + "noteOrder": 5736, "time": 0.5974841395588966, "position": { "x": 4, @@ -7053,7 +7053,7 @@ { "lineGroupId": 149, "indexInLine": 4, - "noteOrder": 2874.0, + "noteOrder": 5742.0, "time": 0.5974841395588966, "position": { "x": 4, @@ -7076,7 +7076,7 @@ { "lineGroupId": 150, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999840731972182, "position": { "x": 3, @@ -7099,7 +7099,7 @@ { "lineGroupId": 150, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 3, @@ -7122,7 +7122,7 @@ { "lineGroupId": 150, "indexInLine": 3, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 5, @@ -7145,7 +7145,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 7, @@ -7168,7 +7168,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 2940, + "noteOrder": 5880, "time": 0.612483741388827, "position": { "x": 7, @@ -7191,7 +7191,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 2940, + "noteOrder": 5880, "time": 0.612483741388827, "position": { "x": 6, @@ -7214,7 +7214,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 2946.0, + "noteOrder": 5886.0, "time": 0.612483741388827, "position": { "x": 6, @@ -7237,7 +7237,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 5, @@ -7260,7 +7260,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 2964, + "noteOrder": 5928, "time": 0.6174836086654704, "position": { "x": 5, @@ -7283,7 +7283,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 2964, + "noteOrder": 5928, "time": 0.6174836086654704, "position": { "x": 6, @@ -7306,7 +7306,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 2970.0, + "noteOrder": 5934.0, "time": 0.6174836086654704, "position": { "x": 6, @@ -7329,7 +7329,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199835423037922, "position": { "x": 7, @@ -7352,7 +7352,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 7, @@ -7375,7 +7375,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 3, @@ -7398,7 +7398,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 3, @@ -7421,7 +7421,7 @@ { "lineGroupId": 158, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 7, @@ -7444,7 +7444,7 @@ { "lineGroupId": 158, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.649982745963653, "position": { "x": 7, @@ -7467,7 +7467,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599824805169401, "position": { "x": 3, @@ -7490,7 +7490,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 3, @@ -7513,7 +7513,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 5, @@ -7536,7 +7536,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 5, @@ -7559,7 +7559,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 7, @@ -7582,7 +7582,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 7, @@ -7605,7 +7605,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 5, @@ -7628,7 +7628,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 5, @@ -7651,7 +7651,7 @@ { "lineGroupId": 167, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 3, @@ -7674,7 +7674,7 @@ { "lineGroupId": 167, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 3, @@ -7697,7 +7697,7 @@ { "lineGroupId": 178, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.7199808878366619, "position": { "x": 4, @@ -7720,7 +7720,7 @@ { "lineGroupId": 178, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 4, @@ -7743,7 +7743,7 @@ { "lineGroupId": 178, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 5, @@ -7766,7 +7766,7 @@ { "lineGroupId": 178, "indexInLine": 4, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 5, @@ -7789,7 +7789,7 @@ { "lineGroupId": 178, "indexInLine": 5, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 7, @@ -7812,7 +7812,7 @@ { "lineGroupId": 178, "indexInLine": 6, - "noteOrder": 3486.0, + "noteOrder": 6966.0, "time": 0.7249807551133054, "position": { "x": 7, @@ -7835,7 +7835,7 @@ { "lineGroupId": 179, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 4, @@ -7858,7 +7858,7 @@ { "lineGroupId": 179, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 4, @@ -7881,7 +7881,7 @@ { "lineGroupId": 179, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 5, @@ -7904,7 +7904,7 @@ { "lineGroupId": 179, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 5, @@ -7927,7 +7927,7 @@ { "lineGroupId": 179, "indexInLine": 5, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 7, @@ -7950,7 +7950,7 @@ { "lineGroupId": 179, "indexInLine": 6, - "noteOrder": 3510.0, + "noteOrder": 7014.0, "time": 0.7299806223899489, "position": { "x": 7, @@ -7973,7 +7973,7 @@ { "lineGroupId": 180, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 4, @@ -7996,7 +7996,7 @@ { "lineGroupId": 180, "indexInLine": 2, - "noteOrder": 3516, + "noteOrder": 7032, "time": 0.7324805560282707, "position": { "x": 4, @@ -8019,7 +8019,7 @@ { "lineGroupId": 180, "indexInLine": 3, - "noteOrder": 3516, + "noteOrder": 7032, "time": 0.7324805560282707, "position": { "x": 5, @@ -8042,7 +8042,7 @@ { "lineGroupId": 180, "indexInLine": 4, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 5, @@ -8065,7 +8065,7 @@ { "lineGroupId": 180, "indexInLine": 5, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 7, @@ -8088,7 +8088,7 @@ { "lineGroupId": 180, "indexInLine": 6, - "noteOrder": 3534.0, + "noteOrder": 7062.0, "time": 0.7349804896665924, "position": { "x": 7, @@ -8111,7 +8111,7 @@ { "lineGroupId": 181, "indexInLine": 1, - "noteOrder": 3528, + "noteOrder": 7056, "time": 0.7349804896665924, "position": { "x": 4, @@ -8134,7 +8134,7 @@ { "lineGroupId": 181, "indexInLine": 2, - "noteOrder": 3540, + "noteOrder": 7080, "time": 0.7374804233049141, "position": { "x": 4, @@ -8157,7 +8157,7 @@ { "lineGroupId": 181, "indexInLine": 3, - "noteOrder": 3540, + "noteOrder": 7080, "time": 0.7374804233049141, "position": { "x": 5, @@ -8180,7 +8180,7 @@ { "lineGroupId": 181, "indexInLine": 4, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 5, @@ -8203,7 +8203,7 @@ { "lineGroupId": 181, "indexInLine": 5, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 7, @@ -8226,7 +8226,7 @@ { "lineGroupId": 181, "indexInLine": 6, - "noteOrder": 3558.0, + "noteOrder": 7110.0, "time": 0.7399803569432358, "position": { "x": 7, @@ -8249,7 +8249,7 @@ { "lineGroupId": 182, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 4, @@ -8272,7 +8272,7 @@ { "lineGroupId": 182, "indexInLine": 2, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 4, @@ -8295,7 +8295,7 @@ { "lineGroupId": 184, "indexInLine": 1, - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499800914965228, "position": { "x": 3, @@ -8318,7 +8318,7 @@ { "lineGroupId": 184, "indexInLine": 2, - "noteOrder": 3612, + "noteOrder": 7224, "time": 0.7524800251348446, "position": { "x": 3, @@ -8341,7 +8341,7 @@ { "lineGroupId": 184, "indexInLine": 3, - "noteOrder": 3612, + "noteOrder": 7224, "time": 0.7524800251348446, "position": { "x": 4, @@ -8364,7 +8364,7 @@ { "lineGroupId": 184, "indexInLine": 4, - "noteOrder": 3618.0, + "noteOrder": 7230.0, "time": 0.7524800251348446, "position": { "x": 4, @@ -8387,7 +8387,7 @@ { "lineGroupId": 185, "indexInLine": 1, - "noteOrder": 3624, + "noteOrder": 7248, "time": 0.7549799587731664, "position": { "x": 7, @@ -8410,7 +8410,7 @@ { "lineGroupId": 185, "indexInLine": 2, - "noteOrder": 3636, + "noteOrder": 7272, "time": 0.757479892411488, "position": { "x": 7, @@ -8433,7 +8433,7 @@ { "lineGroupId": 185, "indexInLine": 3, - "noteOrder": 3636, + "noteOrder": 7272, "time": 0.757479892411488, "position": { "x": 6, @@ -8456,7 +8456,7 @@ { "lineGroupId": 185, "indexInLine": 4, - "noteOrder": 3642.0, + "noteOrder": 7278.0, "time": 0.757479892411488, "position": { "x": 6, @@ -8479,7 +8479,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799792951563836, "position": { "x": 3, @@ -8502,7 +8502,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824792287947054, "position": { "x": 3, @@ -8525,7 +8525,7 @@ { "lineGroupId": 190, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824792287947054, "position": { "x": 4, @@ -8548,7 +8548,7 @@ { "lineGroupId": 190, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 7518.0, "time": 0.7824792287947054, "position": { "x": 4, @@ -8571,7 +8571,7 @@ { "lineGroupId": 191, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 7, @@ -8594,7 +8594,7 @@ { "lineGroupId": 191, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.787479096071349, "position": { "x": 7, @@ -8617,7 +8617,7 @@ { "lineGroupId": 191, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.787479096071349, "position": { "x": 6, @@ -8640,7 +8640,7 @@ { "lineGroupId": 191, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 7566.0, "time": 0.787479096071349, "position": { "x": 6, @@ -8663,7 +8663,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899790297096707, "position": { "x": 3, @@ -8686,7 +8686,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.7924789633479925, "position": { "x": 3, @@ -8709,7 +8709,7 @@ { "lineGroupId": 192, "indexInLine": 3, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.7924789633479925, "position": { "x": 4, @@ -8732,7 +8732,7 @@ { "lineGroupId": 192, "indexInLine": 4, - "noteOrder": 3810.0, + "noteOrder": 7614.0, "time": 0.7924789633479925, "position": { "x": 4, @@ -8755,7 +8755,7 @@ { "lineGroupId": 195, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999787642629577, "position": { "x": 6, @@ -8778,7 +8778,7 @@ { "lineGroupId": 195, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 6, @@ -8801,7 +8801,7 @@ { "lineGroupId": 195, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 5, @@ -8824,7 +8824,7 @@ { "lineGroupId": 195, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 5, @@ -8847,7 +8847,7 @@ { "lineGroupId": 195, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 3, @@ -8870,7 +8870,7 @@ { "lineGroupId": 195, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 7734.0, "time": 0.8049786315396011, "position": { "x": 3, @@ -8893,7 +8893,7 @@ { "lineGroupId": 196, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 6, @@ -8916,7 +8916,7 @@ { "lineGroupId": 196, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 6, @@ -8939,7 +8939,7 @@ { "lineGroupId": 196, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 5, @@ -8962,7 +8962,7 @@ { "lineGroupId": 196, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 5, @@ -8985,7 +8985,7 @@ { "lineGroupId": 196, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 3, @@ -9008,7 +9008,7 @@ { "lineGroupId": 196, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 7782.0, "time": 0.8099784988162446, "position": { "x": 3, @@ -9031,7 +9031,7 @@ { "lineGroupId": 197, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 6, @@ -9054,7 +9054,7 @@ { "lineGroupId": 197, "indexInLine": 2, - "noteOrder": 3900, + "noteOrder": 7800, "time": 0.8124784324545663, "position": { "x": 6, @@ -9077,7 +9077,7 @@ { "lineGroupId": 197, "indexInLine": 3, - "noteOrder": 3900, + "noteOrder": 7800, "time": 0.8124784324545663, "position": { "x": 5, @@ -9100,7 +9100,7 @@ { "lineGroupId": 197, "indexInLine": 4, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 5, @@ -9123,7 +9123,7 @@ { "lineGroupId": 197, "indexInLine": 5, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 3, @@ -9146,7 +9146,7 @@ { "lineGroupId": 197, "indexInLine": 6, - "noteOrder": 3918.0, + "noteOrder": 7830.0, "time": 0.8149783660928882, "position": { "x": 3, @@ -9169,7 +9169,7 @@ { "lineGroupId": 198, "indexInLine": 1, - "noteOrder": 3912, + "noteOrder": 7824, "time": 0.8149783660928882, "position": { "x": 6, @@ -9192,7 +9192,7 @@ { "lineGroupId": 198, "indexInLine": 2, - "noteOrder": 3924, + "noteOrder": 7848, "time": 0.8174782997312099, "position": { "x": 6, @@ -9215,7 +9215,7 @@ { "lineGroupId": 198, "indexInLine": 3, - "noteOrder": 3924, + "noteOrder": 7848, "time": 0.8174782997312099, "position": { "x": 5, @@ -9238,7 +9238,7 @@ { "lineGroupId": 198, "indexInLine": 4, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 5, @@ -9261,7 +9261,7 @@ { "lineGroupId": 198, "indexInLine": 5, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 3, @@ -9284,7 +9284,7 @@ { "lineGroupId": 198, "indexInLine": 6, - "noteOrder": 3942.0, + "noteOrder": 7878.0, "time": 0.8199782333695317, "position": { "x": 3, @@ -9307,7 +9307,7 @@ { "lineGroupId": 199, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 6, @@ -9330,7 +9330,7 @@ { "lineGroupId": 199, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 6, @@ -9353,7 +9353,7 @@ { "lineGroupId": 208, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599771715826795, "position": { "x": 7, @@ -9376,7 +9376,7 @@ { "lineGroupId": 208, "indexInLine": 2, - "noteOrder": 4140, + "noteOrder": 8280, "time": 0.8624771052210013, "position": { "x": 7, @@ -9399,7 +9399,7 @@ { "lineGroupId": 208, "indexInLine": 3, - "noteOrder": 4140, + "noteOrder": 8280, "time": 0.8624771052210013, "position": { "x": 6, @@ -9422,7 +9422,7 @@ { "lineGroupId": 208, "indexInLine": 4, - "noteOrder": 4146.0, + "noteOrder": 8286.0, "time": 0.8624771052210013, "position": { "x": 6, @@ -9445,7 +9445,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 3, @@ -9468,7 +9468,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 4164, + "noteOrder": 8328, "time": 0.8674769724976447, "position": { "x": 3, @@ -9491,7 +9491,7 @@ { "lineGroupId": 209, "indexInLine": 3, - "noteOrder": 4164, + "noteOrder": 8328, "time": 0.8674769724976447, "position": { "x": 4, @@ -9514,7 +9514,7 @@ { "lineGroupId": 209, "indexInLine": 4, - "noteOrder": 4170.0, + "noteOrder": 8334.0, "time": 0.8674769724976447, "position": { "x": 4, @@ -9537,7 +9537,7 @@ { "lineGroupId": 210, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699769061359665, "position": { "x": 7, @@ -9560,7 +9560,7 @@ { "lineGroupId": 210, "indexInLine": 2, - "noteOrder": 4188, + "noteOrder": 8376, "time": 0.8724768397742881, "position": { "x": 7, @@ -9583,7 +9583,7 @@ { "lineGroupId": 210, "indexInLine": 3, - "noteOrder": 4188, + "noteOrder": 8376, "time": 0.8724768397742881, "position": { "x": 6, @@ -9606,7 +9606,7 @@ { "lineGroupId": 210, "indexInLine": 4, - "noteOrder": 4194.0, + "noteOrder": 8382.0, "time": 0.8724768397742881, "position": { "x": 6, @@ -9629,7 +9629,7 @@ { "lineGroupId": 211, "indexInLine": 1, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 3, @@ -9652,7 +9652,7 @@ { "lineGroupId": 211, "indexInLine": 2, - "noteOrder": 4212, + "noteOrder": 8424, "time": 0.8774767070509316, "position": { "x": 3, @@ -9675,7 +9675,7 @@ { "lineGroupId": 211, "indexInLine": 3, - "noteOrder": 4212, + "noteOrder": 8424, "time": 0.8774767070509316, "position": { "x": 4, @@ -9698,7 +9698,7 @@ { "lineGroupId": 211, "indexInLine": 4, - "noteOrder": 4218.0, + "noteOrder": 8430.0, "time": 0.8774767070509316, "position": { "x": 4, @@ -9721,7 +9721,7 @@ { "lineGroupId": 212, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799766406892535, "position": { "x": 7, @@ -9744,7 +9744,7 @@ { "lineGroupId": 212, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 7, @@ -9767,7 +9767,7 @@ { "lineGroupId": 212, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 5, @@ -9790,7 +9790,7 @@ { "lineGroupId": 212, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 5, @@ -9813,7 +9813,7 @@ { "lineGroupId": 212, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 6, @@ -9836,7 +9836,7 @@ { "lineGroupId": 212, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.884976507965897, "position": { "x": 6, @@ -9859,7 +9859,7 @@ { "lineGroupId": 213, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799766406892535, "position": { "x": 3, @@ -9882,7 +9882,7 @@ { "lineGroupId": 213, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 3, @@ -9905,7 +9905,7 @@ { "lineGroupId": 213, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824765743275752, "position": { "x": 5, @@ -9928,7 +9928,7 @@ { "lineGroupId": 213, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 5, @@ -9951,7 +9951,7 @@ { "lineGroupId": 213, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 4, @@ -9974,7 +9974,7 @@ { "lineGroupId": 213, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.884976507965897, "position": { "x": 4, @@ -9997,7 +9997,7 @@ { "lineGroupId": 220, "indexInLine": 1, - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999761097958273, "position": { "x": 3, @@ -10020,7 +10020,7 @@ { "lineGroupId": 220, "indexInLine": 2, - "noteOrder": 4332, + "noteOrder": 8664, "time": 0.9024760434341491, "position": { "x": 3, @@ -10043,7 +10043,7 @@ { "lineGroupId": 220, "indexInLine": 3, - "noteOrder": 4332, + "noteOrder": 8664, "time": 0.9024760434341491, "position": { "x": 4, @@ -10066,7 +10066,7 @@ { "lineGroupId": 220, "indexInLine": 4, - "noteOrder": 4338.0, + "noteOrder": 8670.0, "time": 0.9024760434341491, "position": { "x": 4, @@ -10089,7 +10089,7 @@ { "lineGroupId": 221, "indexInLine": 1, - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049759770724708, "position": { "x": 7, @@ -10112,7 +10112,7 @@ { "lineGroupId": 221, "indexInLine": 2, - "noteOrder": 4356, + "noteOrder": 8712, "time": 0.9074759107107926, "position": { "x": 7, @@ -10135,7 +10135,7 @@ { "lineGroupId": 221, "indexInLine": 3, - "noteOrder": 4356, + "noteOrder": 8712, "time": 0.9074759107107926, "position": { "x": 6, @@ -10158,7 +10158,7 @@ { "lineGroupId": 221, "indexInLine": 4, - "noteOrder": 4362.0, + "noteOrder": 8718.0, "time": 0.9074759107107926, "position": { "x": 6, @@ -10181,7 +10181,7 @@ { "lineGroupId": 222, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 3, @@ -10204,7 +10204,7 @@ { "lineGroupId": 222, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 3, @@ -10227,7 +10227,7 @@ { "lineGroupId": 222, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 4, @@ -10250,7 +10250,7 @@ { "lineGroupId": 222, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149757116257579, "position": { "x": 4, @@ -10273,7 +10273,7 @@ { "lineGroupId": 223, "indexInLine": 1, - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 7, @@ -10296,7 +10296,7 @@ { "lineGroupId": 223, "indexInLine": 2, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 7, @@ -10319,7 +10319,7 @@ { "lineGroupId": 223, "indexInLine": 3, - "noteOrder": 4380, + "noteOrder": 8760, "time": 0.9124757779874362, "position": { "x": 6, @@ -10342,7 +10342,7 @@ { "lineGroupId": 223, "indexInLine": 4, - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149757116257579, "position": { "x": 6, @@ -10365,7 +10365,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199755789024013, "position": { "x": 7, @@ -10388,7 +10388,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224755125407231, "position": { "x": 7, @@ -10411,7 +10411,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224755125407231, "position": { "x": 6, @@ -10434,7 +10434,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4434.0, + "noteOrder": 8862.0, "time": 0.9224755125407231, "position": { "x": 6, @@ -10457,7 +10457,7 @@ { "lineGroupId": 226, "indexInLine": 1, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249754461790448, "position": { "x": 3, @@ -10480,7 +10480,7 @@ { "lineGroupId": 226, "indexInLine": 2, - "noteOrder": 4452, + "noteOrder": 8904, "time": 0.9274753798173666, "position": { "x": 3, @@ -10503,7 +10503,7 @@ { "lineGroupId": 226, "indexInLine": 3, - "noteOrder": 4452, + "noteOrder": 8904, "time": 0.9274753798173666, "position": { "x": 4, @@ -10526,7 +10526,7 @@ { "lineGroupId": 226, "indexInLine": 4, - "noteOrder": 4458.0, + "noteOrder": 8910.0, "time": 0.9274753798173666, "position": { "x": 4, @@ -10561,7 +10561,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "4.62", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b.json index 20d04cd8..934c73f3 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) SPONGEBOB EDITION difficulty_1b", "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 288, "time": 0.02999920365986091, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 336, "time": 0.034999070936504395, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999840731972182, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999734553286971, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999708008615669, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999681463944364, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499668191608714, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999628374601758, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499615102266109, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499588557594804, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999522195916548, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 1776, "time": 0.18499508923580896, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999495651245246, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1872, "time": 0.1949948237890959, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.26499296566210473, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699928329387482, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.2749927002153917, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.339990974811757, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.34499084208840053, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.349990709365044, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549905766416875, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.39998938213147883, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.4049892494081223, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998858579133975, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.44998805489791366, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699875240044876, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.4899869931110616, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099864622176355, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.5299859313242095, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499854004307834, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349831441337227, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949815514534445, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499800914965228, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649796933264533, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749794278797402, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999761097958273, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049759770724708, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249754461790448, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299753134556883, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 6, @@ -1427,7 +1427,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 6, @@ -1450,7 +1450,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -1473,7 +1473,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -1496,7 +1496,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 414.0, + "noteOrder": 822.0, "time": 0.08499774370293925, "position": { "x": 6, @@ -1519,7 +1519,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999761097958274, "position": { "x": 4, @@ -1542,7 +1542,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 4, @@ -1565,7 +1565,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 4, @@ -1588,7 +1588,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 462.0, + "noteOrder": 918.0, "time": 0.09499747825622623, "position": { "x": 4, @@ -1611,7 +1611,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 6, @@ -1634,7 +1634,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 6, @@ -1657,7 +1657,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 5, @@ -1680,7 +1680,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 798.0, + "noteOrder": 1590.0, "time": 0.16499562012923502, "position": { "x": 5, @@ -1703,7 +1703,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999469106573942, "position": { "x": 4, @@ -1726,7 +1726,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 4, @@ -1749,7 +1749,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 5, @@ -1772,7 +1772,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 990.0, + "noteOrder": 1974.0, "time": 0.20499455834238292, "position": { "x": 5, @@ -1795,7 +1795,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 6, @@ -1818,7 +1818,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 6, @@ -1841,7 +1841,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 4, @@ -1864,7 +1864,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 4, @@ -1887,7 +1887,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999416017231338, "position": { "x": 6, @@ -1910,7 +1910,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 6, @@ -1933,7 +1933,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 5, @@ -1956,7 +1956,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1074.0, + "noteOrder": 2142.0, "time": 0.22249409381063512, "position": { "x": 5, @@ -1979,7 +1979,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 6, @@ -2002,7 +2002,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 6, @@ -2025,7 +2025,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 5, @@ -2048,7 +2048,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1098.0, + "noteOrder": 2190.0, "time": 0.22749396108727857, "position": { "x": 5, @@ -2071,7 +2071,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 4, @@ -2094,7 +2094,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 4, @@ -2117,7 +2117,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 4, @@ -2140,7 +2140,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1182.0, + "noteOrder": 2358.0, "time": 0.2449934965555308, "position": { "x": 4, @@ -2163,7 +2163,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 6, @@ -2186,7 +2186,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 6, @@ -2209,7 +2209,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 6, @@ -2232,7 +2232,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1230.0, + "noteOrder": 2454.0, "time": 0.2549932311088178, "position": { "x": 6, @@ -2255,7 +2255,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999256749203516, "position": { "x": 4, @@ -2278,7 +2278,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 4, @@ -2301,7 +2301,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 4, @@ -2324,7 +2324,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1374.0, + "noteOrder": 2742.0, "time": 0.2849924347686787, "position": { "x": 4, @@ -2347,7 +2347,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28999230204532217, "position": { "x": 6, @@ -2370,7 +2370,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 6, @@ -2393,7 +2393,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 6, @@ -2416,7 +2416,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1422.0, + "noteOrder": 2838.0, "time": 0.2949921693219656, "position": { "x": 6, @@ -2439,7 +2439,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999920365986091, "position": { "x": 4, @@ -2462,7 +2462,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 4, @@ -2485,7 +2485,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 5, @@ -2508,7 +2508,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1458.0, + "noteOrder": 2910.0, "time": 0.30249197023693086, "position": { "x": 5, @@ -2531,7 +2531,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 4, @@ -2554,7 +2554,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 4, @@ -2577,7 +2577,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 5, @@ -2600,7 +2600,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 1482.0, + "noteOrder": 2958.0, "time": 0.30749183751357434, "position": { "x": 5, @@ -2623,7 +2623,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 6, @@ -2646,7 +2646,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 6, @@ -2669,7 +2669,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 6, @@ -2692,7 +2692,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1566.0, + "noteOrder": 3126.0, "time": 0.3249913729818265, "position": { "x": 6, @@ -2715,7 +2715,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 4, @@ -2738,7 +2738,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1608, + "noteOrder": 3216, "time": 0.3349911075351135, "position": { "x": 4, @@ -2761,7 +2761,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1608, + "noteOrder": 3216, "time": 0.3349911075351135, "position": { "x": 4, @@ -2784,7 +2784,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 1614.0, + "noteOrder": 3222.0, "time": 0.3349911075351135, "position": { "x": 4, @@ -2807,7 +2807,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.35999044391833096, "position": { "x": 4, @@ -2830,7 +2830,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 4, @@ -2853,7 +2853,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 4, @@ -2876,7 +2876,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 2, @@ -2899,7 +2899,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 7, @@ -2922,7 +2922,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 6, @@ -2945,7 +2945,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.4224887848763745, "position": { "x": 6, @@ -2968,7 +2968,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.4224887848763745, "position": { "x": 5, @@ -2991,7 +2991,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 2034.0, + "noteOrder": 4062.0, "time": 0.4224887848763745, "position": { "x": 5, @@ -3014,7 +3014,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.4249887185146963, "position": { "x": 6, @@ -3037,7 +3037,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.427488652153018, "position": { "x": 6, @@ -3060,7 +3060,7 @@ { "lineGroupId": 71, "indexInLine": 3, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.427488652153018, "position": { "x": 5, @@ -3083,7 +3083,7 @@ { "lineGroupId": 71, "indexInLine": 4, - "noteOrder": 2058.0, + "noteOrder": 4110.0, "time": 0.427488652153018, "position": { "x": 5, @@ -3106,7 +3106,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 4, @@ -3129,7 +3129,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.4424882539829485, "position": { "x": 4, @@ -3152,7 +3152,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.4424882539829485, "position": { "x": 5, @@ -3175,7 +3175,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 4254.0, "time": 0.4424882539829485, "position": { "x": 5, @@ -3198,7 +3198,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.44498818762127024, "position": { "x": 4, @@ -3221,7 +3221,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.447488121259592, "position": { "x": 4, @@ -3244,7 +3244,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.447488121259592, "position": { "x": 5, @@ -3267,7 +3267,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 4302.0, "time": 0.447488121259592, "position": { "x": 5, @@ -3290,7 +3290,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 6, @@ -3313,7 +3313,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624877230895224, "position": { "x": 6, @@ -3336,7 +3336,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624877230895224, "position": { "x": 5, @@ -3359,7 +3359,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 2226.0, + "noteOrder": 4446.0, "time": 0.4624877230895224, "position": { "x": 5, @@ -3382,7 +3382,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498765672784415, "position": { "x": 6, @@ -3405,7 +3405,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 6, @@ -3428,7 +3428,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 5, @@ -3451,7 +3451,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.4674875903661659, "position": { "x": 5, @@ -3474,7 +3474,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 4, @@ -3497,7 +3497,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.4824871921960963, "position": { "x": 4, @@ -3520,7 +3520,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.4824871921960963, "position": { "x": 5, @@ -3543,7 +3543,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 4638.0, "time": 0.4824871921960963, "position": { "x": 5, @@ -3566,7 +3566,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.48498712583441805, "position": { "x": 4, @@ -3589,7 +3589,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 4, @@ -3612,7 +3612,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 5, @@ -3635,7 +3635,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.48748705947273985, "position": { "x": 5, @@ -3658,7 +3658,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 6, @@ -3681,7 +3681,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2412, + "noteOrder": 4824, "time": 0.5024866613026703, "position": { "x": 6, @@ -3704,7 +3704,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 2412, + "noteOrder": 4824, "time": 0.5024866613026703, "position": { "x": 6, @@ -3727,7 +3727,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 2418.0, + "noteOrder": 4830.0, "time": 0.5024866613026703, "position": { "x": 6, @@ -3750,7 +3750,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049865949409921, "position": { "x": 4, @@ -3773,7 +3773,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 4, @@ -3796,7 +3796,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 4, @@ -3819,7 +3819,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 2442.0, + "noteOrder": 4878.0, "time": 0.5074865285793138, "position": { "x": 4, @@ -3842,7 +3842,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 4, @@ -3865,7 +3865,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2508, + "noteOrder": 5016, "time": 0.5224861304092443, "position": { "x": 4, @@ -3888,7 +3888,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2508, + "noteOrder": 5016, "time": 0.5224861304092443, "position": { "x": 4, @@ -3911,7 +3911,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2514.0, + "noteOrder": 5022.0, "time": 0.5224861304092443, "position": { "x": 4, @@ -3934,7 +3934,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.524986064047566, "position": { "x": 6, @@ -3957,7 +3957,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 6, @@ -3980,7 +3980,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 6, @@ -4003,7 +4003,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2538.0, + "noteOrder": 5070.0, "time": 0.5274859976858877, "position": { "x": 6, @@ -4026,7 +4026,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 6, @@ -4049,7 +4049,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2604, + "noteOrder": 5208, "time": 0.5424855995158182, "position": { "x": 6, @@ -4072,7 +4072,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2604, + "noteOrder": 5208, "time": 0.5424855995158182, "position": { "x": 6, @@ -4095,7 +4095,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2610.0, + "noteOrder": 5214.0, "time": 0.5424855995158182, "position": { "x": 6, @@ -4118,7 +4118,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449855331541399, "position": { "x": 4, @@ -4141,7 +4141,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 4, @@ -4164,7 +4164,7 @@ { "lineGroupId": 95, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 4, @@ -4187,7 +4187,7 @@ { "lineGroupId": 95, "indexInLine": 4, - "noteOrder": 2634.0, + "noteOrder": 5262.0, "time": 0.5474854667924617, "position": { "x": 4, @@ -4210,7 +4210,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799846040906443, "position": { "x": 6, @@ -4233,7 +4233,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 6, @@ -4256,7 +4256,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 8, @@ -4279,7 +4279,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 8, @@ -4302,7 +4302,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999840731972182, "position": { "x": 4, @@ -4325,7 +4325,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 4, @@ -4348,7 +4348,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 2, @@ -4371,7 +4371,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 2, @@ -4394,7 +4394,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199835423037922, "position": { "x": 6, @@ -4417,7 +4417,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 6, @@ -4440,7 +4440,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 5, @@ -4463,7 +4463,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 3006.0, + "noteOrder": 6006.0, "time": 0.6249834095804357, "position": { "x": 5, @@ -4486,7 +4486,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 4, @@ -4509,7 +4509,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 4, @@ -4532,7 +4532,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 4, @@ -4555,7 +4555,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 3102.0, + "noteOrder": 6198.0, "time": 0.6449828786870097, "position": { "x": 4, @@ -4578,7 +4578,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599824805169401, "position": { "x": 4, @@ -4601,7 +4601,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 4, @@ -4624,7 +4624,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 5, @@ -4647,7 +4647,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 3198.0, + "noteOrder": 6390.0, "time": 0.6649823477935836, "position": { "x": 5, @@ -4670,7 +4670,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 6, @@ -4693,7 +4693,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 6, @@ -4716,7 +4716,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 6624, "time": 0.6899816841768011, "position": { "x": 4, @@ -4739,7 +4739,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949815514534445, "position": { "x": 4, @@ -4762,7 +4762,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.7199808878366619, "position": { "x": 6, @@ -4785,7 +4785,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 6, @@ -4808,7 +4808,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 5, @@ -4831,7 +4831,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3474.0, + "noteOrder": 6942.0, "time": 0.7224808214749837, "position": { "x": 5, @@ -4854,7 +4854,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 6, @@ -4877,7 +4877,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 6, @@ -4900,7 +4900,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 5, @@ -4923,7 +4923,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3498.0, + "noteOrder": 6990.0, "time": 0.7274806887516272, "position": { "x": 5, @@ -4946,7 +4946,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 6, @@ -4969,7 +4969,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 6, @@ -4992,7 +4992,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 5, @@ -5015,7 +5015,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 3570.0, + "noteOrder": 7134.0, "time": 0.7424802905815575, "position": { "x": 5, @@ -5038,7 +5038,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 6, @@ -5061,7 +5061,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.747480157858201, "position": { "x": 6, @@ -5084,7 +5084,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.747480157858201, "position": { "x": 5, @@ -5107,7 +5107,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3594.0, + "noteOrder": 7182.0, "time": 0.747480157858201, "position": { "x": 5, @@ -5130,7 +5130,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599798260498098, "position": { "x": 6, @@ -5153,7 +5153,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649796933264533, "position": { "x": 6, @@ -5176,7 +5176,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699795606030968, "position": { "x": 8, @@ -5199,7 +5199,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749794278797402, "position": { "x": 8, @@ -5222,7 +5222,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799792951563836, "position": { "x": 4, @@ -5245,7 +5245,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 4, @@ -5268,7 +5268,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 5, @@ -5291,7 +5291,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3774.0, + "noteOrder": 7542.0, "time": 0.7849791624330272, "position": { "x": 5, @@ -5314,7 +5314,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899790297096707, "position": { "x": 6, @@ -5337,7 +5337,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 6, @@ -5360,7 +5360,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 6, @@ -5383,7 +5383,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 3822.0, + "noteOrder": 7638.0, "time": 0.7949788969863142, "position": { "x": 6, @@ -5406,7 +5406,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999787642629577, "position": { "x": 4, @@ -5429,7 +5429,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 4, @@ -5452,7 +5452,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 5, @@ -5475,7 +5475,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 3858.0, + "noteOrder": 7710.0, "time": 0.8024786979012795, "position": { "x": 5, @@ -5498,7 +5498,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 4, @@ -5521,7 +5521,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 4, @@ -5544,7 +5544,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 5, @@ -5567,7 +5567,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 3882.0, + "noteOrder": 7758.0, "time": 0.8074785651779228, "position": { "x": 5, @@ -5590,7 +5590,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 4, @@ -5613,7 +5613,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224781670078534, "position": { "x": 4, @@ -5636,7 +5636,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224781670078534, "position": { "x": 5, @@ -5659,7 +5659,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3954.0, + "noteOrder": 7902.0, "time": 0.8224781670078534, "position": { "x": 5, @@ -5682,7 +5682,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249781006461752, "position": { "x": 4, @@ -5705,7 +5705,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274780342844968, "position": { "x": 4, @@ -5728,7 +5728,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274780342844968, "position": { "x": 5, @@ -5751,7 +5751,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 3978.0, + "noteOrder": 7950.0, "time": 0.8274780342844968, "position": { "x": 5, @@ -5774,7 +5774,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399777024761055, "position": { "x": 4, @@ -5797,7 +5797,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 4, @@ -5820,7 +5820,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499774370293925, "position": { "x": 2, @@ -5843,7 +5843,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 2, @@ -5866,7 +5866,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599771715826795, "position": { "x": 6, @@ -5889,7 +5889,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 6, @@ -5912,7 +5912,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 5, @@ -5935,7 +5935,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 4158.0, + "noteOrder": 8310.0, "time": 0.864977038859323, "position": { "x": 5, @@ -5958,7 +5958,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699769061359665, "position": { "x": 4, @@ -5981,7 +5981,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 4, @@ -6004,7 +6004,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 4, @@ -6027,7 +6027,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 4206.0, + "noteOrder": 8406.0, "time": 0.8749767734126099, "position": { "x": 4, @@ -6050,7 +6050,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 97.5, + "noteOrder": 193.5, "time": 0.019999469106573943, "position": { "x": 5, @@ -6078,7 +6078,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 121.5, + "noteOrder": 241.5, "time": 0.024999336383217427, "position": { "x": 5, @@ -6106,7 +6106,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 193.5, + "noteOrder": 385.5, "time": 0.039998938213147886, "position": { "x": 5, @@ -6134,7 +6134,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 217.5, + "noteOrder": 433.5, "time": 0.04499880548979137, "position": { "x": 5, @@ -6162,7 +6162,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 241.5, + "noteOrder": 481.5, "time": 0.049998672766434854, "position": { "x": 5, @@ -6190,7 +6190,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 276.0, + "noteOrder": 540.0, "time": 0.054998540043078345, "position": { "x": 5, @@ -6218,7 +6218,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 505.5, + "noteOrder": 1009.5, "time": 0.10499721280951319, "position": { "x": 5, @@ -6246,7 +6246,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 553.5, + "noteOrder": 1105.5, "time": 0.11499694736280017, "position": { "x": 5, @@ -6274,7 +6274,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 625.5, + "noteOrder": 1249.5, "time": 0.12999654919273063, "position": { "x": 5, @@ -6302,7 +6302,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 649.5, + "noteOrder": 1297.5, "time": 0.1349964164693741, "position": { "x": 5, @@ -6330,7 +6330,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 841.5, + "noteOrder": 1681.5, "time": 0.174995354682522, "position": { "x": 5, @@ -6358,7 +6358,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1033.5, + "noteOrder": 2065.5, "time": 0.21499429289566988, "position": { "x": 5, @@ -6386,7 +6386,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1129.5, + "noteOrder": 2257.5, "time": 0.2349937620022438, "position": { "x": 5, @@ -6414,7 +6414,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1513.5, + "noteOrder": 3025.5, "time": 0.3149916384285396, "position": { "x": 5, @@ -6442,7 +6442,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1825.5, + "noteOrder": 3649.5, "time": 0.3799899130249049, "position": { "x": 5, @@ -6470,7 +6470,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1897.5, + "noteOrder": 3793.5, "time": 0.39498951485483536, "position": { "x": 5, @@ -6498,7 +6498,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2089.5, + "noteOrder": 4177.5, "time": 0.4349884530679832, "position": { "x": 5, @@ -6526,7 +6526,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2185.5, + "noteOrder": 4369.5, "time": 0.45498792217455714, "position": { "x": 5, @@ -6554,7 +6554,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2281.5, + "noteOrder": 4561.5, "time": 0.47498739128113115, "position": { "x": 5, @@ -6582,7 +6582,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2377.5, + "noteOrder": 4753.5, "time": 0.49498686038770506, "position": { "x": 5, @@ -6610,7 +6610,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2473.5, + "noteOrder": 4945.5, "time": 0.514986329494279, "position": { "x": 5, @@ -6638,7 +6638,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2569.5, + "noteOrder": 5137.5, "time": 0.5349857986008529, "position": { "x": 5, @@ -6666,7 +6666,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2665.5, + "noteOrder": 5329.5, "time": 0.554985267707427, "position": { "x": 5, @@ -6694,7 +6694,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2689.5, + "noteOrder": 5377.5, "time": 0.5599851349840703, "position": { "x": 5, @@ -6722,7 +6722,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2713.5, + "noteOrder": 5425.5, "time": 0.5649850022607138, "position": { "x": 5, @@ -6750,7 +6750,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2737.5, + "noteOrder": 5473.5, "time": 0.5699848695373574, "position": { "x": 5, @@ -6778,7 +6778,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2761.5, + "noteOrder": 5521.5, "time": 0.5749847368140009, "position": { "x": 5, @@ -6806,7 +6806,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3121.5, + "noteOrder": 6241.5, "time": 0.649982745963653, "position": { "x": 5, @@ -6834,7 +6834,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3145.5, + "noteOrder": 6289.5, "time": 0.6549826132402965, "position": { "x": 5, @@ -6862,7 +6862,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3409.5, + "noteOrder": 6817.5, "time": 0.709981153283375, "position": { "x": 5, @@ -6890,7 +6890,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3433.5, + "noteOrder": 6865.5, "time": 0.7149810205600183, "position": { "x": 5, @@ -6918,7 +6918,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3529.5, + "noteOrder": 7057.5, "time": 0.7349804896665924, "position": { "x": 5, @@ -6946,7 +6946,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3625.5, + "noteOrder": 7249.5, "time": 0.7549799587731664, "position": { "x": 5, @@ -6974,7 +6974,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3913.5, + "noteOrder": 7825.5, "time": 0.8149783660928882, "position": { "x": 5, @@ -7002,7 +7002,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4009.5, + "noteOrder": 8017.5, "time": 0.8349778351994621, "position": { "x": 5, @@ -7030,7 +7030,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4225.5, + "noteOrder": 8449.5, "time": 0.8799766406892535, "position": { "x": 5, @@ -7058,7 +7058,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4297.5, + "noteOrder": 8593.5, "time": 0.894976242519184, "position": { "x": 5, @@ -7086,7 +7086,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4393.5, + "noteOrder": 8785.5, "time": 0.9149757116257579, "position": { "x": 5, @@ -7114,7 +7114,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4417.5, + "noteOrder": 8833.5, "time": 0.9199755789024013, "position": { "x": 5, @@ -7142,7 +7142,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4513.5, + "noteOrder": 9025.5, "time": 0.9399750480089752, "position": { "x": 5, @@ -7170,7 +7170,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4561.5, + "noteOrder": 9121.5, "time": 0.9499747825622623, "position": { "x": 5, @@ -7198,7 +7198,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 9217.5, "time": 0.9599745171155492, "position": { "x": 5, @@ -7239,7 +7239,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "2.8", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b_blockless.json index 5bd7117d..b4295c1c 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) SPONGEBOB EDITION difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 288, "time": 0.02999920365986091, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 336, "time": 0.034999070936504395, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999840731972182, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 624, "time": 0.06499827459636531, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999814187300879, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 720, "time": 0.07499800914965228, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999734553286971, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999708008615669, "position": { "x": 3, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999681463944364, "position": { "x": 6, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499668191608714, "position": { "x": 4, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999628374601758, "position": { "x": 6, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499615102266109, "position": { "x": 7, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 1440, "time": 0.14999601829930456, "position": { "x": 4, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499588557594804, "position": { "x": 3, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.1699954874058785, "position": { "x": 4, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999522195916548, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 1776, "time": 0.18499508923580896, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999495651245246, "position": { "x": 6, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1872, "time": 0.1949948237890959, "position": { "x": 7, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999389472560033, "position": { "x": 6, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.25999309838546125, "position": { "x": 4, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.26499296566210473, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699928329387482, "position": { "x": 6, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.2749927002153917, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.3099917711518961, "position": { "x": 4, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.339990974811757, "position": { "x": 6, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.34499084208840053, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.349990709365044, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549905766416875, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849897803015484, "position": { "x": 6, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899896475781918, "position": { "x": 4, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.39998938213147883, "position": { "x": 6, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.4049892494081223, "position": { "x": 6, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998911668476584, "position": { "x": 4, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998858579133975, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.44998805489791366, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699875240044876, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.4899869931110616, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099864622176355, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.5299859313242095, "position": { "x": 4, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499854004307834, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 4, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 6, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 4, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299832768570792, "position": { "x": 3, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349831441337227, "position": { "x": 5, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.669982215070227, "position": { "x": 7, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749820823468705, "position": { "x": 5, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949815514534445, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 7, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.699981418730088, "position": { "x": 3, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299806223899489, "position": { "x": 6, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499800914965228, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649796933264533, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749794278797402, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099784988162446, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.8299779679228186, "position": { "x": 4, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 6, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 4, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.884976507965897, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899763752425405, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999761097958273, "position": { "x": 6, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049759770724708, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099758443491143, "position": { "x": 4, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249754461790448, "position": { "x": 6, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299753134556883, "position": { "x": 4, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 4, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349751807323318, "position": { "x": 6, @@ -1427,7 +1427,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.07999787642629577, "position": { "x": 6, @@ -1450,7 +1450,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -1473,7 +1473,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 408, + "noteOrder": 816, "time": 0.08499774370293925, "position": { "x": 6, @@ -1496,7 +1496,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 414.0, + "noteOrder": 822.0, "time": 0.08499774370293925, "position": { "x": 6, @@ -1519,7 +1519,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999761097958274, "position": { "x": 4, @@ -1542,7 +1542,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 4, @@ -1565,7 +1565,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499747825622623, "position": { "x": 4, @@ -1588,7 +1588,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 462.0, + "noteOrder": 918.0, "time": 0.09499747825622623, "position": { "x": 4, @@ -1611,7 +1611,7 @@ { "lineGroupId": 27, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.15999575285259154, "position": { "x": 6, @@ -1634,7 +1634,7 @@ { "lineGroupId": 27, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 6, @@ -1657,7 +1657,7 @@ { "lineGroupId": 27, "indexInLine": 3, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499562012923502, "position": { "x": 5, @@ -1680,7 +1680,7 @@ { "lineGroupId": 27, "indexInLine": 4, - "noteOrder": 798.0, + "noteOrder": 1590.0, "time": 0.16499562012923502, "position": { "x": 5, @@ -1703,7 +1703,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999469106573942, "position": { "x": 4, @@ -1726,7 +1726,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 4, @@ -1749,7 +1749,7 @@ { "lineGroupId": 35, "indexInLine": 3, - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499455834238292, "position": { "x": 5, @@ -1772,7 +1772,7 @@ { "lineGroupId": 35, "indexInLine": 4, - "noteOrder": 990.0, + "noteOrder": 1974.0, "time": 0.20499455834238292, "position": { "x": 5, @@ -1795,7 +1795,7 @@ { "lineGroupId": 36, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 6, @@ -1818,7 +1818,7 @@ { "lineGroupId": 36, "indexInLine": 2, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 6, @@ -1841,7 +1841,7 @@ { "lineGroupId": 37, "indexInLine": 1, - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999442561902637, "position": { "x": 4, @@ -1864,7 +1864,7 @@ { "lineGroupId": 37, "indexInLine": 2, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499429289566988, "position": { "x": 4, @@ -1887,7 +1887,7 @@ { "lineGroupId": 39, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999416017231338, "position": { "x": 6, @@ -1910,7 +1910,7 @@ { "lineGroupId": 39, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 6, @@ -1933,7 +1933,7 @@ { "lineGroupId": 39, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.22249409381063512, "position": { "x": 5, @@ -1956,7 +1956,7 @@ { "lineGroupId": 39, "indexInLine": 4, - "noteOrder": 1074.0, + "noteOrder": 2142.0, "time": 0.22249409381063512, "position": { "x": 5, @@ -1979,7 +1979,7 @@ { "lineGroupId": 40, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499402744895683, "position": { "x": 6, @@ -2002,7 +2002,7 @@ { "lineGroupId": 40, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 6, @@ -2025,7 +2025,7 @@ { "lineGroupId": 40, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749396108727857, "position": { "x": 5, @@ -2048,7 +2048,7 @@ { "lineGroupId": 40, "indexInLine": 4, - "noteOrder": 1098.0, + "noteOrder": 2190.0, "time": 0.22749396108727857, "position": { "x": 5, @@ -2071,7 +2071,7 @@ { "lineGroupId": 43, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399936292788873, "position": { "x": 4, @@ -2094,7 +2094,7 @@ { "lineGroupId": 43, "indexInLine": 2, - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 4, @@ -2117,7 +2117,7 @@ { "lineGroupId": 43, "indexInLine": 3, - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449934965555308, "position": { "x": 4, @@ -2140,7 +2140,7 @@ { "lineGroupId": 43, "indexInLine": 4, - "noteOrder": 1182.0, + "noteOrder": 2358.0, "time": 0.2449934965555308, "position": { "x": 4, @@ -2163,7 +2163,7 @@ { "lineGroupId": 44, "indexInLine": 1, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999336383217427, "position": { "x": 6, @@ -2186,7 +2186,7 @@ { "lineGroupId": 44, "indexInLine": 2, - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 6, @@ -2209,7 +2209,7 @@ { "lineGroupId": 44, "indexInLine": 3, - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.2549932311088178, "position": { "x": 6, @@ -2232,7 +2232,7 @@ { "lineGroupId": 44, "indexInLine": 4, - "noteOrder": 1230.0, + "noteOrder": 2454.0, "time": 0.2549932311088178, "position": { "x": 6, @@ -2255,7 +2255,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999256749203516, "position": { "x": 4, @@ -2278,7 +2278,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 4, @@ -2301,7 +2301,7 @@ { "lineGroupId": 49, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.2849924347686787, "position": { "x": 4, @@ -2324,7 +2324,7 @@ { "lineGroupId": 49, "indexInLine": 4, - "noteOrder": 1374.0, + "noteOrder": 2742.0, "time": 0.2849924347686787, "position": { "x": 4, @@ -2347,7 +2347,7 @@ { "lineGroupId": 50, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28999230204532217, "position": { "x": 6, @@ -2370,7 +2370,7 @@ { "lineGroupId": 50, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 6, @@ -2393,7 +2393,7 @@ { "lineGroupId": 50, "indexInLine": 3, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949921693219656, "position": { "x": 6, @@ -2416,7 +2416,7 @@ { "lineGroupId": 50, "indexInLine": 4, - "noteOrder": 1422.0, + "noteOrder": 2838.0, "time": 0.2949921693219656, "position": { "x": 6, @@ -2439,7 +2439,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999920365986091, "position": { "x": 4, @@ -2462,7 +2462,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 4, @@ -2485,7 +2485,7 @@ { "lineGroupId": 51, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30249197023693086, "position": { "x": 5, @@ -2508,7 +2508,7 @@ { "lineGroupId": 51, "indexInLine": 4, - "noteOrder": 1458.0, + "noteOrder": 2910.0, "time": 0.30249197023693086, "position": { "x": 5, @@ -2531,7 +2531,7 @@ { "lineGroupId": 52, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.3049919038752526, "position": { "x": 4, @@ -2554,7 +2554,7 @@ { "lineGroupId": 52, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 4, @@ -2577,7 +2577,7 @@ { "lineGroupId": 52, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.30749183751357434, "position": { "x": 5, @@ -2600,7 +2600,7 @@ { "lineGroupId": 52, "indexInLine": 4, - "noteOrder": 1482.0, + "noteOrder": 2958.0, "time": 0.30749183751357434, "position": { "x": 5, @@ -2623,7 +2623,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199915057051831, "position": { "x": 6, @@ -2646,7 +2646,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 6, @@ -2669,7 +2669,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.3249913729818265, "position": { "x": 6, @@ -2692,7 +2692,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1566.0, + "noteOrder": 3126.0, "time": 0.3249913729818265, "position": { "x": 6, @@ -2715,7 +2715,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.32999124025847004, "position": { "x": 4, @@ -2738,7 +2738,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1608, + "noteOrder": 3216, "time": 0.3349911075351135, "position": { "x": 4, @@ -2761,7 +2761,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1608, + "noteOrder": 3216, "time": 0.3349911075351135, "position": { "x": 4, @@ -2784,7 +2784,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 1614.0, + "noteOrder": 3222.0, "time": 0.3349911075351135, "position": { "x": 4, @@ -2807,7 +2807,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.35999044391833096, "position": { "x": 4, @@ -2830,7 +2830,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 4, @@ -2853,7 +2853,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 4, @@ -2876,7 +2876,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.3699901784716179, "position": { "x": 2, @@ -2899,7 +2899,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749900457482614, "position": { "x": 7, @@ -2922,7 +2922,7 @@ { "lineGroupId": 70, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41998885123805274, "position": { "x": 6, @@ -2945,7 +2945,7 @@ { "lineGroupId": 70, "indexInLine": 2, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.4224887848763745, "position": { "x": 6, @@ -2968,7 +2968,7 @@ { "lineGroupId": 70, "indexInLine": 3, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.4224887848763745, "position": { "x": 5, @@ -2991,7 +2991,7 @@ { "lineGroupId": 70, "indexInLine": 4, - "noteOrder": 2034.0, + "noteOrder": 4062.0, "time": 0.4224887848763745, "position": { "x": 5, @@ -3014,7 +3014,7 @@ { "lineGroupId": 71, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.4249887185146963, "position": { "x": 6, @@ -3037,7 +3037,7 @@ { "lineGroupId": 71, "indexInLine": 2, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.427488652153018, "position": { "x": 6, @@ -3060,7 +3060,7 @@ { "lineGroupId": 71, "indexInLine": 3, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.427488652153018, "position": { "x": 5, @@ -3083,7 +3083,7 @@ { "lineGroupId": 71, "indexInLine": 4, - "noteOrder": 2058.0, + "noteOrder": 4110.0, "time": 0.427488652153018, "position": { "x": 5, @@ -3106,7 +3106,7 @@ { "lineGroupId": 74, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43998832034462676, "position": { "x": 4, @@ -3129,7 +3129,7 @@ { "lineGroupId": 74, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.4424882539829485, "position": { "x": 4, @@ -3152,7 +3152,7 @@ { "lineGroupId": 74, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.4424882539829485, "position": { "x": 5, @@ -3175,7 +3175,7 @@ { "lineGroupId": 74, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 4254.0, "time": 0.4424882539829485, "position": { "x": 5, @@ -3198,7 +3198,7 @@ { "lineGroupId": 75, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.44498818762127024, "position": { "x": 4, @@ -3221,7 +3221,7 @@ { "lineGroupId": 75, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.447488121259592, "position": { "x": 4, @@ -3244,7 +3244,7 @@ { "lineGroupId": 75, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.447488121259592, "position": { "x": 5, @@ -3267,7 +3267,7 @@ { "lineGroupId": 75, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 4302.0, "time": 0.447488121259592, "position": { "x": 5, @@ -3290,7 +3290,7 @@ { "lineGroupId": 78, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.45998778945120067, "position": { "x": 6, @@ -3313,7 +3313,7 @@ { "lineGroupId": 78, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624877230895224, "position": { "x": 6, @@ -3336,7 +3336,7 @@ { "lineGroupId": 78, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624877230895224, "position": { "x": 5, @@ -3359,7 +3359,7 @@ { "lineGroupId": 78, "indexInLine": 4, - "noteOrder": 2226.0, + "noteOrder": 4446.0, "time": 0.4624877230895224, "position": { "x": 5, @@ -3382,7 +3382,7 @@ { "lineGroupId": 79, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498765672784415, "position": { "x": 6, @@ -3405,7 +3405,7 @@ { "lineGroupId": 79, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 6, @@ -3428,7 +3428,7 @@ { "lineGroupId": 79, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.4674875903661659, "position": { "x": 5, @@ -3451,7 +3451,7 @@ { "lineGroupId": 79, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.4674875903661659, "position": { "x": 5, @@ -3474,7 +3474,7 @@ { "lineGroupId": 82, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799872585577746, "position": { "x": 4, @@ -3497,7 +3497,7 @@ { "lineGroupId": 82, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.4824871921960963, "position": { "x": 4, @@ -3520,7 +3520,7 @@ { "lineGroupId": 82, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.4824871921960963, "position": { "x": 5, @@ -3543,7 +3543,7 @@ { "lineGroupId": 82, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 4638.0, "time": 0.4824871921960963, "position": { "x": 5, @@ -3566,7 +3566,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.48498712583441805, "position": { "x": 4, @@ -3589,7 +3589,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 4, @@ -3612,7 +3612,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.48748705947273985, "position": { "x": 5, @@ -3635,7 +3635,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.48748705947273985, "position": { "x": 5, @@ -3658,7 +3658,7 @@ { "lineGroupId": 86, "indexInLine": 1, - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.49998672766434854, "position": { "x": 6, @@ -3681,7 +3681,7 @@ { "lineGroupId": 86, "indexInLine": 2, - "noteOrder": 2412, + "noteOrder": 4824, "time": 0.5024866613026703, "position": { "x": 6, @@ -3704,7 +3704,7 @@ { "lineGroupId": 86, "indexInLine": 3, - "noteOrder": 2412, + "noteOrder": 4824, "time": 0.5024866613026703, "position": { "x": 6, @@ -3727,7 +3727,7 @@ { "lineGroupId": 86, "indexInLine": 4, - "noteOrder": 2418.0, + "noteOrder": 4830.0, "time": 0.5024866613026703, "position": { "x": 6, @@ -3750,7 +3750,7 @@ { "lineGroupId": 87, "indexInLine": 1, - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049865949409921, "position": { "x": 4, @@ -3773,7 +3773,7 @@ { "lineGroupId": 87, "indexInLine": 2, - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 4, @@ -3796,7 +3796,7 @@ { "lineGroupId": 87, "indexInLine": 3, - "noteOrder": 2436, + "noteOrder": 4872, "time": 0.5074865285793138, "position": { "x": 4, @@ -3819,7 +3819,7 @@ { "lineGroupId": 87, "indexInLine": 4, - "noteOrder": 2442.0, + "noteOrder": 4878.0, "time": 0.5074865285793138, "position": { "x": 4, @@ -3842,7 +3842,7 @@ { "lineGroupId": 90, "indexInLine": 1, - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199861967709225, "position": { "x": 4, @@ -3865,7 +3865,7 @@ { "lineGroupId": 90, "indexInLine": 2, - "noteOrder": 2508, + "noteOrder": 5016, "time": 0.5224861304092443, "position": { "x": 4, @@ -3888,7 +3888,7 @@ { "lineGroupId": 90, "indexInLine": 3, - "noteOrder": 2508, + "noteOrder": 5016, "time": 0.5224861304092443, "position": { "x": 4, @@ -3911,7 +3911,7 @@ { "lineGroupId": 90, "indexInLine": 4, - "noteOrder": 2514.0, + "noteOrder": 5022.0, "time": 0.5224861304092443, "position": { "x": 4, @@ -3934,7 +3934,7 @@ { "lineGroupId": 91, "indexInLine": 1, - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.524986064047566, "position": { "x": 6, @@ -3957,7 +3957,7 @@ { "lineGroupId": 91, "indexInLine": 2, - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 6, @@ -3980,7 +3980,7 @@ { "lineGroupId": 91, "indexInLine": 3, - "noteOrder": 2532, + "noteOrder": 5064, "time": 0.5274859976858877, "position": { "x": 6, @@ -4003,7 +4003,7 @@ { "lineGroupId": 91, "indexInLine": 4, - "noteOrder": 2538.0, + "noteOrder": 5070.0, "time": 0.5274859976858877, "position": { "x": 6, @@ -4026,7 +4026,7 @@ { "lineGroupId": 94, "indexInLine": 1, - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399856658774964, "position": { "x": 6, @@ -4049,7 +4049,7 @@ { "lineGroupId": 94, "indexInLine": 2, - "noteOrder": 2604, + "noteOrder": 5208, "time": 0.5424855995158182, "position": { "x": 6, @@ -4072,7 +4072,7 @@ { "lineGroupId": 94, "indexInLine": 3, - "noteOrder": 2604, + "noteOrder": 5208, "time": 0.5424855995158182, "position": { "x": 6, @@ -4095,7 +4095,7 @@ { "lineGroupId": 94, "indexInLine": 4, - "noteOrder": 2610.0, + "noteOrder": 5214.0, "time": 0.5424855995158182, "position": { "x": 6, @@ -4118,7 +4118,7 @@ { "lineGroupId": 95, "indexInLine": 1, - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449855331541399, "position": { "x": 4, @@ -4141,7 +4141,7 @@ { "lineGroupId": 95, "indexInLine": 2, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 4, @@ -4164,7 +4164,7 @@ { "lineGroupId": 95, "indexInLine": 3, - "noteOrder": 2628, + "noteOrder": 5256, "time": 0.5474854667924617, "position": { "x": 4, @@ -4187,7 +4187,7 @@ { "lineGroupId": 95, "indexInLine": 4, - "noteOrder": 2634.0, + "noteOrder": 5262.0, "time": 0.5474854667924617, "position": { "x": 4, @@ -4210,7 +4210,7 @@ { "lineGroupId": 102, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799846040906443, "position": { "x": 6, @@ -4233,7 +4233,7 @@ { "lineGroupId": 102, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849844713672878, "position": { "x": 6, @@ -4256,7 +4256,7 @@ { "lineGroupId": 104, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899843386439312, "position": { "x": 8, @@ -4279,7 +4279,7 @@ { "lineGroupId": 104, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949842059205748, "position": { "x": 8, @@ -4302,7 +4302,7 @@ { "lineGroupId": 106, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999840731972182, "position": { "x": 4, @@ -4325,7 +4325,7 @@ { "lineGroupId": 106, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.6049839404738617, "position": { "x": 4, @@ -4348,7 +4348,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099838077505052, "position": { "x": 2, @@ -4371,7 +4371,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149836750271487, "position": { "x": 2, @@ -4394,7 +4394,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199835423037922, "position": { "x": 6, @@ -4417,7 +4417,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 6, @@ -4440,7 +4440,7 @@ { "lineGroupId": 110, "indexInLine": 3, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249834095804357, "position": { "x": 5, @@ -4463,7 +4463,7 @@ { "lineGroupId": 110, "indexInLine": 4, - "noteOrder": 3006.0, + "noteOrder": 6006.0, "time": 0.6249834095804357, "position": { "x": 5, @@ -4486,7 +4486,7 @@ { "lineGroupId": 113, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399830114103662, "position": { "x": 4, @@ -4509,7 +4509,7 @@ { "lineGroupId": 113, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 4, @@ -4532,7 +4532,7 @@ { "lineGroupId": 113, "indexInLine": 3, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449828786870097, "position": { "x": 4, @@ -4555,7 +4555,7 @@ { "lineGroupId": 113, "indexInLine": 4, - "noteOrder": 3102.0, + "noteOrder": 6198.0, "time": 0.6449828786870097, "position": { "x": 4, @@ -4578,7 +4578,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599824805169401, "position": { "x": 4, @@ -4601,7 +4601,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 4, @@ -4624,7 +4624,7 @@ { "lineGroupId": 116, "indexInLine": 3, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649823477935836, "position": { "x": 5, @@ -4647,7 +4647,7 @@ { "lineGroupId": 116, "indexInLine": 4, - "noteOrder": 3198.0, + "noteOrder": 6390.0, "time": 0.6649823477935836, "position": { "x": 5, @@ -4670,7 +4670,7 @@ { "lineGroupId": 119, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.679981949623514, "position": { "x": 6, @@ -4693,7 +4693,7 @@ { "lineGroupId": 119, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849818169001575, "position": { "x": 6, @@ -4716,7 +4716,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 3312, + "noteOrder": 6624, "time": 0.6899816841768011, "position": { "x": 4, @@ -4739,7 +4739,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949815514534445, "position": { "x": 4, @@ -4762,7 +4762,7 @@ { "lineGroupId": 127, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.7199808878366619, "position": { "x": 6, @@ -4785,7 +4785,7 @@ { "lineGroupId": 127, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 6, @@ -4808,7 +4808,7 @@ { "lineGroupId": 127, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224808214749837, "position": { "x": 5, @@ -4831,7 +4831,7 @@ { "lineGroupId": 127, "indexInLine": 4, - "noteOrder": 3474.0, + "noteOrder": 6942.0, "time": 0.7224808214749837, "position": { "x": 5, @@ -4854,7 +4854,7 @@ { "lineGroupId": 128, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249807551133054, "position": { "x": 6, @@ -4877,7 +4877,7 @@ { "lineGroupId": 128, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 6, @@ -4900,7 +4900,7 @@ { "lineGroupId": 128, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274806887516272, "position": { "x": 5, @@ -4923,7 +4923,7 @@ { "lineGroupId": 128, "indexInLine": 4, - "noteOrder": 3498.0, + "noteOrder": 6990.0, "time": 0.7274806887516272, "position": { "x": 5, @@ -4946,7 +4946,7 @@ { "lineGroupId": 131, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399803569432358, "position": { "x": 6, @@ -4969,7 +4969,7 @@ { "lineGroupId": 131, "indexInLine": 2, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 6, @@ -4992,7 +4992,7 @@ { "lineGroupId": 131, "indexInLine": 3, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 5, @@ -5015,7 +5015,7 @@ { "lineGroupId": 131, "indexInLine": 4, - "noteOrder": 3570.0, + "noteOrder": 7134.0, "time": 0.7424802905815575, "position": { "x": 5, @@ -5038,7 +5038,7 @@ { "lineGroupId": 132, "indexInLine": 1, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449802242198793, "position": { "x": 6, @@ -5061,7 +5061,7 @@ { "lineGroupId": 132, "indexInLine": 2, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.747480157858201, "position": { "x": 6, @@ -5084,7 +5084,7 @@ { "lineGroupId": 132, "indexInLine": 3, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.747480157858201, "position": { "x": 5, @@ -5107,7 +5107,7 @@ { "lineGroupId": 132, "indexInLine": 4, - "noteOrder": 3594.0, + "noteOrder": 7182.0, "time": 0.747480157858201, "position": { "x": 5, @@ -5130,7 +5130,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599798260498098, "position": { "x": 6, @@ -5153,7 +5153,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649796933264533, "position": { "x": 6, @@ -5176,7 +5176,7 @@ { "lineGroupId": 137, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699795606030968, "position": { "x": 8, @@ -5199,7 +5199,7 @@ { "lineGroupId": 137, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749794278797402, "position": { "x": 8, @@ -5222,7 +5222,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799792951563836, "position": { "x": 4, @@ -5245,7 +5245,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 4, @@ -5268,7 +5268,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849791624330272, "position": { "x": 5, @@ -5291,7 +5291,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3774.0, + "noteOrder": 7542.0, "time": 0.7849791624330272, "position": { "x": 5, @@ -5314,7 +5314,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899790297096707, "position": { "x": 6, @@ -5337,7 +5337,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 6, @@ -5360,7 +5360,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.7949788969863142, "position": { "x": 6, @@ -5383,7 +5383,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 3822.0, + "noteOrder": 7638.0, "time": 0.7949788969863142, "position": { "x": 6, @@ -5406,7 +5406,7 @@ { "lineGroupId": 141, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999787642629577, "position": { "x": 4, @@ -5429,7 +5429,7 @@ { "lineGroupId": 141, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 4, @@ -5452,7 +5452,7 @@ { "lineGroupId": 141, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024786979012795, "position": { "x": 5, @@ -5475,7 +5475,7 @@ { "lineGroupId": 141, "indexInLine": 4, - "noteOrder": 3858.0, + "noteOrder": 7710.0, "time": 0.8024786979012795, "position": { "x": 5, @@ -5498,7 +5498,7 @@ { "lineGroupId": 142, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049786315396011, "position": { "x": 4, @@ -5521,7 +5521,7 @@ { "lineGroupId": 142, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 4, @@ -5544,7 +5544,7 @@ { "lineGroupId": 142, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074785651779228, "position": { "x": 5, @@ -5567,7 +5567,7 @@ { "lineGroupId": 142, "indexInLine": 4, - "noteOrder": 3882.0, + "noteOrder": 7758.0, "time": 0.8074785651779228, "position": { "x": 5, @@ -5590,7 +5590,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199782333695317, "position": { "x": 4, @@ -5613,7 +5613,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224781670078534, "position": { "x": 4, @@ -5636,7 +5636,7 @@ { "lineGroupId": 145, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224781670078534, "position": { "x": 5, @@ -5659,7 +5659,7 @@ { "lineGroupId": 145, "indexInLine": 4, - "noteOrder": 3954.0, + "noteOrder": 7902.0, "time": 0.8224781670078534, "position": { "x": 5, @@ -5682,7 +5682,7 @@ { "lineGroupId": 146, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249781006461752, "position": { "x": 4, @@ -5705,7 +5705,7 @@ { "lineGroupId": 146, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274780342844968, "position": { "x": 4, @@ -5728,7 +5728,7 @@ { "lineGroupId": 146, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274780342844968, "position": { "x": 5, @@ -5751,7 +5751,7 @@ { "lineGroupId": 146, "indexInLine": 4, - "noteOrder": 3978.0, + "noteOrder": 7950.0, "time": 0.8274780342844968, "position": { "x": 5, @@ -5774,7 +5774,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399777024761055, "position": { "x": 4, @@ -5797,7 +5797,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.844977569752749, "position": { "x": 4, @@ -5820,7 +5820,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499774370293925, "position": { "x": 2, @@ -5843,7 +5843,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.854977304306036, "position": { "x": 2, @@ -5866,7 +5866,7 @@ { "lineGroupId": 153, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599771715826795, "position": { "x": 6, @@ -5889,7 +5889,7 @@ { "lineGroupId": 153, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 6, @@ -5912,7 +5912,7 @@ { "lineGroupId": 153, "indexInLine": 3, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.864977038859323, "position": { "x": 5, @@ -5935,7 +5935,7 @@ { "lineGroupId": 153, "indexInLine": 4, - "noteOrder": 4158.0, + "noteOrder": 8310.0, "time": 0.864977038859323, "position": { "x": 5, @@ -5958,7 +5958,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699769061359665, "position": { "x": 4, @@ -5981,7 +5981,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 4, @@ -6004,7 +6004,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.8749767734126099, "position": { "x": 4, @@ -6027,7 +6027,7 @@ { "lineGroupId": 154, "indexInLine": 4, - "noteOrder": 4206.0, + "noteOrder": 8406.0, "time": 0.8749767734126099, "position": { "x": 4, @@ -6062,7 +6062,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "2.8", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/info.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/info.json index dddcffb3..0ecf0010 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix) SPONGEBOB EDITION/info.json @@ -3,7 +3,7 @@ "SongName": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) SPONGEBOB EDITION", "SongLength": "112.152472", "SongAuthorName": "kors k", - "Bpm": "107", + "Bpm": "214", "SongPath": "201.ogg", "CreateTicks": 637200864000000000, "CreateTime": "637200864000000000", diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a.json index c5152e15..aa19ded8 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) difficulty_1a", "sphereNodes": [ { - "noteOrder": 168, + "noteOrder": 336, "time": 0.03499699944197396, "position": { "x": 3, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 180, + "noteOrder": 360, "time": 0.03750251710902993, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 480, "time": 0.04999443971239439, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 252, + "noteOrder": 504, "time": 0.05249995737945036, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08500035558734718, "position": { "x": 8, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499947393045424, "position": { "x": 2, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 1248, "time": 0.1299926763986085, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499903310200776, "position": { "x": 8, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499435447129511, "position": { "x": 2, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 1680, "time": 0.17499391364284864, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999603254398175, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999135391326907, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999559171553524, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999091308482257, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249643075187857, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349925911575092, "position": { "x": 8, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449968289597754, "position": { "x": 2, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.2599942692301958, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.2649963881313289, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699895905994832, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.27499170950061624, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149908278437233, "position": { "x": 2, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.32498614921301067, "position": { "x": 8, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.3299882681141437, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.33999250591640995, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.3449857083845642, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.3499878272856973, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549899461868304, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.3599920650879635, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.3724929041243068, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.377486106592461, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874903443947272, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874903443947272, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.3999911834310705, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.40498438589922475, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998650480035786, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.414988623701491, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41999074260262403, "position": { "x": 3, @@ -902,1329 +902,9 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 2016, - "time": 0.41999074260262403, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2040, - "time": 0.42498394507077825, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2064, - "time": 0.42998606397191136, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2076, - "time": 0.43249158163896734, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2088, - "time": 0.4349881828730444, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2112, - "time": 0.43999030177417753, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2112, - "time": 0.43999030177417753, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2136, - "time": 0.4449835042423318, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2160, - "time": 0.4499856231434649, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2172, - "time": 0.45249114081052083, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2184, - "time": 0.45498774204459796, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2208, - "time": 0.4599898609457311, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2208, - "time": 0.4599898609457311, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2280, - "time": 0.4749873012161515, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2304, - "time": 0.4799894201172846, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2304, - "time": 0.4799894201172846, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2376, - "time": 0.49498686038770506, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2400, - "time": 0.4999889792888382, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2400, - "time": 0.4999889792888382, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2424, - "time": 0.5049821817569924, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2448, - "time": 0.5099843006581255, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2460, - "time": 0.5124809018922026, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2472, - "time": 0.5149864195592585, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2496, - "time": 0.5199885384603916, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2496, - "time": 0.5199885384603916, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2520, - "time": 0.5249817409285459, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2544, - "time": 0.529983859829679, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2556, - "time": 0.5324804610637561, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2568, - "time": 0.5349859787308121, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2592, - "time": 0.5399880976319452, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2592, - "time": 0.5399880976319452, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2616, - "time": 0.5449813001000995, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2640, - "time": 0.5499834190012325, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2652, - "time": 0.5524800202353096, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2676, - "time": 0.5574821391364427, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2700, - "time": 0.5624842580375758, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2724, - "time": 0.567486376938709, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2748, - "time": 0.5724795794068631, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2784, - "time": 0.5799872159750522, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2808, - "time": 0.5849804184432065, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2832, - "time": 0.5899825373443396, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2880, - "time": 0.5999867751466058, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2904, - "time": 0.60497997761476, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2928, - "time": 0.6099820965158931, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3000, - "time": 0.6249795367863136, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3048, - "time": 0.6349837745885798, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3096, - "time": 0.6449790959578671, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3120, - "time": 0.6499812148590002, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3288, - "time": 0.6849782143009742, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3360, - "time": 0.6999756545713945, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3372, - "time": 0.7024811722384505, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3384, - "time": 0.7049777734725277, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3396, - "time": 0.7074832911395836, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3408, - "time": 0.7099798923736608, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3408, - "time": 0.7099798923736608, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3528, - "time": 0.7349815704463474, - "position": { - "x": 8, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3576, - "time": 0.7449768918156346, - "position": { - "x": 2, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3600, - "time": 0.7499790107167678, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3648, - "time": 0.7599743320860551, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3672, - "time": 0.7649764509871881, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3696, - "time": 0.7699785698883214, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3720, - "time": 0.7749806887894544, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3912, - "time": 0.8149798071325615, - "position": { - "x": 2, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3960, - "time": 0.8249751285018487, - "position": { - "x": 8, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3984, - "time": 0.829977247402982, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 4032, - "time": 0.8399725687722692, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4056, - "time": 0.8449746876734023, + "time": 0.41999074260262403, "position": { "x": 7, "y": 0 @@ -2244,12 +924,12 @@ }, { "noteOrder": 4080, - "time": 0.8499768065745353, + "time": 0.42498394507077825, "position": { - "x": 4, + "x": 7, "y": 0 }, - "noteType": 8, + "noteType": 9, "position2D": { "x": 0, "y": 0 @@ -2263,8 +943,8 @@ "isPlayAudio": false }, { - "noteOrder": 4104, - "time": 0.8549789254756686, + "noteOrder": 4128, + "time": 0.42998606397191136, "position": { "x": 3, "y": 0 @@ -2283,8 +963,8 @@ "isPlayAudio": false }, { - "noteOrder": 4128, - "time": 0.8599721279438227, + "noteOrder": 4152, + "time": 0.43249158163896734, "position": { "x": 7, "y": 0 @@ -2304,9 +984,9 @@ }, { "noteOrder": 4176, - "time": 0.8699763657460888, + "time": 0.4349881828730444, "position": { - "x": 4, + "x": 3, "y": 0 }, "noteType": 8, @@ -2323,13 +1003,13 @@ "isPlayAudio": false }, { - "noteOrder": 4188, - "time": 0.872472966980166, + "noteOrder": 4224, + "time": 0.43999030177417753, "position": { - "x": 5, + "x": 3, "y": 0 }, - "noteType": 9, + "noteType": 8, "position2D": { "x": 0, "y": 0 @@ -2343,72 +1023,12 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.874978484647222, + "noteOrder": 4224, + "time": 0.43999030177417753, "position": { "x": 7, "y": 0 }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4212, - "time": 0.8774750858812992, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4260, - "time": 0.8874704072505865, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4260, - "time": 0.8874704072505865, - "position": { - "x": 6, - "y": 0 - }, "noteType": 9, "position2D": { "x": 0, @@ -2424,9 +1044,9 @@ }, { "noteOrder": 4272, - "time": 0.8899759249176424, + "time": 0.4449835042423318, "position": { - "x": 4, + "x": 3, "y": 0 }, "noteType": 8, @@ -2442,29 +1062,9 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 4272, - "time": 0.8899759249176424, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 4320, - "time": 0.8999712462869298, + "time": 0.4499856231434649, "position": { "x": 7, "y": 0 @@ -2484,7 +1084,7 @@ }, { "noteOrder": 4344, - "time": 0.9049733651880629, + "time": 0.45249114081052083, "position": { "x": 3, "y": 0 @@ -2504,6 +1104,1406 @@ }, { "noteOrder": 4368, + "time": 0.45498774204459796, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4416, + "time": 0.4599898609457311, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4416, + "time": 0.4599898609457311, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4560, + "time": 0.4749873012161515, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4608, + "time": 0.4799894201172846, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4608, + "time": 0.4799894201172846, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4752, + "time": 0.49498686038770506, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4800, + "time": 0.4999889792888382, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4800, + "time": 0.4999889792888382, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4848, + "time": 0.5049821817569924, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4896, + "time": 0.5099843006581255, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4920, + "time": 0.5124809018922026, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4944, + "time": 0.5149864195592585, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4992, + "time": 0.5199885384603916, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4992, + "time": 0.5199885384603916, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5040, + "time": 0.5249817409285459, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5088, + "time": 0.529983859829679, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5112, + "time": 0.5324804610637561, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5136, + "time": 0.5349859787308121, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5184, + "time": 0.5399880976319452, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5184, + "time": 0.5399880976319452, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5232, + "time": 0.5449813001000995, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5280, + "time": 0.5499834190012325, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5304, + "time": 0.5524800202353096, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5352, + "time": 0.5574821391364427, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5400, + "time": 0.5624842580375758, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5448, + "time": 0.567486376938709, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5496, + "time": 0.5724795794068631, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5568, + "time": 0.5799872159750522, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5616, + "time": 0.5849804184432065, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5664, + "time": 0.5899825373443396, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5760, + "time": 0.5999867751466058, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5808, + "time": 0.60497997761476, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5856, + "time": 0.6099820965158931, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6000, + "time": 0.6249795367863136, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6096, + "time": 0.6349837745885798, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6192, + "time": 0.6449790959578671, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6240, + "time": 0.6499812148590002, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6576, + "time": 0.6849782143009742, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6720, + "time": 0.6999756545713945, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6744, + "time": 0.7024811722384505, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6768, + "time": 0.7049777734725277, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6792, + "time": 0.7074832911395836, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6816, + "time": 0.7099798923736608, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6816, + "time": 0.7099798923736608, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7056, + "time": 0.7349815704463474, + "position": { + "x": 8, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7152, + "time": 0.7449768918156346, + "position": { + "x": 2, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7200, + "time": 0.7499790107167678, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7296, + "time": 0.7599743320860551, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7344, + "time": 0.7649764509871881, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7392, + "time": 0.7699785698883214, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7440, + "time": 0.7749806887894544, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7824, + "time": 0.8149798071325615, + "position": { + "x": 2, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7920, + "time": 0.8249751285018487, + "position": { + "x": 8, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7968, + "time": 0.829977247402982, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8064, + "time": 0.8399725687722692, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8112, + "time": 0.8449746876734023, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8160, + "time": 0.8499768065745353, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8208, + "time": 0.8549789254756686, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8256, + "time": 0.8599721279438227, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8352, + "time": 0.8699763657460888, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8376, + "time": 0.872472966980166, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8400, + "time": 0.874978484647222, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8424, + "time": 0.8774750858812992, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8520, + "time": 0.8874704072505865, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8520, + "time": 0.8874704072505865, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8544, + "time": 0.8899759249176424, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8544, + "time": 0.8899759249176424, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8640, + "time": 0.8999712462869298, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8688, + "time": 0.9049733651880629, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8736, "time": 0.9099754840891959, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149776029903292, "position": { "x": 3, @@ -2547,7 +2547,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 288, "time": 0.029994880540840863, "position": { "x": 7, @@ -2570,7 +2570,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 156, + "noteOrder": 312, "time": 0.03250039820789683, "position": { "x": 7, @@ -2593,7 +2593,7 @@ { "lineGroupId": 3, "indexInLine": 3, - "noteOrder": 156, + "noteOrder": 312, "time": 0.03250039820789683, "position": { "x": 5, @@ -2616,7 +2616,7 @@ { "lineGroupId": 3, "indexInLine": 4, - "noteOrder": 162.0, + "noteOrder": 318.0, "time": 0.03250039820789683, "position": { "x": 5, @@ -2639,7 +2639,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999867751466058, "position": { "x": 6, @@ -2662,7 +2662,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 300, + "noteOrder": 600, "time": 0.062495278748737705, "position": { "x": 6, @@ -2685,7 +2685,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 300, + "noteOrder": 600, "time": 0.062495278748737705, "position": { "x": 4, @@ -2708,7 +2708,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 4, @@ -2731,7 +2731,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 6, @@ -2754,7 +2754,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 324, + "noteOrder": 648, "time": 0.0674973976498708, "position": { "x": 6, @@ -2777,7 +2777,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 324, + "noteOrder": 648, "time": 0.0674973976498708, "position": { "x": 4, @@ -2800,7 +2800,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 4, @@ -2823,7 +2823,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 6, @@ -2846,7 +2846,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249951655100388, "position": { "x": 6, @@ -2869,7 +2869,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249951655100388, "position": { "x": 4, @@ -2892,7 +2892,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 4, @@ -2915,7 +2915,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 6, @@ -2938,7 +2938,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07750163545213698, "position": { "x": 6, @@ -2961,7 +2961,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07750163545213698, "position": { "x": 4, @@ -2984,7 +2984,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 4, @@ -3007,7 +3007,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 6, @@ -3030,7 +3030,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 6, @@ -3053,7 +3053,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999779585776762, "position": { "x": 4, @@ -3076,7 +3076,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 492, + "noteOrder": 984, "time": 0.10249439709184474, "position": { "x": 4, @@ -3099,7 +3099,7 @@ { "lineGroupId": 20, "indexInLine": 3, - "noteOrder": 492, + "noteOrder": 984, "time": 0.10249439709184474, "position": { "x": 6, @@ -3122,7 +3122,7 @@ { "lineGroupId": 20, "indexInLine": 4, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 6, @@ -3145,7 +3145,7 @@ { "lineGroupId": 20, "indexInLine": 5, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 8, @@ -3168,7 +3168,7 @@ { "lineGroupId": 20, "indexInLine": 6, - "noteOrder": 510.0, + "noteOrder": 1014.0, "time": 0.10499991475890072, "position": { "x": 8, @@ -3191,7 +3191,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 4, @@ -3214,7 +3214,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 1032, "time": 0.10749651599297784, "position": { "x": 4, @@ -3237,7 +3237,7 @@ { "lineGroupId": 21, "indexInLine": 3, - "noteOrder": 516, + "noteOrder": 1032, "time": 0.10749651599297784, "position": { "x": 6, @@ -3260,7 +3260,7 @@ { "lineGroupId": 21, "indexInLine": 4, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 6, @@ -3283,7 +3283,7 @@ { "lineGroupId": 21, "indexInLine": 5, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 8, @@ -3306,7 +3306,7 @@ { "lineGroupId": 21, "indexInLine": 6, - "noteOrder": 534.0, + "noteOrder": 1062.0, "time": 0.10999311722705497, "position": { "x": 8, @@ -3329,7 +3329,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 4, @@ -3352,7 +3352,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 1080, "time": 0.11249863489411094, "position": { "x": 4, @@ -3375,7 +3375,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 540, + "noteOrder": 1080, "time": 0.11249863489411094, "position": { "x": 6, @@ -3398,7 +3398,7 @@ { "lineGroupId": 22, "indexInLine": 4, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 6, @@ -3421,7 +3421,7 @@ { "lineGroupId": 22, "indexInLine": 5, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 8, @@ -3444,7 +3444,7 @@ { "lineGroupId": 22, "indexInLine": 6, - "noteOrder": 558.0, + "noteOrder": 1110.0, "time": 0.11499523612818806, "position": { "x": 8, @@ -3467,7 +3467,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 4, @@ -3490,7 +3490,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 564, + "noteOrder": 1128, "time": 0.11750075379524404, "position": { "x": 4, @@ -3513,7 +3513,7 @@ { "lineGroupId": 23, "indexInLine": 3, - "noteOrder": 564, + "noteOrder": 1128, "time": 0.11750075379524404, "position": { "x": 6, @@ -3536,7 +3536,7 @@ { "lineGroupId": 23, "indexInLine": 4, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 6, @@ -3559,7 +3559,7 @@ { "lineGroupId": 23, "indexInLine": 5, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 8, @@ -3582,7 +3582,7 @@ { "lineGroupId": 23, "indexInLine": 6, - "noteOrder": 582.0, + "noteOrder": 1158.0, "time": 0.11999735502932116, "position": { "x": 8, @@ -3605,7 +3605,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 4, @@ -3628,7 +3628,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 1248, "time": 0.1299926763986085, "position": { "x": 4, @@ -3651,7 +3651,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999691420087468, "position": { "x": 6, @@ -3674,7 +3674,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 6, @@ -3697,7 +3697,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 4, @@ -3720,7 +3720,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 4, @@ -3743,7 +3743,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 7, @@ -3766,7 +3766,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 7, @@ -3789,7 +3789,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 1632, "time": 0.16999179474171555, "position": { "x": 3, @@ -3812,7 +3812,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 1680, "time": 0.17499391364284864, "position": { "x": 3, @@ -3835,7 +3835,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499303198595568, "position": { "x": 3, @@ -3858,7 +3858,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 3, @@ -3881,7 +3881,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 6, @@ -3904,7 +3904,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 6, @@ -3927,7 +3927,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 4, @@ -3950,7 +3950,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 4, @@ -3973,7 +3973,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 6, @@ -3996,7 +3996,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 6, @@ -4019,7 +4019,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 4, @@ -4042,7 +4042,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 4, @@ -4065,7 +4065,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 6, @@ -4088,7 +4088,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 6, @@ -4111,7 +4111,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 4, @@ -4134,7 +4134,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 4, @@ -4157,7 +4157,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999382840174936, "position": { "x": 3, @@ -4180,7 +4180,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 2712, "time": 0.2824904296358265, "position": { "x": 3, @@ -4203,7 +4203,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1356, + "noteOrder": 2712, "time": 0.2824904296358265, "position": { "x": 6, @@ -4226,7 +4226,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1362.0, + "noteOrder": 2718.0, "time": 0.2824904296358265, "position": { "x": 6, @@ -4249,7 +4249,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 7, @@ -4272,7 +4272,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1380, + "noteOrder": 2760, "time": 0.2874925485369596, "position": { "x": 7, @@ -4295,7 +4295,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1380, + "noteOrder": 2760, "time": 0.2874925485369596, "position": { "x": 4, @@ -4318,7 +4318,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1386.0, + "noteOrder": 2766.0, "time": 0.2874925485369596, "position": { "x": 4, @@ -4341,7 +4341,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28998914977103674, "position": { "x": 3, @@ -4364,7 +4364,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.29249466743809266, "position": { "x": 3, @@ -4387,7 +4387,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.29249466743809266, "position": { "x": 6, @@ -4410,7 +4410,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 2814.0, "time": 0.29249466743809266, "position": { "x": 6, @@ -4433,7 +4433,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 7, @@ -4456,7 +4456,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 7, @@ -4479,7 +4479,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 4, @@ -4502,7 +4502,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 4, @@ -4525,7 +4525,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 6, @@ -4548,7 +4548,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 6, @@ -4571,7 +4571,7 @@ { "lineGroupId": 64, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 8, @@ -4594,7 +4594,7 @@ { "lineGroupId": 64, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 2934.0, "time": 0.304995506474436, "position": { "x": 8, @@ -4617,7 +4617,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 4, @@ -4640,7 +4640,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 4, @@ -4663,7 +4663,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 6, @@ -4686,7 +4686,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 6, @@ -4709,7 +4709,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 8, @@ -4732,7 +4732,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 2982.0, "time": 0.30998870894259023, "position": { "x": 8, @@ -4755,7 +4755,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 4, @@ -4778,7 +4778,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 4, @@ -4801,7 +4801,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 6, @@ -4824,7 +4824,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.3299882681141437, "position": { "x": 6, @@ -4847,7 +4847,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.37999162425951694, "position": { "x": 3, @@ -4870,7 +4870,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 3, @@ -4893,7 +4893,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 5, @@ -4916,7 +4916,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 5, @@ -4939,7 +4939,7 @@ { "lineGroupId": 83, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 3, @@ -4962,7 +4962,7 @@ { "lineGroupId": 83, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849848267276712, "position": { "x": 3, @@ -4985,7 +4985,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.37999162425951694, "position": { "x": 7, @@ -5008,7 +5008,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 7, @@ -5031,7 +5031,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 5, @@ -5054,7 +5054,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 5, @@ -5077,7 +5077,7 @@ { "lineGroupId": 84, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 7, @@ -5100,7 +5100,7 @@ { "lineGroupId": 84, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849848267276712, "position": { "x": 7, @@ -5123,7 +5123,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498306341388534, "position": { "x": 7, @@ -5146,7 +5146,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 7, @@ -5169,7 +5169,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 5, @@ -5192,7 +5192,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.46748858108094127, "position": { "x": 5, @@ -5215,7 +5215,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699851823150184, "position": { "x": 3, @@ -5238,7 +5238,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.47248178354909554, "position": { "x": 3, @@ -5261,7 +5261,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.47248178354909554, "position": { "x": 5, @@ -5284,7 +5284,7 @@ { "lineGroupId": 115, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 4542.0, "time": 0.47248178354909554, "position": { "x": 5, @@ -5307,7 +5307,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.4849826225854389, "position": { "x": 7, @@ -5330,7 +5330,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 7, @@ -5353,7 +5353,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 5, @@ -5376,7 +5376,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.4874881402524948, "position": { "x": 5, @@ -5399,7 +5399,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.48998474148657195, "position": { "x": 3, @@ -5422,7 +5422,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.49248134272064903, "position": { "x": 3, @@ -5445,7 +5445,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.49248134272064903, "position": { "x": 5, @@ -5468,7 +5468,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 4734.0, "time": 0.49248134272064903, "position": { "x": 5, @@ -5491,7 +5491,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799872159750522, "position": { "x": 7, @@ -5514,7 +5514,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 2796, + "noteOrder": 5592, "time": 0.5824838172091293, "position": { "x": 7, @@ -5537,7 +5537,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 5, @@ -5560,7 +5560,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 3, @@ -5583,7 +5583,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999867751466058, "position": { "x": 3, @@ -5606,7 +5606,7 @@ { "lineGroupId": 157, "indexInLine": 3, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 5, @@ -5629,7 +5629,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 7, @@ -5652,7 +5652,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 7, @@ -5675,7 +5675,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 3, @@ -5698,7 +5698,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 3, @@ -5721,7 +5721,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 7, @@ -5744,7 +5744,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 7, @@ -5767,7 +5767,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 3, @@ -5790,7 +5790,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.6499812148590002, "position": { "x": 3, @@ -5813,7 +5813,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599765362282874, "position": { "x": 7, @@ -5836,7 +5836,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 7, @@ -5859,7 +5859,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 5, @@ -5882,7 +5882,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 5, @@ -5905,7 +5905,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 3, @@ -5928,7 +5928,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 3, @@ -5951,7 +5951,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 5, @@ -5974,7 +5974,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 5, @@ -5997,7 +5997,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 7, @@ -6020,7 +6020,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849782143009742, "position": { "x": 7, @@ -6043,7 +6043,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.719975213742948, "position": { "x": 6, @@ -6066,7 +6066,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 6, @@ -6089,7 +6089,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 4, @@ -6112,7 +6112,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 4, @@ -6135,7 +6135,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 6, @@ -6158,7 +6158,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 6, @@ -6181,7 +6181,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 4, @@ -6204,7 +6204,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 4, @@ -6227,7 +6227,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 6, @@ -6250,7 +6250,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 6, @@ -6273,7 +6273,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 4, @@ -6296,7 +6296,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499790107167678, "position": { "x": 4, @@ -6319,7 +6319,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799738912576086, "position": { "x": 3, @@ -6342,7 +6342,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824794089246646, "position": { "x": 3, @@ -6365,7 +6365,7 @@ { "lineGroupId": 200, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824794089246646, "position": { "x": 6, @@ -6388,7 +6388,7 @@ { "lineGroupId": 200, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 7518.0, "time": 0.7824794089246646, "position": { "x": 6, @@ -6411,7 +6411,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 7, @@ -6434,7 +6434,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.7874726113928188, "position": { "x": 7, @@ -6457,7 +6457,7 @@ { "lineGroupId": 201, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.7874726113928188, "position": { "x": 4, @@ -6480,7 +6480,7 @@ { "lineGroupId": 201, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 7566.0, "time": 0.7874726113928188, "position": { "x": 4, @@ -6503,7 +6503,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899781290598749, "position": { "x": 3, @@ -6526,7 +6526,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.792474730293952, "position": { "x": 3, @@ -6549,7 +6549,7 @@ { "lineGroupId": 202, "indexInLine": 3, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.792474730293952, "position": { "x": 6, @@ -6572,7 +6572,7 @@ { "lineGroupId": 202, "indexInLine": 4, - "noteOrder": 3810.0, + "noteOrder": 7614.0, "time": 0.792474730293952, "position": { "x": 6, @@ -6595,7 +6595,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 7, @@ -6618,7 +6618,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 7, @@ -6641,7 +6641,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 4, @@ -6664,7 +6664,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 4, @@ -6687,7 +6687,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 6, @@ -6710,7 +6710,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 6, @@ -6733,7 +6733,7 @@ { "lineGroupId": 205, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 8, @@ -6756,7 +6756,7 @@ { "lineGroupId": 205, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 7734.0, "time": 0.8049755693302952, "position": { "x": 8, @@ -6779,7 +6779,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 4, @@ -6802,7 +6802,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 4, @@ -6825,7 +6825,7 @@ { "lineGroupId": 206, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 6, @@ -6848,7 +6848,7 @@ { "lineGroupId": 206, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 6, @@ -6871,7 +6871,7 @@ { "lineGroupId": 206, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 8, @@ -6894,7 +6894,7 @@ { "lineGroupId": 206, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 7782.0, "time": 0.8099776882314283, "position": { "x": 8, @@ -6917,7 +6917,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 4, @@ -6940,7 +6940,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 4, @@ -6963,7 +6963,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 6, @@ -6986,7 +6986,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.829977247402982, "position": { "x": 6, @@ -7009,7 +7009,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799716871153763, "position": { "x": 3, @@ -7032,7 +7032,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 3, @@ -7055,7 +7055,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 5, @@ -7078,7 +7078,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 5, @@ -7101,7 +7101,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 3, @@ -7124,7 +7124,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.8849738060165093, "position": { "x": 3, @@ -7147,7 +7147,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799716871153763, "position": { "x": 7, @@ -7170,7 +7170,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 7, @@ -7193,7 +7193,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 5, @@ -7216,7 +7216,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 5, @@ -7239,7 +7239,7 @@ { "lineGroupId": 225, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 7, @@ -7262,7 +7262,7 @@ { "lineGroupId": 225, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.8849738060165093, "position": { "x": 7, @@ -7285,7 +7285,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199708054584834, "position": { "x": 3, @@ -7308,7 +7308,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 3, @@ -7331,7 +7331,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 5, @@ -7354,7 +7354,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 5, @@ -7377,7 +7377,7 @@ { "lineGroupId": 239, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 3, @@ -7400,7 +7400,7 @@ { "lineGroupId": 239, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 8886.0, "time": 0.9249729243596164, "position": { "x": 3, @@ -7423,7 +7423,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199708054584834, "position": { "x": 7, @@ -7446,7 +7446,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 7, @@ -7469,7 +7469,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 5, @@ -7492,7 +7492,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 5, @@ -7515,7 +7515,7 @@ { "lineGroupId": 240, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 7, @@ -7538,7 +7538,7 @@ { "lineGroupId": 240, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 8886.0, "time": 0.9249729243596164, "position": { "x": 7, @@ -7561,7 +7561,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 97.5, + "noteOrder": 193.5, "time": 0.019999559171553525, "position": { "x": 5, @@ -7589,7 +7589,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 121.5, + "noteOrder": 241.5, "time": 0.025001678072686617, "position": { "x": 5, @@ -7617,7 +7617,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 193.5, + "noteOrder": 385.5, "time": 0.03999911834310705, "position": { "x": 5, @@ -7645,7 +7645,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 217.5, + "noteOrder": 433.5, "time": 0.04500123724424014, "position": { "x": 5, @@ -7673,7 +7673,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 276.0, + "noteOrder": 540.0, "time": 0.05499655861352749, "position": { "x": 5, @@ -7701,7 +7701,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 433.5, + "noteOrder": 865.5, "time": 0.08999355805550144, "position": { "x": 5, @@ -7729,7 +7729,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 457.5, + "noteOrder": 913.5, "time": 0.09499567695663454, "position": { "x": 5, @@ -7757,7 +7757,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 625.5, + "noteOrder": 1249.5, "time": 0.1299926763986085, "position": { "x": 5, @@ -7785,7 +7785,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 649.5, + "noteOrder": 1297.5, "time": 0.1349947952997416, "position": { "x": 5, @@ -7813,7 +7813,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 889.5, + "noteOrder": 1777.5, "time": 0.18499815144511483, "position": { "x": 5, @@ -7841,7 +7841,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 937.5, + "noteOrder": 1873.5, "time": 0.19499347281440216, "position": { "x": 5, @@ -7869,7 +7869,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 985.5, + "noteOrder": 1969.5, "time": 0.20499771061666835, "position": { "x": 5, @@ -7897,7 +7897,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1045.5, + "noteOrder": 2089.5, "time": 0.2174896332200328, "position": { "x": 5, @@ -7925,7 +7925,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1225.5, + "noteOrder": 2449.5, "time": 0.25499215032906275, "position": { "x": 5, @@ -7953,7 +7953,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1429.5, + "noteOrder": 2857.5, "time": 0.29748786990624687, "position": { "x": 5, @@ -7981,7 +7981,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1585.5, + "noteOrder": 3169.5, "time": 0.3299882681141437, "position": { "x": 5, @@ -8009,7 +8009,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1609.5, + "noteOrder": 3217.5, "time": 0.33499038701527684, "position": { "x": 5, @@ -8037,7 +8037,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1753.5, + "noteOrder": 3505.5, "time": 0.36498526755611765, "position": { "x": 5, @@ -8065,7 +8065,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1897.5, + "noteOrder": 3793.5, "time": 0.39498906452993743, "position": { "x": 5, @@ -8093,7 +8093,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1909.5, + "noteOrder": 3817.5, "time": 0.39748566576401456, "position": { "x": 5, @@ -8121,7 +8121,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1933.5, + "noteOrder": 3865.5, "time": 0.4024877846651476, "position": { "x": 5, @@ -8149,7 +8149,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1957.5, + "noteOrder": 3913.5, "time": 0.40748990356628073, "position": { "x": 5, @@ -8177,7 +8177,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1981.5, + "noteOrder": 3961.5, "time": 0.41249202246741384, "position": { "x": 5, @@ -8205,7 +8205,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2112.0, + "noteOrder": 4212.0, "time": 0.43748478410712155, "position": { "x": 5, @@ -8233,7 +8233,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2208.0, + "noteOrder": 4404.0, "time": 0.4574843432786751, "position": { "x": 5, @@ -8261,7 +8261,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2304.0, + "noteOrder": 4596.0, "time": 0.47748390245022865, "position": { "x": 5, @@ -8289,7 +8289,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2400.0, + "noteOrder": 4788.0, "time": 0.49748346162178214, "position": { "x": 5, @@ -8317,7 +8317,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2496.0, + "noteOrder": 4980.0, "time": 0.5174830207933356, "position": { "x": 5, @@ -8345,7 +8345,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2592.0, + "noteOrder": 5172.0, "time": 0.5374825799648892, "position": { "x": 5, @@ -8373,7 +8373,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2665.5, + "noteOrder": 5329.5, "time": 0.5549855379023656, "position": { "x": 5, @@ -8401,7 +8401,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2689.5, + "noteOrder": 5377.5, "time": 0.5599876568034987, "position": { "x": 5, @@ -8429,7 +8429,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2713.5, + "noteOrder": 5425.5, "time": 0.564980859271653, "position": { "x": 5, @@ -8457,7 +8457,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2737.5, + "noteOrder": 5473.5, "time": 0.569982978172786, "position": { "x": 5, @@ -8485,7 +8485,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2761.5, + "noteOrder": 5521.5, "time": 0.5749850970739192, "position": { "x": 5, @@ -8513,7 +8513,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2784.0, + "noteOrder": 5556.0, "time": 0.5774816983079963, "position": { "x": 5, @@ -8541,7 +8541,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2869.5, + "noteOrder": 5737.5, "time": 0.5974812574795498, "position": { "x": 5, @@ -8569,7 +8569,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2965.5, + "noteOrder": 5929.5, "time": 0.6174808166511033, "position": { "x": 5, @@ -8597,7 +8597,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3121.5, + "noteOrder": 6241.5, "time": 0.6499812148590002, "position": { "x": 5, @@ -8625,7 +8625,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3145.5, + "noteOrder": 6289.5, "time": 0.6549833337601332, "position": { "x": 5, @@ -8653,7 +8653,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3313.5, + "noteOrder": 6625.5, "time": 0.6899803332021072, "position": { "x": 5, @@ -8681,7 +8681,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3337.5, + "noteOrder": 6673.5, "time": 0.6949824521032403, "position": { "x": 5, @@ -8709,7 +8709,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3433.5, + "noteOrder": 6865.5, "time": 0.7149820112747938, "position": { "x": 5, @@ -8737,7 +8737,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3625.5, + "noteOrder": 7249.5, "time": 0.7549811296179009, "position": { "x": 5, @@ -8765,7 +8765,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3829.5, + "noteOrder": 7657.5, "time": 0.797476849195085, "position": { "x": 5, @@ -8793,7 +8793,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3985.5, + "noteOrder": 7969.5, "time": 0.829977247402982, "position": { "x": 5, @@ -8821,7 +8821,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4009.5, + "noteOrder": 8017.5, "time": 0.834979366304115, "position": { "x": 5, @@ -8849,7 +8849,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4153.5, + "noteOrder": 8305.5, "time": 0.8649742468449558, "position": { "x": 5, @@ -8877,7 +8877,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4297.5, + "noteOrder": 8593.5, "time": 0.8949780438187755, "position": { "x": 5, @@ -8905,7 +8905,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4309.5, + "noteOrder": 8617.5, "time": 0.8974746450528527, "position": { "x": 5, @@ -8933,7 +8933,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4333.5, + "noteOrder": 8665.5, "time": 0.9024767639539858, "position": { "x": 5, @@ -8961,7 +8961,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4357.5, + "noteOrder": 8713.5, "time": 0.9074699664221401, "position": { "x": 5, @@ -8989,7 +8989,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4381.5, + "noteOrder": 8761.5, "time": 0.9124720853232731, "position": { "x": 5, @@ -9017,7 +9017,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4453.5, + "noteOrder": 8905.5, "time": 0.9274695255936936, "position": { "x": 5, @@ -9045,7 +9045,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4476.0, + "noteOrder": 8940.0, "time": 0.9299750432607495, "position": { "x": 5, @@ -9073,7 +9073,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4513.5, + "noteOrder": 9025.5, "time": 0.9399703646300368, "position": { "x": 5, @@ -9101,7 +9101,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4537.5, + "noteOrder": 9073.5, "time": 0.9449724835311699, "position": { "x": 5, @@ -9129,7 +9129,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4561.5, + "noteOrder": 9121.5, "time": 0.949974602432303, "position": { "x": 5, @@ -9157,7 +9157,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4585.5, + "noteOrder": 9169.5, "time": 0.9549678049004573, "position": { "x": 5, @@ -9185,7 +9185,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 9217.5, "time": 0.9599699238015903, "position": { "x": 5, @@ -9226,7 +9226,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "3.6", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a_blockless.json index bfdc37b8..9488e3f3 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1a_blockless.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) difficulty_1a (Blockless)", "sphereNodes": [ { - "noteOrder": 168, + "noteOrder": 336, "time": 0.03499699944197396, "position": { "x": 3, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 180, + "noteOrder": 360, "time": 0.03750251710902993, "position": { "x": 7, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 240, + "noteOrder": 480, "time": 0.04999443971239439, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 252, + "noteOrder": 504, "time": 0.05249995737945036, "position": { "x": 4, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08500035558734718, "position": { "x": 8, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 4, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499947393045424, "position": { "x": 2, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 624, + "noteOrder": 1248, "time": 0.1299926763986085, "position": { "x": 6, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499903310200776, "position": { "x": 8, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499435447129511, "position": { "x": 2, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 5, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 840, + "noteOrder": 1680, "time": 0.17499391364284864, "position": { "x": 5, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999603254398175, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999135391326907, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999559171553524, "position": { "x": 7, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999091308482257, "position": { "x": 3, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 1020, + "noteOrder": 2040, "time": 0.21249643075187857, "position": { "x": 7, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 1128, + "noteOrder": 2256, "time": 0.2349925911575092, "position": { "x": 8, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 1176, + "noteOrder": 2352, "time": 0.2449968289597754, "position": { "x": 2, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.2599942692301958, "position": { "x": 4, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.2649963881313289, "position": { "x": 3, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699895905994832, "position": { "x": 6, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.27499170950061624, "position": { "x": 7, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 1512, + "noteOrder": 3024, "time": 0.3149908278437233, "position": { "x": 2, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 1560, + "noteOrder": 3120, "time": 0.32498614921301067, "position": { "x": 8, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.3299882681141437, "position": { "x": 4, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.33999250591640995, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.3449857083845642, "position": { "x": 7, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.3499878272856973, "position": { "x": 4, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549899461868304, "position": { "x": 3, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.3599920650879635, "position": { "x": 7, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1788, + "noteOrder": 3576, "time": 0.3724929041243068, "position": { "x": 5, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 7, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1812, + "noteOrder": 3624, "time": 0.377486106592461, "position": { "x": 5, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874903443947272, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1860, + "noteOrder": 3720, "time": 0.3874903443947272, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 6, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.3999911834310705, "position": { "x": 7, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.40498438589922475, "position": { "x": 3, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998650480035786, "position": { "x": 7, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1992, + "noteOrder": 3984, "time": 0.414988623701491, "position": { "x": 3, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41999074260262403, "position": { "x": 3, @@ -902,1329 +902,9 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 2016, - "time": 0.41999074260262403, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2040, - "time": 0.42498394507077825, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2064, - "time": 0.42998606397191136, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2076, - "time": 0.43249158163896734, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2088, - "time": 0.4349881828730444, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2112, - "time": 0.43999030177417753, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2112, - "time": 0.43999030177417753, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2136, - "time": 0.4449835042423318, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2160, - "time": 0.4499856231434649, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2172, - "time": 0.45249114081052083, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2184, - "time": 0.45498774204459796, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2208, - "time": 0.4599898609457311, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2208, - "time": 0.4599898609457311, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2280, - "time": 0.4749873012161515, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2304, - "time": 0.4799894201172846, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2304, - "time": 0.4799894201172846, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2376, - "time": 0.49498686038770506, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2400, - "time": 0.4999889792888382, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2400, - "time": 0.4999889792888382, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2424, - "time": 0.5049821817569924, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2448, - "time": 0.5099843006581255, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2460, - "time": 0.5124809018922026, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2472, - "time": 0.5149864195592585, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2496, - "time": 0.5199885384603916, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2496, - "time": 0.5199885384603916, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2520, - "time": 0.5249817409285459, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2544, - "time": 0.529983859829679, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2556, - "time": 0.5324804610637561, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2568, - "time": 0.5349859787308121, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2592, - "time": 0.5399880976319452, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2592, - "time": 0.5399880976319452, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2616, - "time": 0.5449813001000995, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2640, - "time": 0.5499834190012325, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2652, - "time": 0.5524800202353096, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2676, - "time": 0.5574821391364427, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2700, - "time": 0.5624842580375758, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2724, - "time": 0.567486376938709, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2748, - "time": 0.5724795794068631, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2784, - "time": 0.5799872159750522, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2808, - "time": 0.5849804184432065, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2832, - "time": 0.5899825373443396, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2880, - "time": 0.5999867751466058, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2904, - "time": 0.60497997761476, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 2928, - "time": 0.6099820965158931, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3000, - "time": 0.6249795367863136, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3048, - "time": 0.6349837745885798, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3096, - "time": 0.6449790959578671, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3120, - "time": 0.6499812148590002, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3288, - "time": 0.6849782143009742, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3360, - "time": 0.6999756545713945, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3372, - "time": 0.7024811722384505, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3384, - "time": 0.7049777734725277, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3396, - "time": 0.7074832911395836, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3408, - "time": 0.7099798923736608, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3408, - "time": 0.7099798923736608, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3528, - "time": 0.7349815704463474, - "position": { - "x": 8, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3576, - "time": 0.7449768918156346, - "position": { - "x": 2, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3600, - "time": 0.7499790107167678, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3648, - "time": 0.7599743320860551, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3672, - "time": 0.7649764509871881, - "position": { - "x": 3, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3696, - "time": 0.7699785698883214, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3720, - "time": 0.7749806887894544, - "position": { - "x": 7, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3912, - "time": 0.8149798071325615, - "position": { - "x": 2, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3960, - "time": 0.8249751285018487, - "position": { - "x": 8, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 3984, - "time": 0.829977247402982, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 4032, - "time": 0.8399725687722692, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4056, - "time": 0.8449746876734023, + "time": 0.41999074260262403, "position": { "x": 7, "y": 0 @@ -2244,12 +924,12 @@ }, { "noteOrder": 4080, - "time": 0.8499768065745353, + "time": 0.42498394507077825, "position": { - "x": 4, + "x": 7, "y": 0 }, - "noteType": 8, + "noteType": 9, "position2D": { "x": 0, "y": 0 @@ -2263,8 +943,8 @@ "isPlayAudio": false }, { - "noteOrder": 4104, - "time": 0.8549789254756686, + "noteOrder": 4128, + "time": 0.42998606397191136, "position": { "x": 3, "y": 0 @@ -2283,8 +963,8 @@ "isPlayAudio": false }, { - "noteOrder": 4128, - "time": 0.8599721279438227, + "noteOrder": 4152, + "time": 0.43249158163896734, "position": { "x": 7, "y": 0 @@ -2304,9 +984,9 @@ }, { "noteOrder": 4176, - "time": 0.8699763657460888, + "time": 0.4349881828730444, "position": { - "x": 4, + "x": 3, "y": 0 }, "noteType": 8, @@ -2323,13 +1003,13 @@ "isPlayAudio": false }, { - "noteOrder": 4188, - "time": 0.872472966980166, + "noteOrder": 4224, + "time": 0.43999030177417753, "position": { - "x": 5, + "x": 3, "y": 0 }, - "noteType": 9, + "noteType": 8, "position2D": { "x": 0, "y": 0 @@ -2343,72 +1023,12 @@ "isPlayAudio": false }, { - "noteOrder": 4200, - "time": 0.874978484647222, + "noteOrder": 4224, + "time": 0.43999030177417753, "position": { "x": 7, "y": 0 }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4212, - "time": 0.8774750858812992, - "position": { - "x": 5, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4260, - "time": 0.8874704072505865, - "position": { - "x": 4, - "y": 0 - }, - "noteType": 8, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, - { - "noteOrder": 4260, - "time": 0.8874704072505865, - "position": { - "x": 6, - "y": 0 - }, "noteType": 9, "position2D": { "x": 0, @@ -2424,9 +1044,9 @@ }, { "noteOrder": 4272, - "time": 0.8899759249176424, + "time": 0.4449835042423318, "position": { - "x": 4, + "x": 3, "y": 0 }, "noteType": 8, @@ -2442,29 +1062,9 @@ "postionOffset": null, "isPlayAudio": false }, - { - "noteOrder": 4272, - "time": 0.8899759249176424, - "position": { - "x": 6, - "y": 0 - }, - "noteType": 9, - "position2D": { - "x": 0, - "y": 0 - }, - "size": { - "x": 1, - "y": 1, - "z": 1 - }, - "postionOffset": null, - "isPlayAudio": false - }, { "noteOrder": 4320, - "time": 0.8999712462869298, + "time": 0.4499856231434649, "position": { "x": 7, "y": 0 @@ -2484,7 +1084,7 @@ }, { "noteOrder": 4344, - "time": 0.9049733651880629, + "time": 0.45249114081052083, "position": { "x": 3, "y": 0 @@ -2504,6 +1104,1406 @@ }, { "noteOrder": 4368, + "time": 0.45498774204459796, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4416, + "time": 0.4599898609457311, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4416, + "time": 0.4599898609457311, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4560, + "time": 0.4749873012161515, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4608, + "time": 0.4799894201172846, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4608, + "time": 0.4799894201172846, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4752, + "time": 0.49498686038770506, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4800, + "time": 0.4999889792888382, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4800, + "time": 0.4999889792888382, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4848, + "time": 0.5049821817569924, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4896, + "time": 0.5099843006581255, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4920, + "time": 0.5124809018922026, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4944, + "time": 0.5149864195592585, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4992, + "time": 0.5199885384603916, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 4992, + "time": 0.5199885384603916, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5040, + "time": 0.5249817409285459, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5088, + "time": 0.529983859829679, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5112, + "time": 0.5324804610637561, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5136, + "time": 0.5349859787308121, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5184, + "time": 0.5399880976319452, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5184, + "time": 0.5399880976319452, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5232, + "time": 0.5449813001000995, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5280, + "time": 0.5499834190012325, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5304, + "time": 0.5524800202353096, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5352, + "time": 0.5574821391364427, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5400, + "time": 0.5624842580375758, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5448, + "time": 0.567486376938709, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5496, + "time": 0.5724795794068631, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5568, + "time": 0.5799872159750522, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5616, + "time": 0.5849804184432065, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5664, + "time": 0.5899825373443396, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5760, + "time": 0.5999867751466058, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5808, + "time": 0.60497997761476, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 5856, + "time": 0.6099820965158931, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6000, + "time": 0.6249795367863136, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6096, + "time": 0.6349837745885798, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6192, + "time": 0.6449790959578671, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6240, + "time": 0.6499812148590002, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6576, + "time": 0.6849782143009742, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6720, + "time": 0.6999756545713945, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6744, + "time": 0.7024811722384505, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6768, + "time": 0.7049777734725277, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6792, + "time": 0.7074832911395836, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6816, + "time": 0.7099798923736608, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 6816, + "time": 0.7099798923736608, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7056, + "time": 0.7349815704463474, + "position": { + "x": 8, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7152, + "time": 0.7449768918156346, + "position": { + "x": 2, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7200, + "time": 0.7499790107167678, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7296, + "time": 0.7599743320860551, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7344, + "time": 0.7649764509871881, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7392, + "time": 0.7699785698883214, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7440, + "time": 0.7749806887894544, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7824, + "time": 0.8149798071325615, + "position": { + "x": 2, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7920, + "time": 0.8249751285018487, + "position": { + "x": 8, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 7968, + "time": 0.829977247402982, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8064, + "time": 0.8399725687722692, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8112, + "time": 0.8449746876734023, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8160, + "time": 0.8499768065745353, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8208, + "time": 0.8549789254756686, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8256, + "time": 0.8599721279438227, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8352, + "time": 0.8699763657460888, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8376, + "time": 0.872472966980166, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8400, + "time": 0.874978484647222, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8424, + "time": 0.8774750858812992, + "position": { + "x": 5, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8520, + "time": 0.8874704072505865, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8520, + "time": 0.8874704072505865, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8544, + "time": 0.8899759249176424, + "position": { + "x": 4, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8544, + "time": 0.8899759249176424, + "position": { + "x": 6, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8640, + "time": 0.8999712462869298, + "position": { + "x": 7, + "y": 0 + }, + "noteType": 9, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8688, + "time": 0.9049733651880629, + "position": { + "x": 3, + "y": 0 + }, + "noteType": 8, + "position2D": { + "x": 0, + "y": 0 + }, + "size": { + "x": 1, + "y": 1, + "z": 1 + }, + "postionOffset": null, + "isPlayAudio": false + }, + { + "noteOrder": 8736, "time": 0.9099754840891959, "position": { "x": 7, @@ -2523,7 +2523,7 @@ "isPlayAudio": false }, { - "noteOrder": 4392, + "noteOrder": 8784, "time": 0.9149776029903292, "position": { "x": 3, @@ -2547,7 +2547,7 @@ { "lineGroupId": 3, "indexInLine": 1, - "noteOrder": 144, + "noteOrder": 288, "time": 0.029994880540840863, "position": { "x": 7, @@ -2570,7 +2570,7 @@ { "lineGroupId": 3, "indexInLine": 2, - "noteOrder": 156, + "noteOrder": 312, "time": 0.03250039820789683, "position": { "x": 7, @@ -2593,7 +2593,7 @@ { "lineGroupId": 3, "indexInLine": 3, - "noteOrder": 156, + "noteOrder": 312, "time": 0.03250039820789683, "position": { "x": 5, @@ -2616,7 +2616,7 @@ { "lineGroupId": 3, "indexInLine": 4, - "noteOrder": 162.0, + "noteOrder": 318.0, "time": 0.03250039820789683, "position": { "x": 5, @@ -2639,7 +2639,7 @@ { "lineGroupId": 11, "indexInLine": 1, - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999867751466058, "position": { "x": 6, @@ -2662,7 +2662,7 @@ { "lineGroupId": 11, "indexInLine": 2, - "noteOrder": 300, + "noteOrder": 600, "time": 0.062495278748737705, "position": { "x": 6, @@ -2685,7 +2685,7 @@ { "lineGroupId": 11, "indexInLine": 3, - "noteOrder": 300, + "noteOrder": 600, "time": 0.062495278748737705, "position": { "x": 4, @@ -2708,7 +2708,7 @@ { "lineGroupId": 11, "indexInLine": 4, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 4, @@ -2731,7 +2731,7 @@ { "lineGroupId": 12, "indexInLine": 1, - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 6, @@ -2754,7 +2754,7 @@ { "lineGroupId": 12, "indexInLine": 2, - "noteOrder": 324, + "noteOrder": 648, "time": 0.0674973976498708, "position": { "x": 6, @@ -2777,7 +2777,7 @@ { "lineGroupId": 12, "indexInLine": 3, - "noteOrder": 324, + "noteOrder": 648, "time": 0.0674973976498708, "position": { "x": 4, @@ -2800,7 +2800,7 @@ { "lineGroupId": 12, "indexInLine": 4, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 4, @@ -2823,7 +2823,7 @@ { "lineGroupId": 13, "indexInLine": 1, - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 6, @@ -2846,7 +2846,7 @@ { "lineGroupId": 13, "indexInLine": 2, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249951655100388, "position": { "x": 6, @@ -2869,7 +2869,7 @@ { "lineGroupId": 13, "indexInLine": 3, - "noteOrder": 348, + "noteOrder": 696, "time": 0.07249951655100388, "position": { "x": 4, @@ -2892,7 +2892,7 @@ { "lineGroupId": 13, "indexInLine": 4, - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 4, @@ -2915,7 +2915,7 @@ { "lineGroupId": 14, "indexInLine": 1, - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 6, @@ -2938,7 +2938,7 @@ { "lineGroupId": 14, "indexInLine": 2, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07750163545213698, "position": { "x": 6, @@ -2961,7 +2961,7 @@ { "lineGroupId": 14, "indexInLine": 3, - "noteOrder": 372, + "noteOrder": 744, "time": 0.07750163545213698, "position": { "x": 4, @@ -2984,7 +2984,7 @@ { "lineGroupId": 14, "indexInLine": 4, - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 4, @@ -3007,7 +3007,7 @@ { "lineGroupId": 15, "indexInLine": 1, - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 6, @@ -3030,7 +3030,7 @@ { "lineGroupId": 15, "indexInLine": 2, - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 6, @@ -3053,7 +3053,7 @@ { "lineGroupId": 20, "indexInLine": 1, - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999779585776762, "position": { "x": 4, @@ -3076,7 +3076,7 @@ { "lineGroupId": 20, "indexInLine": 2, - "noteOrder": 492, + "noteOrder": 984, "time": 0.10249439709184474, "position": { "x": 4, @@ -3099,7 +3099,7 @@ { "lineGroupId": 20, "indexInLine": 3, - "noteOrder": 492, + "noteOrder": 984, "time": 0.10249439709184474, "position": { "x": 6, @@ -3122,7 +3122,7 @@ { "lineGroupId": 20, "indexInLine": 4, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 6, @@ -3145,7 +3145,7 @@ { "lineGroupId": 20, "indexInLine": 5, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 8, @@ -3168,7 +3168,7 @@ { "lineGroupId": 20, "indexInLine": 6, - "noteOrder": 510.0, + "noteOrder": 1014.0, "time": 0.10499991475890072, "position": { "x": 8, @@ -3191,7 +3191,7 @@ { "lineGroupId": 21, "indexInLine": 1, - "noteOrder": 504, + "noteOrder": 1008, "time": 0.10499991475890072, "position": { "x": 4, @@ -3214,7 +3214,7 @@ { "lineGroupId": 21, "indexInLine": 2, - "noteOrder": 516, + "noteOrder": 1032, "time": 0.10749651599297784, "position": { "x": 4, @@ -3237,7 +3237,7 @@ { "lineGroupId": 21, "indexInLine": 3, - "noteOrder": 516, + "noteOrder": 1032, "time": 0.10749651599297784, "position": { "x": 6, @@ -3260,7 +3260,7 @@ { "lineGroupId": 21, "indexInLine": 4, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 6, @@ -3283,7 +3283,7 @@ { "lineGroupId": 21, "indexInLine": 5, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 8, @@ -3306,7 +3306,7 @@ { "lineGroupId": 21, "indexInLine": 6, - "noteOrder": 534.0, + "noteOrder": 1062.0, "time": 0.10999311722705497, "position": { "x": 8, @@ -3329,7 +3329,7 @@ { "lineGroupId": 22, "indexInLine": 1, - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 4, @@ -3352,7 +3352,7 @@ { "lineGroupId": 22, "indexInLine": 2, - "noteOrder": 540, + "noteOrder": 1080, "time": 0.11249863489411094, "position": { "x": 4, @@ -3375,7 +3375,7 @@ { "lineGroupId": 22, "indexInLine": 3, - "noteOrder": 540, + "noteOrder": 1080, "time": 0.11249863489411094, "position": { "x": 6, @@ -3398,7 +3398,7 @@ { "lineGroupId": 22, "indexInLine": 4, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 6, @@ -3421,7 +3421,7 @@ { "lineGroupId": 22, "indexInLine": 5, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 8, @@ -3444,7 +3444,7 @@ { "lineGroupId": 22, "indexInLine": 6, - "noteOrder": 558.0, + "noteOrder": 1110.0, "time": 0.11499523612818806, "position": { "x": 8, @@ -3467,7 +3467,7 @@ { "lineGroupId": 23, "indexInLine": 1, - "noteOrder": 552, + "noteOrder": 1104, "time": 0.11499523612818806, "position": { "x": 4, @@ -3490,7 +3490,7 @@ { "lineGroupId": 23, "indexInLine": 2, - "noteOrder": 564, + "noteOrder": 1128, "time": 0.11750075379524404, "position": { "x": 4, @@ -3513,7 +3513,7 @@ { "lineGroupId": 23, "indexInLine": 3, - "noteOrder": 564, + "noteOrder": 1128, "time": 0.11750075379524404, "position": { "x": 6, @@ -3536,7 +3536,7 @@ { "lineGroupId": 23, "indexInLine": 4, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 6, @@ -3559,7 +3559,7 @@ { "lineGroupId": 23, "indexInLine": 5, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 8, @@ -3582,7 +3582,7 @@ { "lineGroupId": 23, "indexInLine": 6, - "noteOrder": 582.0, + "noteOrder": 1158.0, "time": 0.11999735502932116, "position": { "x": 8, @@ -3605,7 +3605,7 @@ { "lineGroupId": 24, "indexInLine": 1, - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 4, @@ -3628,7 +3628,7 @@ { "lineGroupId": 24, "indexInLine": 2, - "noteOrder": 624, + "noteOrder": 1248, "time": 0.1299926763986085, "position": { "x": 4, @@ -3651,7 +3651,7 @@ { "lineGroupId": 29, "indexInLine": 1, - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999691420087468, "position": { "x": 6, @@ -3674,7 +3674,7 @@ { "lineGroupId": 29, "indexInLine": 2, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 6, @@ -3697,7 +3697,7 @@ { "lineGroupId": 31, "indexInLine": 1, - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 4, @@ -3720,7 +3720,7 @@ { "lineGroupId": 31, "indexInLine": 2, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 4, @@ -3743,7 +3743,7 @@ { "lineGroupId": 33, "indexInLine": 1, - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 7, @@ -3766,7 +3766,7 @@ { "lineGroupId": 33, "indexInLine": 2, - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 7, @@ -3789,7 +3789,7 @@ { "lineGroupId": 35, "indexInLine": 1, - "noteOrder": 816, + "noteOrder": 1632, "time": 0.16999179474171555, "position": { "x": 3, @@ -3812,7 +3812,7 @@ { "lineGroupId": 35, "indexInLine": 2, - "noteOrder": 840, + "noteOrder": 1680, "time": 0.17499391364284864, "position": { "x": 3, @@ -3835,7 +3835,7 @@ { "lineGroupId": 45, "indexInLine": 1, - "noteOrder": 1032, + "noteOrder": 2064, "time": 0.21499303198595568, "position": { "x": 3, @@ -3858,7 +3858,7 @@ { "lineGroupId": 45, "indexInLine": 2, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 3, @@ -3881,7 +3881,7 @@ { "lineGroupId": 47, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 6, @@ -3904,7 +3904,7 @@ { "lineGroupId": 47, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 6, @@ -3927,7 +3927,7 @@ { "lineGroupId": 47, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 4, @@ -3950,7 +3950,7 @@ { "lineGroupId": 47, "indexInLine": 4, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 4, @@ -3973,7 +3973,7 @@ { "lineGroupId": 48, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 6, @@ -3996,7 +3996,7 @@ { "lineGroupId": 48, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 6, @@ -4019,7 +4019,7 @@ { "lineGroupId": 48, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 4, @@ -4042,7 +4042,7 @@ { "lineGroupId": 48, "indexInLine": 4, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 4, @@ -4065,7 +4065,7 @@ { "lineGroupId": 49, "indexInLine": 1, - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 6, @@ -4088,7 +4088,7 @@ { "lineGroupId": 49, "indexInLine": 2, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 6, @@ -4111,7 +4111,7 @@ { "lineGroupId": 51, "indexInLine": 1, - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 4, @@ -4134,7 +4134,7 @@ { "lineGroupId": 51, "indexInLine": 2, - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 4, @@ -4157,7 +4157,7 @@ { "lineGroupId": 59, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999382840174936, "position": { "x": 3, @@ -4180,7 +4180,7 @@ { "lineGroupId": 59, "indexInLine": 2, - "noteOrder": 1356, + "noteOrder": 2712, "time": 0.2824904296358265, "position": { "x": 3, @@ -4203,7 +4203,7 @@ { "lineGroupId": 59, "indexInLine": 3, - "noteOrder": 1356, + "noteOrder": 2712, "time": 0.2824904296358265, "position": { "x": 6, @@ -4226,7 +4226,7 @@ { "lineGroupId": 59, "indexInLine": 4, - "noteOrder": 1362.0, + "noteOrder": 2718.0, "time": 0.2824904296358265, "position": { "x": 6, @@ -4249,7 +4249,7 @@ { "lineGroupId": 60, "indexInLine": 1, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 7, @@ -4272,7 +4272,7 @@ { "lineGroupId": 60, "indexInLine": 2, - "noteOrder": 1380, + "noteOrder": 2760, "time": 0.2874925485369596, "position": { "x": 7, @@ -4295,7 +4295,7 @@ { "lineGroupId": 60, "indexInLine": 3, - "noteOrder": 1380, + "noteOrder": 2760, "time": 0.2874925485369596, "position": { "x": 4, @@ -4318,7 +4318,7 @@ { "lineGroupId": 60, "indexInLine": 4, - "noteOrder": 1386.0, + "noteOrder": 2766.0, "time": 0.2874925485369596, "position": { "x": 4, @@ -4341,7 +4341,7 @@ { "lineGroupId": 61, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28998914977103674, "position": { "x": 3, @@ -4364,7 +4364,7 @@ { "lineGroupId": 61, "indexInLine": 2, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.29249466743809266, "position": { "x": 3, @@ -4387,7 +4387,7 @@ { "lineGroupId": 61, "indexInLine": 3, - "noteOrder": 1404, + "noteOrder": 2808, "time": 0.29249466743809266, "position": { "x": 6, @@ -4410,7 +4410,7 @@ { "lineGroupId": 61, "indexInLine": 4, - "noteOrder": 1410.0, + "noteOrder": 2814.0, "time": 0.29249466743809266, "position": { "x": 6, @@ -4433,7 +4433,7 @@ { "lineGroupId": 62, "indexInLine": 1, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 7, @@ -4456,7 +4456,7 @@ { "lineGroupId": 62, "indexInLine": 2, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 7, @@ -4479,7 +4479,7 @@ { "lineGroupId": 64, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 4, @@ -4502,7 +4502,7 @@ { "lineGroupId": 64, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 4, @@ -4525,7 +4525,7 @@ { "lineGroupId": 64, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 6, @@ -4548,7 +4548,7 @@ { "lineGroupId": 64, "indexInLine": 4, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 6, @@ -4571,7 +4571,7 @@ { "lineGroupId": 64, "indexInLine": 5, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 8, @@ -4594,7 +4594,7 @@ { "lineGroupId": 64, "indexInLine": 6, - "noteOrder": 1470.0, + "noteOrder": 2934.0, "time": 0.304995506474436, "position": { "x": 8, @@ -4617,7 +4617,7 @@ { "lineGroupId": 65, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 4, @@ -4640,7 +4640,7 @@ { "lineGroupId": 65, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 4, @@ -4663,7 +4663,7 @@ { "lineGroupId": 65, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 6, @@ -4686,7 +4686,7 @@ { "lineGroupId": 65, "indexInLine": 4, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 6, @@ -4709,7 +4709,7 @@ { "lineGroupId": 65, "indexInLine": 5, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 8, @@ -4732,7 +4732,7 @@ { "lineGroupId": 65, "indexInLine": 6, - "noteOrder": 1494.0, + "noteOrder": 2982.0, "time": 0.30998870894259023, "position": { "x": 8, @@ -4755,7 +4755,7 @@ { "lineGroupId": 66, "indexInLine": 1, - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 4, @@ -4778,7 +4778,7 @@ { "lineGroupId": 66, "indexInLine": 2, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 4, @@ -4801,7 +4801,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 6, @@ -4824,7 +4824,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1584, + "noteOrder": 3168, "time": 0.3299882681141437, "position": { "x": 6, @@ -4847,7 +4847,7 @@ { "lineGroupId": 83, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.37999162425951694, "position": { "x": 3, @@ -4870,7 +4870,7 @@ { "lineGroupId": 83, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 3, @@ -4893,7 +4893,7 @@ { "lineGroupId": 83, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 5, @@ -4916,7 +4916,7 @@ { "lineGroupId": 83, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 5, @@ -4939,7 +4939,7 @@ { "lineGroupId": 83, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 3, @@ -4962,7 +4962,7 @@ { "lineGroupId": 83, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849848267276712, "position": { "x": 3, @@ -4985,7 +4985,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 1824, + "noteOrder": 3648, "time": 0.37999162425951694, "position": { "x": 7, @@ -5008,7 +5008,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 7, @@ -5031,7 +5031,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 1836, + "noteOrder": 3672, "time": 0.38248822549359407, "position": { "x": 5, @@ -5054,7 +5054,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 5, @@ -5077,7 +5077,7 @@ { "lineGroupId": 84, "indexInLine": 5, - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 7, @@ -5100,7 +5100,7 @@ { "lineGroupId": 84, "indexInLine": 6, - "noteOrder": 1854.0, + "noteOrder": 3702.0, "time": 0.3849848267276712, "position": { "x": 7, @@ -5123,7 +5123,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498306341388534, "position": { "x": 7, @@ -5146,7 +5146,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 7, @@ -5169,7 +5169,7 @@ { "lineGroupId": 114, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 5, @@ -5192,7 +5192,7 @@ { "lineGroupId": 114, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.46748858108094127, "position": { "x": 5, @@ -5215,7 +5215,7 @@ { "lineGroupId": 115, "indexInLine": 1, - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699851823150184, "position": { "x": 3, @@ -5238,7 +5238,7 @@ { "lineGroupId": 115, "indexInLine": 2, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.47248178354909554, "position": { "x": 3, @@ -5261,7 +5261,7 @@ { "lineGroupId": 115, "indexInLine": 3, - "noteOrder": 2268, + "noteOrder": 4536, "time": 0.47248178354909554, "position": { "x": 5, @@ -5284,7 +5284,7 @@ { "lineGroupId": 115, "indexInLine": 4, - "noteOrder": 2274.0, + "noteOrder": 4542.0, "time": 0.47248178354909554, "position": { "x": 5, @@ -5307,7 +5307,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.4849826225854389, "position": { "x": 7, @@ -5330,7 +5330,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 7, @@ -5353,7 +5353,7 @@ { "lineGroupId": 120, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 5, @@ -5376,7 +5376,7 @@ { "lineGroupId": 120, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.4874881402524948, "position": { "x": 5, @@ -5399,7 +5399,7 @@ { "lineGroupId": 121, "indexInLine": 1, - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.48998474148657195, "position": { "x": 3, @@ -5422,7 +5422,7 @@ { "lineGroupId": 121, "indexInLine": 2, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.49248134272064903, "position": { "x": 3, @@ -5445,7 +5445,7 @@ { "lineGroupId": 121, "indexInLine": 3, - "noteOrder": 2364, + "noteOrder": 4728, "time": 0.49248134272064903, "position": { "x": 5, @@ -5468,7 +5468,7 @@ { "lineGroupId": 121, "indexInLine": 4, - "noteOrder": 2370.0, + "noteOrder": 4734.0, "time": 0.49248134272064903, "position": { "x": 5, @@ -5491,7 +5491,7 @@ { "lineGroupId": 154, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799872159750522, "position": { "x": 7, @@ -5514,7 +5514,7 @@ { "lineGroupId": 154, "indexInLine": 2, - "noteOrder": 2796, + "noteOrder": 5592, "time": 0.5824838172091293, "position": { "x": 7, @@ -5537,7 +5537,7 @@ { "lineGroupId": 154, "indexInLine": 3, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 5, @@ -5560,7 +5560,7 @@ { "lineGroupId": 157, "indexInLine": 1, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 3, @@ -5583,7 +5583,7 @@ { "lineGroupId": 157, "indexInLine": 2, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999867751466058, "position": { "x": 3, @@ -5606,7 +5606,7 @@ { "lineGroupId": 157, "indexInLine": 3, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 5, @@ -5629,7 +5629,7 @@ { "lineGroupId": 162, "indexInLine": 1, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 7, @@ -5652,7 +5652,7 @@ { "lineGroupId": 162, "indexInLine": 2, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 7, @@ -5675,7 +5675,7 @@ { "lineGroupId": 164, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 3, @@ -5698,7 +5698,7 @@ { "lineGroupId": 164, "indexInLine": 2, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 3, @@ -5721,7 +5721,7 @@ { "lineGroupId": 166, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 7, @@ -5744,7 +5744,7 @@ { "lineGroupId": 166, "indexInLine": 2, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 7, @@ -5767,7 +5767,7 @@ { "lineGroupId": 168, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 3, @@ -5790,7 +5790,7 @@ { "lineGroupId": 168, "indexInLine": 2, - "noteOrder": 3120, + "noteOrder": 6240, "time": 0.6499812148590002, "position": { "x": 3, @@ -5813,7 +5813,7 @@ { "lineGroupId": 173, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599765362282874, "position": { "x": 7, @@ -5836,7 +5836,7 @@ { "lineGroupId": 173, "indexInLine": 2, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 7, @@ -5859,7 +5859,7 @@ { "lineGroupId": 174, "indexInLine": 1, - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 5, @@ -5882,7 +5882,7 @@ { "lineGroupId": 174, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 5, @@ -5905,7 +5905,7 @@ { "lineGroupId": 175, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 3, @@ -5928,7 +5928,7 @@ { "lineGroupId": 175, "indexInLine": 2, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 3, @@ -5951,7 +5951,7 @@ { "lineGroupId": 176, "indexInLine": 1, - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 5, @@ -5974,7 +5974,7 @@ { "lineGroupId": 176, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 5, @@ -5997,7 +5997,7 @@ { "lineGroupId": 177, "indexInLine": 1, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 7, @@ -6020,7 +6020,7 @@ { "lineGroupId": 177, "indexInLine": 2, - "noteOrder": 3288, + "noteOrder": 6576, "time": 0.6849782143009742, "position": { "x": 7, @@ -6043,7 +6043,7 @@ { "lineGroupId": 188, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.719975213742948, "position": { "x": 6, @@ -6066,7 +6066,7 @@ { "lineGroupId": 188, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 6, @@ -6089,7 +6089,7 @@ { "lineGroupId": 188, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 4, @@ -6112,7 +6112,7 @@ { "lineGroupId": 188, "indexInLine": 4, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 4, @@ -6135,7 +6135,7 @@ { "lineGroupId": 189, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 6, @@ -6158,7 +6158,7 @@ { "lineGroupId": 189, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 6, @@ -6181,7 +6181,7 @@ { "lineGroupId": 189, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 4, @@ -6204,7 +6204,7 @@ { "lineGroupId": 189, "indexInLine": 4, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 4, @@ -6227,7 +6227,7 @@ { "lineGroupId": 190, "indexInLine": 1, - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 6, @@ -6250,7 +6250,7 @@ { "lineGroupId": 190, "indexInLine": 2, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 6, @@ -6273,7 +6273,7 @@ { "lineGroupId": 192, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 4, @@ -6296,7 +6296,7 @@ { "lineGroupId": 192, "indexInLine": 2, - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499790107167678, "position": { "x": 4, @@ -6319,7 +6319,7 @@ { "lineGroupId": 200, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799738912576086, "position": { "x": 3, @@ -6342,7 +6342,7 @@ { "lineGroupId": 200, "indexInLine": 2, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824794089246646, "position": { "x": 3, @@ -6365,7 +6365,7 @@ { "lineGroupId": 200, "indexInLine": 3, - "noteOrder": 3756, + "noteOrder": 7512, "time": 0.7824794089246646, "position": { "x": 6, @@ -6388,7 +6388,7 @@ { "lineGroupId": 200, "indexInLine": 4, - "noteOrder": 3762.0, + "noteOrder": 7518.0, "time": 0.7824794089246646, "position": { "x": 6, @@ -6411,7 +6411,7 @@ { "lineGroupId": 201, "indexInLine": 1, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 7, @@ -6434,7 +6434,7 @@ { "lineGroupId": 201, "indexInLine": 2, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.7874726113928188, "position": { "x": 7, @@ -6457,7 +6457,7 @@ { "lineGroupId": 201, "indexInLine": 3, - "noteOrder": 3780, + "noteOrder": 7560, "time": 0.7874726113928188, "position": { "x": 4, @@ -6480,7 +6480,7 @@ { "lineGroupId": 201, "indexInLine": 4, - "noteOrder": 3786.0, + "noteOrder": 7566.0, "time": 0.7874726113928188, "position": { "x": 4, @@ -6503,7 +6503,7 @@ { "lineGroupId": 202, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899781290598749, "position": { "x": 3, @@ -6526,7 +6526,7 @@ { "lineGroupId": 202, "indexInLine": 2, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.792474730293952, "position": { "x": 3, @@ -6549,7 +6549,7 @@ { "lineGroupId": 202, "indexInLine": 3, - "noteOrder": 3804, + "noteOrder": 7608, "time": 0.792474730293952, "position": { "x": 6, @@ -6572,7 +6572,7 @@ { "lineGroupId": 202, "indexInLine": 4, - "noteOrder": 3810.0, + "noteOrder": 7614.0, "time": 0.792474730293952, "position": { "x": 6, @@ -6595,7 +6595,7 @@ { "lineGroupId": 203, "indexInLine": 1, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 7, @@ -6618,7 +6618,7 @@ { "lineGroupId": 203, "indexInLine": 2, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 7, @@ -6641,7 +6641,7 @@ { "lineGroupId": 205, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 4, @@ -6664,7 +6664,7 @@ { "lineGroupId": 205, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 4, @@ -6687,7 +6687,7 @@ { "lineGroupId": 205, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 6, @@ -6710,7 +6710,7 @@ { "lineGroupId": 205, "indexInLine": 4, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 6, @@ -6733,7 +6733,7 @@ { "lineGroupId": 205, "indexInLine": 5, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 8, @@ -6756,7 +6756,7 @@ { "lineGroupId": 205, "indexInLine": 6, - "noteOrder": 3870.0, + "noteOrder": 7734.0, "time": 0.8049755693302952, "position": { "x": 8, @@ -6779,7 +6779,7 @@ { "lineGroupId": 206, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 4, @@ -6802,7 +6802,7 @@ { "lineGroupId": 206, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 4, @@ -6825,7 +6825,7 @@ { "lineGroupId": 206, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 6, @@ -6848,7 +6848,7 @@ { "lineGroupId": 206, "indexInLine": 4, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 6, @@ -6871,7 +6871,7 @@ { "lineGroupId": 206, "indexInLine": 5, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 8, @@ -6894,7 +6894,7 @@ { "lineGroupId": 206, "indexInLine": 6, - "noteOrder": 3894.0, + "noteOrder": 7782.0, "time": 0.8099776882314283, "position": { "x": 8, @@ -6917,7 +6917,7 @@ { "lineGroupId": 207, "indexInLine": 1, - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 4, @@ -6940,7 +6940,7 @@ { "lineGroupId": 207, "indexInLine": 2, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 4, @@ -6963,7 +6963,7 @@ { "lineGroupId": 209, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 6, @@ -6986,7 +6986,7 @@ { "lineGroupId": 209, "indexInLine": 2, - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.829977247402982, "position": { "x": 6, @@ -7009,7 +7009,7 @@ { "lineGroupId": 224, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799716871153763, "position": { "x": 3, @@ -7032,7 +7032,7 @@ { "lineGroupId": 224, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 3, @@ -7055,7 +7055,7 @@ { "lineGroupId": 224, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 5, @@ -7078,7 +7078,7 @@ { "lineGroupId": 224, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 5, @@ -7101,7 +7101,7 @@ { "lineGroupId": 224, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 3, @@ -7124,7 +7124,7 @@ { "lineGroupId": 224, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.8849738060165093, "position": { "x": 3, @@ -7147,7 +7147,7 @@ { "lineGroupId": 225, "indexInLine": 1, - "noteOrder": 4224, + "noteOrder": 8448, "time": 0.8799716871153763, "position": { "x": 7, @@ -7170,7 +7170,7 @@ { "lineGroupId": 225, "indexInLine": 2, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 7, @@ -7193,7 +7193,7 @@ { "lineGroupId": 225, "indexInLine": 3, - "noteOrder": 4236, + "noteOrder": 8472, "time": 0.8824772047824322, "position": { "x": 5, @@ -7216,7 +7216,7 @@ { "lineGroupId": 225, "indexInLine": 4, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 5, @@ -7239,7 +7239,7 @@ { "lineGroupId": 225, "indexInLine": 5, - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 7, @@ -7262,7 +7262,7 @@ { "lineGroupId": 225, "indexInLine": 6, - "noteOrder": 4254.0, + "noteOrder": 8502.0, "time": 0.8849738060165093, "position": { "x": 7, @@ -7285,7 +7285,7 @@ { "lineGroupId": 239, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199708054584834, "position": { "x": 3, @@ -7308,7 +7308,7 @@ { "lineGroupId": 239, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 3, @@ -7331,7 +7331,7 @@ { "lineGroupId": 239, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 5, @@ -7354,7 +7354,7 @@ { "lineGroupId": 239, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 5, @@ -7377,7 +7377,7 @@ { "lineGroupId": 239, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 3, @@ -7400,7 +7400,7 @@ { "lineGroupId": 239, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 8886.0, "time": 0.9249729243596164, "position": { "x": 3, @@ -7423,7 +7423,7 @@ { "lineGroupId": 240, "indexInLine": 1, - "noteOrder": 4416, + "noteOrder": 8832, "time": 0.9199708054584834, "position": { "x": 7, @@ -7446,7 +7446,7 @@ { "lineGroupId": 240, "indexInLine": 2, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 7, @@ -7469,7 +7469,7 @@ { "lineGroupId": 240, "indexInLine": 3, - "noteOrder": 4428, + "noteOrder": 8856, "time": 0.9224763231255393, "position": { "x": 5, @@ -7492,7 +7492,7 @@ { "lineGroupId": 240, "indexInLine": 4, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 5, @@ -7515,7 +7515,7 @@ { "lineGroupId": 240, "indexInLine": 5, - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 7, @@ -7538,7 +7538,7 @@ { "lineGroupId": 240, "indexInLine": 6, - "noteOrder": 4446.0, + "noteOrder": 8886.0, "time": 0.9249729243596164, "position": { "x": 7, @@ -7573,7 +7573,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "3.6", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b.json index f3c78557..f786629b 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) difficulty_1b", "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 288, "time": 0.029994880540840863, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 336, "time": 0.03499699944197396, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999867751466058, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08500035558734718, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499567695663454, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999779585776762, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499947393045424, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999691420087468, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499903310200776, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499435447129511, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.16999179474171555, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999603254398175, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 1776, "time": 0.18499815144511483, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999135391326907, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1872, "time": 0.19499347281440216, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999559171553524, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499771061666835, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999091308482257, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.25499215032906275, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.2599942692301958, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.2649963881313289, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699895905994832, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.27499170950061624, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.33999250591640995, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.3449857083845642, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.3499878272856973, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549899461868304, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.3999911834310705, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.40498438589922475, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998650480035786, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998606397191136, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.4499856231434649, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699851823150184, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.48998474148657195, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.4999889792888382, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049821817569924, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099843006581255, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199885384603916, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.5249817409285459, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.529983859829679, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399880976319452, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449813001000995, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499834190012325, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849804184432065, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.60497997761476, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249795367863136, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349837745885798, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449790959578671, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 6624, "time": 0.6899803332021072, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949824521032403, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.6999756545713945, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.6999756545713945, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499790107167678, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649764509871881, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749806887894544, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.829977247402982, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.8449746876734023, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.8549789254756686, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.8649742468449558, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.874978484647222, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899759249176424, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999712462869298, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049733651880629, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099754840891959, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299750432607495, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349771621618825, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349771621618825, "position": { "x": 6, @@ -1907,7 +1907,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 4, @@ -1930,7 +1930,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 4, @@ -1953,7 +1953,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 6, @@ -1976,7 +1976,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1074.0, + "noteOrder": 2142.0, "time": 0.2224917521211659, "position": { "x": 6, @@ -1999,7 +1999,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 4, @@ -2022,7 +2022,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 4, @@ -2045,7 +2045,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 6, @@ -2068,7 +2068,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1098.0, + "noteOrder": 2190.0, "time": 0.22749387102229898, "position": { "x": 6, @@ -2091,7 +2091,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999382840174936, "position": { "x": 4, @@ -2114,7 +2114,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 4, @@ -2137,7 +2137,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 6, @@ -2160,7 +2160,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1374.0, + "noteOrder": 2742.0, "time": 0.28499594730288247, "position": { "x": 6, @@ -2183,7 +2183,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28998914977103674, "position": { "x": 6, @@ -2206,7 +2206,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 6, @@ -2229,7 +2229,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 4, @@ -2252,7 +2252,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1422.0, + "noteOrder": 2838.0, "time": 0.2949912686721698, "position": { "x": 4, @@ -2275,7 +2275,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 4, @@ -2298,7 +2298,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 4, @@ -2321,7 +2321,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 6, @@ -2344,7 +2344,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1458.0, + "noteOrder": 2910.0, "time": 0.30248998880738, "position": { "x": 6, @@ -2367,7 +2367,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 4, @@ -2390,7 +2390,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 4, @@ -2413,7 +2413,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 6, @@ -2436,7 +2436,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 1482.0, + "noteOrder": 2958.0, "time": 0.3074921077085131, "position": { "x": 6, @@ -2459,7 +2459,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.3599920650879635, "position": { "x": 4, @@ -2482,7 +2482,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 4, @@ -2505,7 +2505,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 4, @@ -2528,7 +2528,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 2, @@ -2551,7 +2551,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 7, @@ -2574,7 +2574,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41999074260262403, "position": { "x": 6, @@ -2597,7 +2597,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.42248734383670117, "position": { "x": 6, @@ -2620,7 +2620,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.42248734383670117, "position": { "x": 4, @@ -2643,7 +2643,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 2034.0, + "noteOrder": 4062.0, "time": 0.42248734383670117, "position": { "x": 4, @@ -2666,7 +2666,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.42498394507077825, "position": { "x": 6, @@ -2689,7 +2689,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.4274894627378343, "position": { "x": 6, @@ -2712,7 +2712,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.4274894627378343, "position": { "x": 4, @@ -2735,7 +2735,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 2058.0, + "noteOrder": 4110.0, "time": 0.4274894627378343, "position": { "x": 4, @@ -2758,7 +2758,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43999030177417753, "position": { "x": 6, @@ -2781,7 +2781,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.44248690300825466, "position": { "x": 6, @@ -2804,7 +2804,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.44248690300825466, "position": { "x": 4, @@ -2827,7 +2827,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 4254.0, "time": 0.44248690300825466, "position": { "x": 4, @@ -2850,7 +2850,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.4449835042423318, "position": { "x": 6, @@ -2873,7 +2873,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.4474890219093878, "position": { "x": 6, @@ -2896,7 +2896,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.4474890219093878, "position": { "x": 4, @@ -2919,7 +2919,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 4302.0, "time": 0.4474890219093878, "position": { "x": 4, @@ -2942,7 +2942,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.4599898609457311, "position": { "x": 4, @@ -2965,7 +2965,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624864621798082, "position": { "x": 4, @@ -2988,7 +2988,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624864621798082, "position": { "x": 6, @@ -3011,7 +3011,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 2226.0, + "noteOrder": 4446.0, "time": 0.4624864621798082, "position": { "x": 6, @@ -3034,7 +3034,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498306341388534, "position": { "x": 4, @@ -3057,7 +3057,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 4, @@ -3080,7 +3080,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 6, @@ -3103,7 +3103,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.46748858108094127, "position": { "x": 6, @@ -3126,7 +3126,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799894201172846, "position": { "x": 4, @@ -3149,7 +3149,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.48248602135136176, "position": { "x": 4, @@ -3172,7 +3172,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.48248602135136176, "position": { "x": 6, @@ -3195,7 +3195,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 4638.0, "time": 0.48248602135136176, "position": { "x": 6, @@ -3218,7 +3218,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.4849826225854389, "position": { "x": 4, @@ -3241,7 +3241,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 4, @@ -3264,7 +3264,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 6, @@ -3287,7 +3287,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.4874881402524948, "position": { "x": 6, @@ -3310,7 +3310,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799872159750522, "position": { "x": 6, @@ -3333,7 +3333,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849804184432065, "position": { "x": 6, @@ -3356,7 +3356,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899825373443396, "position": { "x": 8, @@ -3379,7 +3379,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 8, @@ -3402,7 +3402,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999867751466058, "position": { "x": 4, @@ -3425,7 +3425,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.60497997761476, "position": { "x": 4, @@ -3448,7 +3448,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099820965158931, "position": { "x": 2, @@ -3471,7 +3471,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 2, @@ -3494,7 +3494,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 6, @@ -3517,7 +3517,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249795367863136, "position": { "x": 6, @@ -3540,7 +3540,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 8, @@ -3563,7 +3563,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349837745885798, "position": { "x": 8, @@ -3586,7 +3586,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 4, @@ -3609,7 +3609,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449790959578671, "position": { "x": 4, @@ -3632,7 +3632,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599765362282874, "position": { "x": 6, @@ -3655,7 +3655,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 6, @@ -3678,7 +3678,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 4, @@ -3701,7 +3701,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 4, @@ -3724,7 +3724,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.719975213742948, "position": { "x": 6, @@ -3747,7 +3747,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 6, @@ -3770,7 +3770,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 4, @@ -3793,7 +3793,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3474.0, + "noteOrder": 6942.0, "time": 0.7224807314100041, "position": { "x": 4, @@ -3816,7 +3816,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 6, @@ -3839,7 +3839,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 6, @@ -3862,7 +3862,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 4, @@ -3885,7 +3885,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 3498.0, + "noteOrder": 6990.0, "time": 0.7274828503111371, "position": { "x": 4, @@ -3908,7 +3908,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 6, @@ -3931,7 +3931,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 6, @@ -3954,7 +3954,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 4, @@ -3977,7 +3977,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3570.0, + "noteOrder": 7134.0, "time": 0.7424802905815575, "position": { "x": 4, @@ -4000,7 +4000,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449768918156346, "position": { "x": 6, @@ -4023,7 +4023,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.7474824094826906, "position": { "x": 6, @@ -4046,7 +4046,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.7474824094826906, "position": { "x": 4, @@ -4069,7 +4069,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 3594.0, + "noteOrder": 7182.0, "time": 0.7474824094826906, "position": { "x": 4, @@ -4092,7 +4092,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599743320860551, "position": { "x": 6, @@ -4115,7 +4115,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649764509871881, "position": { "x": 6, @@ -4138,7 +4138,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699785698883214, "position": { "x": 8, @@ -4161,7 +4161,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749806887894544, "position": { "x": 8, @@ -4184,7 +4184,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799738912576086, "position": { "x": 4, @@ -4207,7 +4207,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 4, @@ -4230,7 +4230,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899781290598749, "position": { "x": 6, @@ -4253,7 +4253,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 6, @@ -4276,7 +4276,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 4, @@ -4299,7 +4299,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 4, @@ -4322,7 +4322,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 6, @@ -4345,7 +4345,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3858.0, + "noteOrder": 7710.0, "time": 0.8024789680962181, "position": { "x": 6, @@ -4368,7 +4368,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 4, @@ -4391,7 +4391,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 4, @@ -4414,7 +4414,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 6, @@ -4437,7 +4437,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 3882.0, + "noteOrder": 7758.0, "time": 0.8074721705643724, "position": { "x": 6, @@ -4460,7 +4460,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 4, @@ -4483,7 +4483,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224785272677716, "position": { "x": 4, @@ -4506,7 +4506,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224785272677716, "position": { "x": 6, @@ -4529,7 +4529,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 3954.0, + "noteOrder": 7902.0, "time": 0.8224785272677716, "position": { "x": 6, @@ -4552,7 +4552,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249751285018487, "position": { "x": 4, @@ -4575,7 +4575,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274717297359259, "position": { "x": 4, @@ -4598,7 +4598,7 @@ { "lineGroupId": 156, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274717297359259, "position": { "x": 6, @@ -4621,7 +4621,7 @@ { "lineGroupId": 156, "indexInLine": 4, - "noteOrder": 3978.0, + "noteOrder": 7950.0, "time": 0.8274717297359259, "position": { "x": 6, @@ -4644,7 +4644,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399725687722692, "position": { "x": 6, @@ -4667,7 +4667,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.8449746876734023, "position": { "x": 6, @@ -4690,7 +4690,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499768065745353, "position": { "x": 8, @@ -4713,7 +4713,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.8549789254756686, "position": { "x": 8, @@ -4736,7 +4736,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599721279438227, "position": { "x": 4, @@ -4759,7 +4759,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.8649742468449558, "position": { "x": 4, @@ -4782,7 +4782,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699763657460888, "position": { "x": 4, @@ -4805,7 +4805,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.874978484647222, "position": { "x": 4, @@ -4828,7 +4828,7 @@ ], "roadBlockNodes": [ { - "noteOrder": 97.5, + "noteOrder": 193.5, "time": 0.019999559171553525, "position": { "x": 5, @@ -4856,7 +4856,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 121.5, + "noteOrder": 241.5, "time": 0.025001678072686617, "position": { "x": 5, @@ -4884,7 +4884,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 193.5, + "noteOrder": 385.5, "time": 0.03999911834310705, "position": { "x": 5, @@ -4912,7 +4912,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 217.5, + "noteOrder": 433.5, "time": 0.04500123724424014, "position": { "x": 5, @@ -4940,7 +4940,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 241.5, + "noteOrder": 481.5, "time": 0.04999443971239439, "position": { "x": 5, @@ -4968,7 +4968,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 276.0, + "noteOrder": 540.0, "time": 0.05499655861352749, "position": { "x": 5, @@ -4996,7 +4996,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 505.5, + "noteOrder": 1009.5, "time": 0.10499991475890072, "position": { "x": 5, @@ -5024,7 +5024,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 553.5, + "noteOrder": 1105.5, "time": 0.11499523612818806, "position": { "x": 5, @@ -5052,7 +5052,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 625.5, + "noteOrder": 1249.5, "time": 0.1299926763986085, "position": { "x": 5, @@ -5080,7 +5080,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 649.5, + "noteOrder": 1297.5, "time": 0.1349947952997416, "position": { "x": 5, @@ -5108,7 +5108,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 841.5, + "noteOrder": 1681.5, "time": 0.17499391364284864, "position": { "x": 5, @@ -5136,7 +5136,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1033.5, + "noteOrder": 2065.5, "time": 0.21499303198595568, "position": { "x": 5, @@ -5164,7 +5164,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1129.5, + "noteOrder": 2257.5, "time": 0.2349925911575092, "position": { "x": 5, @@ -5192,7 +5192,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1177.5, + "noteOrder": 2353.5, "time": 0.2449968289597754, "position": { "x": 5, @@ -5220,7 +5220,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1513.5, + "noteOrder": 3025.5, "time": 0.3149908278437233, "position": { "x": 5, @@ -5248,7 +5248,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1561.5, + "noteOrder": 3121.5, "time": 0.32498614921301067, "position": { "x": 5, @@ -5276,7 +5276,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1585.5, + "noteOrder": 3169.5, "time": 0.3299882681141437, "position": { "x": 5, @@ -5304,7 +5304,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1609.5, + "noteOrder": 3217.5, "time": 0.33499038701527684, "position": { "x": 5, @@ -5332,7 +5332,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1825.5, + "noteOrder": 3649.5, "time": 0.37999162425951694, "position": { "x": 5, @@ -5360,7 +5360,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 1897.5, + "noteOrder": 3793.5, "time": 0.39498906452993743, "position": { "x": 5, @@ -5388,7 +5388,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2089.5, + "noteOrder": 4177.5, "time": 0.4349881828730444, "position": { "x": 5, @@ -5416,7 +5416,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2185.5, + "noteOrder": 4369.5, "time": 0.45498774204459796, "position": { "x": 5, @@ -5444,7 +5444,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2281.5, + "noteOrder": 4561.5, "time": 0.4749873012161515, "position": { "x": 5, @@ -5472,7 +5472,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2377.5, + "noteOrder": 4753.5, "time": 0.49498686038770506, "position": { "x": 5, @@ -5500,7 +5500,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2473.5, + "noteOrder": 4945.5, "time": 0.5149864195592585, "position": { "x": 5, @@ -5528,7 +5528,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2569.5, + "noteOrder": 5137.5, "time": 0.5349859787308121, "position": { "x": 5, @@ -5556,7 +5556,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2665.5, + "noteOrder": 5329.5, "time": 0.5549855379023656, "position": { "x": 5, @@ -5584,7 +5584,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2689.5, + "noteOrder": 5377.5, "time": 0.5599876568034987, "position": { "x": 5, @@ -5612,7 +5612,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2713.5, + "noteOrder": 5425.5, "time": 0.564980859271653, "position": { "x": 5, @@ -5640,7 +5640,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2737.5, + "noteOrder": 5473.5, "time": 0.569982978172786, "position": { "x": 5, @@ -5668,7 +5668,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 2761.5, + "noteOrder": 5521.5, "time": 0.5749850970739192, "position": { "x": 5, @@ -5696,7 +5696,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3121.5, + "noteOrder": 6241.5, "time": 0.6499812148590002, "position": { "x": 5, @@ -5724,7 +5724,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3145.5, + "noteOrder": 6289.5, "time": 0.6549833337601332, "position": { "x": 5, @@ -5752,7 +5752,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3409.5, + "noteOrder": 6817.5, "time": 0.7099798923736608, "position": { "x": 5, @@ -5780,7 +5780,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3433.5, + "noteOrder": 6865.5, "time": 0.7149820112747938, "position": { "x": 5, @@ -5808,7 +5808,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3529.5, + "noteOrder": 7057.5, "time": 0.7349815704463474, "position": { "x": 5, @@ -5836,7 +5836,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3625.5, + "noteOrder": 7249.5, "time": 0.7549811296179009, "position": { "x": 5, @@ -5864,7 +5864,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 3913.5, + "noteOrder": 7825.5, "time": 0.8149798071325615, "position": { "x": 5, @@ -5892,7 +5892,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4009.5, + "noteOrder": 8017.5, "time": 0.834979366304115, "position": { "x": 5, @@ -5920,7 +5920,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4225.5, + "noteOrder": 8449.5, "time": 0.8799716871153763, "position": { "x": 5, @@ -5948,7 +5948,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4297.5, + "noteOrder": 8593.5, "time": 0.8949780438187755, "position": { "x": 5, @@ -5976,7 +5976,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4393.5, + "noteOrder": 8785.5, "time": 0.9149776029903292, "position": { "x": 5, @@ -6004,7 +6004,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4417.5, + "noteOrder": 8833.5, "time": 0.9199708054584834, "position": { "x": 5, @@ -6032,7 +6032,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4513.5, + "noteOrder": 9025.5, "time": 0.9399703646300368, "position": { "x": 5, @@ -6060,7 +6060,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4561.5, + "noteOrder": 9121.5, "time": 0.949974602432303, "position": { "x": 5, @@ -6088,7 +6088,7 @@ "duration": 0.000157683025 }, { - "noteOrder": 4609.5, + "noteOrder": 9217.5, "time": 0.9599699238015903, "position": { "x": 5, @@ -6129,7 +6129,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "2.39", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b_blockless.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b_blockless.json index c92b951d..07e2bf41 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b_blockless.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/difficulty_1b_blockless.json @@ -3,7 +3,7 @@ "name": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix) difficulty_1b (Blockless)", "sphereNodes": [ { - "noteOrder": 144, + "noteOrder": 288, "time": 0.029994880540840863, "position": { "x": 6, @@ -23,7 +23,7 @@ "isPlayAudio": false }, { - "noteOrder": 168, + "noteOrder": 336, "time": 0.03499699944197396, "position": { "x": 4, @@ -43,7 +43,7 @@ "isPlayAudio": false }, { - "noteOrder": 288, + "noteOrder": 576, "time": 0.05999867751466058, "position": { "x": 6, @@ -63,7 +63,7 @@ "isPlayAudio": false }, { - "noteOrder": 312, + "noteOrder": 624, "time": 0.06500079641579366, "position": { "x": 5, @@ -83,7 +83,7 @@ "isPlayAudio": false }, { - "noteOrder": 336, + "noteOrder": 672, "time": 0.06999399888394792, "position": { "x": 3, @@ -103,7 +103,7 @@ "isPlayAudio": false }, { - "noteOrder": 360, + "noteOrder": 720, "time": 0.074996117785081, "position": { "x": 5, @@ -123,7 +123,7 @@ "isPlayAudio": false }, { - "noteOrder": 384, + "noteOrder": 768, "time": 0.0799982366862141, "position": { "x": 7, @@ -143,7 +143,7 @@ "isPlayAudio": false }, { - "noteOrder": 408, + "noteOrder": 816, "time": 0.08500035558734718, "position": { "x": 5, @@ -163,7 +163,7 @@ "isPlayAudio": false }, { - "noteOrder": 432, + "noteOrder": 864, "time": 0.08999355805550144, "position": { "x": 3, @@ -183,7 +183,7 @@ "isPlayAudio": false }, { - "noteOrder": 456, + "noteOrder": 912, "time": 0.09499567695663454, "position": { "x": 5, @@ -203,7 +203,7 @@ "isPlayAudio": false }, { - "noteOrder": 480, + "noteOrder": 960, "time": 0.09999779585776762, "position": { "x": 7, @@ -223,7 +223,7 @@ "isPlayAudio": false }, { - "noteOrder": 528, + "noteOrder": 1056, "time": 0.10999311722705497, "position": { "x": 3, @@ -243,7 +243,7 @@ "isPlayAudio": false }, { - "noteOrder": 576, + "noteOrder": 1152, "time": 0.11999735502932116, "position": { "x": 6, @@ -263,7 +263,7 @@ "isPlayAudio": false }, { - "noteOrder": 600, + "noteOrder": 1200, "time": 0.12499947393045424, "position": { "x": 4, @@ -283,7 +283,7 @@ "isPlayAudio": false }, { - "noteOrder": 672, + "noteOrder": 1344, "time": 0.13999691420087468, "position": { "x": 6, @@ -303,7 +303,7 @@ "isPlayAudio": false }, { - "noteOrder": 696, + "noteOrder": 1392, "time": 0.14499903310200776, "position": { "x": 7, @@ -323,7 +323,7 @@ "isPlayAudio": false }, { - "noteOrder": 720, + "noteOrder": 1440, "time": 0.149992235570162, "position": { "x": 4, @@ -343,7 +343,7 @@ "isPlayAudio": false }, { - "noteOrder": 744, + "noteOrder": 1488, "time": 0.15499435447129511, "position": { "x": 3, @@ -363,7 +363,7 @@ "isPlayAudio": false }, { - "noteOrder": 768, + "noteOrder": 1536, "time": 0.1599964733724282, "position": { "x": 5, @@ -383,7 +383,7 @@ "isPlayAudio": false }, { - "noteOrder": 792, + "noteOrder": 1584, "time": 0.16499859227356128, "position": { "x": 6, @@ -403,7 +403,7 @@ "isPlayAudio": false }, { - "noteOrder": 816, + "noteOrder": 1632, "time": 0.16999179474171555, "position": { "x": 7, @@ -423,7 +423,7 @@ "isPlayAudio": false }, { - "noteOrder": 864, + "noteOrder": 1728, "time": 0.17999603254398175, "position": { "x": 6, @@ -443,7 +443,7 @@ "isPlayAudio": false }, { - "noteOrder": 888, + "noteOrder": 1776, "time": 0.18499815144511483, "position": { "x": 4, @@ -463,7 +463,7 @@ "isPlayAudio": false }, { - "noteOrder": 912, + "noteOrder": 1824, "time": 0.18999135391326907, "position": { "x": 3, @@ -483,7 +483,7 @@ "isPlayAudio": false }, { - "noteOrder": 936, + "noteOrder": 1872, "time": 0.19499347281440216, "position": { "x": 6, @@ -503,7 +503,7 @@ "isPlayAudio": false }, { - "noteOrder": 960, + "noteOrder": 1920, "time": 0.19999559171553524, "position": { "x": 7, @@ -523,7 +523,7 @@ "isPlayAudio": false }, { - "noteOrder": 984, + "noteOrder": 1968, "time": 0.20499771061666835, "position": { "x": 3, @@ -543,7 +543,7 @@ "isPlayAudio": false }, { - "noteOrder": 1008, + "noteOrder": 2016, "time": 0.20999091308482257, "position": { "x": 6, @@ -563,7 +563,7 @@ "isPlayAudio": false }, { - "noteOrder": 1104, + "noteOrder": 2208, "time": 0.22999047225637612, "position": { "x": 4, @@ -583,7 +583,7 @@ "isPlayAudio": false }, { - "noteOrder": 1152, + "noteOrder": 2304, "time": 0.2399947100586423, "position": { "x": 6, @@ -603,7 +603,7 @@ "isPlayAudio": false }, { - "noteOrder": 1200, + "noteOrder": 2400, "time": 0.24999003142792964, "position": { "x": 4, @@ -623,7 +623,7 @@ "isPlayAudio": false }, { - "noteOrder": 1224, + "noteOrder": 2448, "time": 0.25499215032906275, "position": { "x": 6, @@ -643,7 +643,7 @@ "isPlayAudio": false }, { - "noteOrder": 1248, + "noteOrder": 2496, "time": 0.2599942692301958, "position": { "x": 4, @@ -663,7 +663,7 @@ "isPlayAudio": false }, { - "noteOrder": 1272, + "noteOrder": 2544, "time": 0.2649963881313289, "position": { "x": 4, @@ -683,7 +683,7 @@ "isPlayAudio": false }, { - "noteOrder": 1296, + "noteOrder": 2592, "time": 0.2699895905994832, "position": { "x": 6, @@ -703,7 +703,7 @@ "isPlayAudio": false }, { - "noteOrder": 1320, + "noteOrder": 2640, "time": 0.27499170950061624, "position": { "x": 6, @@ -723,7 +723,7 @@ "isPlayAudio": false }, { - "noteOrder": 1488, + "noteOrder": 2976, "time": 0.30998870894259023, "position": { "x": 4, @@ -743,7 +743,7 @@ "isPlayAudio": false }, { - "noteOrder": 1536, + "noteOrder": 3072, "time": 0.3199929467448564, "position": { "x": 6, @@ -763,7 +763,7 @@ "isPlayAudio": false }, { - "noteOrder": 1632, + "noteOrder": 3264, "time": 0.33999250591640995, "position": { "x": 4, @@ -783,7 +783,7 @@ "isPlayAudio": false }, { - "noteOrder": 1656, + "noteOrder": 3312, "time": 0.3449857083845642, "position": { "x": 4, @@ -803,7 +803,7 @@ "isPlayAudio": false }, { - "noteOrder": 1680, + "noteOrder": 3360, "time": 0.3499878272856973, "position": { "x": 6, @@ -823,7 +823,7 @@ "isPlayAudio": false }, { - "noteOrder": 1704, + "noteOrder": 3408, "time": 0.3549899461868304, "position": { "x": 6, @@ -843,7 +843,7 @@ "isPlayAudio": false }, { - "noteOrder": 1848, + "noteOrder": 3696, "time": 0.3849848267276712, "position": { "x": 6, @@ -863,7 +863,7 @@ "isPlayAudio": false }, { - "noteOrder": 1872, + "noteOrder": 3744, "time": 0.3899869456288043, "position": { "x": 4, @@ -883,7 +883,7 @@ "isPlayAudio": false }, { - "noteOrder": 1920, + "noteOrder": 3840, "time": 0.3999911834310705, "position": { "x": 6, @@ -903,7 +903,7 @@ "isPlayAudio": false }, { - "noteOrder": 1944, + "noteOrder": 3888, "time": 0.40498438589922475, "position": { "x": 6, @@ -923,7 +923,7 @@ "isPlayAudio": false }, { - "noteOrder": 1968, + "noteOrder": 3936, "time": 0.40998650480035786, "position": { "x": 4, @@ -943,7 +943,7 @@ "isPlayAudio": false }, { - "noteOrder": 2064, + "noteOrder": 4128, "time": 0.42998606397191136, "position": { "x": 6, @@ -963,7 +963,7 @@ "isPlayAudio": false }, { - "noteOrder": 2160, + "noteOrder": 4320, "time": 0.4499856231434649, "position": { "x": 6, @@ -983,7 +983,7 @@ "isPlayAudio": false }, { - "noteOrder": 2256, + "noteOrder": 4512, "time": 0.4699851823150184, "position": { "x": 4, @@ -1003,7 +1003,7 @@ "isPlayAudio": false }, { - "noteOrder": 2352, + "noteOrder": 4704, "time": 0.48998474148657195, "position": { "x": 4, @@ -1023,7 +1023,7 @@ "isPlayAudio": false }, { - "noteOrder": 2400, + "noteOrder": 4800, "time": 0.4999889792888382, "position": { "x": 6, @@ -1043,7 +1043,7 @@ "isPlayAudio": false }, { - "noteOrder": 2424, + "noteOrder": 4848, "time": 0.5049821817569924, "position": { "x": 4, @@ -1063,7 +1063,7 @@ "isPlayAudio": false }, { - "noteOrder": 2448, + "noteOrder": 4896, "time": 0.5099843006581255, "position": { "x": 6, @@ -1083,7 +1083,7 @@ "isPlayAudio": false }, { - "noteOrder": 2496, + "noteOrder": 4992, "time": 0.5199885384603916, "position": { "x": 4, @@ -1103,7 +1103,7 @@ "isPlayAudio": false }, { - "noteOrder": 2520, + "noteOrder": 5040, "time": 0.5249817409285459, "position": { "x": 6, @@ -1123,7 +1123,7 @@ "isPlayAudio": false }, { - "noteOrder": 2544, + "noteOrder": 5088, "time": 0.529983859829679, "position": { "x": 4, @@ -1143,7 +1143,7 @@ "isPlayAudio": false }, { - "noteOrder": 2592, + "noteOrder": 5184, "time": 0.5399880976319452, "position": { "x": 6, @@ -1163,7 +1163,7 @@ "isPlayAudio": false }, { - "noteOrder": 2616, + "noteOrder": 5232, "time": 0.5449813001000995, "position": { "x": 4, @@ -1183,7 +1183,7 @@ "isPlayAudio": false }, { - "noteOrder": 2640, + "noteOrder": 5280, "time": 0.5499834190012325, "position": { "x": 6, @@ -1203,7 +1203,7 @@ "isPlayAudio": false }, { - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849804184432065, "position": { "x": 4, @@ -1223,7 +1223,7 @@ "isPlayAudio": false }, { - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 6, @@ -1243,7 +1243,7 @@ "isPlayAudio": false }, { - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.60497997761476, "position": { "x": 6, @@ -1263,7 +1263,7 @@ "isPlayAudio": false }, { - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 4, @@ -1283,7 +1283,7 @@ "isPlayAudio": false }, { - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249795367863136, "position": { "x": 4, @@ -1303,7 +1303,7 @@ "isPlayAudio": false }, { - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349837745885798, "position": { "x": 6, @@ -1323,7 +1323,7 @@ "isPlayAudio": false }, { - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449790959578671, "position": { "x": 6, @@ -1343,7 +1343,7 @@ "isPlayAudio": false }, { - "noteOrder": 3192, + "noteOrder": 6384, "time": 0.6649786551294206, "position": { "x": 4, @@ -1363,7 +1363,7 @@ "isPlayAudio": false }, { - "noteOrder": 3240, + "noteOrder": 6480, "time": 0.6749828929316867, "position": { "x": 5, @@ -1383,7 +1383,7 @@ "isPlayAudio": false }, { - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 6, @@ -1403,7 +1403,7 @@ "isPlayAudio": false }, { - "noteOrder": 3312, + "noteOrder": 6624, "time": 0.6899803332021072, "position": { "x": 6, @@ -1423,7 +1423,7 @@ "isPlayAudio": false }, { - "noteOrder": 3336, + "noteOrder": 6672, "time": 0.6949824521032403, "position": { "x": 4, @@ -1443,7 +1443,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.6999756545713945, "position": { "x": 3, @@ -1463,7 +1463,7 @@ "isPlayAudio": false }, { - "noteOrder": 3360, + "noteOrder": 6720, "time": 0.6999756545713945, "position": { "x": 7, @@ -1483,7 +1483,7 @@ "isPlayAudio": false }, { - "noteOrder": 3504, + "noteOrder": 7008, "time": 0.7299794515452143, "position": { "x": 6, @@ -1503,7 +1503,7 @@ "isPlayAudio": false }, { - "noteOrder": 3600, + "noteOrder": 7200, "time": 0.7499790107167678, "position": { "x": 6, @@ -1523,7 +1523,7 @@ "isPlayAudio": false }, { - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649764509871881, "position": { "x": 4, @@ -1543,7 +1543,7 @@ "isPlayAudio": false }, { - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749806887894544, "position": { "x": 6, @@ -1563,7 +1563,7 @@ "isPlayAudio": false }, { - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 6, @@ -1583,7 +1583,7 @@ "isPlayAudio": false }, { - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 4, @@ -1603,7 +1603,7 @@ "isPlayAudio": false }, { - "noteOrder": 3888, + "noteOrder": 7776, "time": 0.8099776882314283, "position": { "x": 4, @@ -1623,7 +1623,7 @@ "isPlayAudio": false }, { - "noteOrder": 3984, + "noteOrder": 7968, "time": 0.829977247402982, "position": { "x": 4, @@ -1643,7 +1643,7 @@ "isPlayAudio": false }, { - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.8449746876734023, "position": { "x": 4, @@ -1663,7 +1663,7 @@ "isPlayAudio": false }, { - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.8549789254756686, "position": { "x": 6, @@ -1683,7 +1683,7 @@ "isPlayAudio": false }, { - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.8649742468449558, "position": { "x": 6, @@ -1703,7 +1703,7 @@ "isPlayAudio": false }, { - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.874978484647222, "position": { "x": 6, @@ -1723,7 +1723,7 @@ "isPlayAudio": false }, { - "noteOrder": 4248, + "noteOrder": 8496, "time": 0.8849738060165093, "position": { "x": 6, @@ -1743,7 +1743,7 @@ "isPlayAudio": false }, { - "noteOrder": 4272, + "noteOrder": 8544, "time": 0.8899759249176424, "position": { "x": 4, @@ -1763,7 +1763,7 @@ "isPlayAudio": false }, { - "noteOrder": 4320, + "noteOrder": 8640, "time": 0.8999712462869298, "position": { "x": 6, @@ -1783,7 +1783,7 @@ "isPlayAudio": false }, { - "noteOrder": 4344, + "noteOrder": 8688, "time": 0.9049733651880629, "position": { "x": 6, @@ -1803,7 +1803,7 @@ "isPlayAudio": false }, { - "noteOrder": 4368, + "noteOrder": 8736, "time": 0.9099754840891959, "position": { "x": 4, @@ -1823,7 +1823,7 @@ "isPlayAudio": false }, { - "noteOrder": 4440, + "noteOrder": 8880, "time": 0.9249729243596164, "position": { "x": 6, @@ -1843,7 +1843,7 @@ "isPlayAudio": false }, { - "noteOrder": 4464, + "noteOrder": 8928, "time": 0.9299750432607495, "position": { "x": 4, @@ -1863,7 +1863,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349771621618825, "position": { "x": 4, @@ -1883,7 +1883,7 @@ "isPlayAudio": false }, { - "noteOrder": 4488, + "noteOrder": 8976, "time": 0.9349771621618825, "position": { "x": 6, @@ -1907,7 +1907,7 @@ { "lineGroupId": 41, "indexInLine": 1, - "noteOrder": 1056, + "noteOrder": 2112, "time": 0.21999515088708876, "position": { "x": 4, @@ -1930,7 +1930,7 @@ { "lineGroupId": 41, "indexInLine": 2, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 4, @@ -1953,7 +1953,7 @@ { "lineGroupId": 41, "indexInLine": 3, - "noteOrder": 1068, + "noteOrder": 2136, "time": 0.2224917521211659, "position": { "x": 6, @@ -1976,7 +1976,7 @@ { "lineGroupId": 41, "indexInLine": 4, - "noteOrder": 1074.0, + "noteOrder": 2142.0, "time": 0.2224917521211659, "position": { "x": 6, @@ -1999,7 +1999,7 @@ { "lineGroupId": 42, "indexInLine": 1, - "noteOrder": 1080, + "noteOrder": 2160, "time": 0.22499726978822188, "position": { "x": 4, @@ -2022,7 +2022,7 @@ { "lineGroupId": 42, "indexInLine": 2, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 4, @@ -2045,7 +2045,7 @@ { "lineGroupId": 42, "indexInLine": 3, - "noteOrder": 1092, + "noteOrder": 2184, "time": 0.22749387102229898, "position": { "x": 6, @@ -2068,7 +2068,7 @@ { "lineGroupId": 42, "indexInLine": 4, - "noteOrder": 1098.0, + "noteOrder": 2190.0, "time": 0.22749387102229898, "position": { "x": 6, @@ -2091,7 +2091,7 @@ { "lineGroupId": 53, "indexInLine": 1, - "noteOrder": 1344, + "noteOrder": 2688, "time": 0.27999382840174936, "position": { "x": 4, @@ -2114,7 +2114,7 @@ { "lineGroupId": 53, "indexInLine": 2, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 4, @@ -2137,7 +2137,7 @@ { "lineGroupId": 53, "indexInLine": 3, - "noteOrder": 1368, + "noteOrder": 2736, "time": 0.28499594730288247, "position": { "x": 6, @@ -2160,7 +2160,7 @@ { "lineGroupId": 53, "indexInLine": 4, - "noteOrder": 1374.0, + "noteOrder": 2742.0, "time": 0.28499594730288247, "position": { "x": 6, @@ -2183,7 +2183,7 @@ { "lineGroupId": 54, "indexInLine": 1, - "noteOrder": 1392, + "noteOrder": 2784, "time": 0.28998914977103674, "position": { "x": 6, @@ -2206,7 +2206,7 @@ { "lineGroupId": 54, "indexInLine": 2, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 6, @@ -2229,7 +2229,7 @@ { "lineGroupId": 54, "indexInLine": 3, - "noteOrder": 1416, + "noteOrder": 2832, "time": 0.2949912686721698, "position": { "x": 4, @@ -2252,7 +2252,7 @@ { "lineGroupId": 54, "indexInLine": 4, - "noteOrder": 1422.0, + "noteOrder": 2838.0, "time": 0.2949912686721698, "position": { "x": 4, @@ -2275,7 +2275,7 @@ { "lineGroupId": 55, "indexInLine": 1, - "noteOrder": 1440, + "noteOrder": 2880, "time": 0.2999933875733029, "position": { "x": 4, @@ -2298,7 +2298,7 @@ { "lineGroupId": 55, "indexInLine": 2, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 4, @@ -2321,7 +2321,7 @@ { "lineGroupId": 55, "indexInLine": 3, - "noteOrder": 1452, + "noteOrder": 2904, "time": 0.30248998880738, "position": { "x": 6, @@ -2344,7 +2344,7 @@ { "lineGroupId": 55, "indexInLine": 4, - "noteOrder": 1458.0, + "noteOrder": 2910.0, "time": 0.30248998880738, "position": { "x": 6, @@ -2367,7 +2367,7 @@ { "lineGroupId": 56, "indexInLine": 1, - "noteOrder": 1464, + "noteOrder": 2928, "time": 0.304995506474436, "position": { "x": 4, @@ -2390,7 +2390,7 @@ { "lineGroupId": 56, "indexInLine": 2, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 4, @@ -2413,7 +2413,7 @@ { "lineGroupId": 56, "indexInLine": 3, - "noteOrder": 1476, + "noteOrder": 2952, "time": 0.3074921077085131, "position": { "x": 6, @@ -2436,7 +2436,7 @@ { "lineGroupId": 56, "indexInLine": 4, - "noteOrder": 1482.0, + "noteOrder": 2958.0, "time": 0.3074921077085131, "position": { "x": 6, @@ -2459,7 +2459,7 @@ { "lineGroupId": 67, "indexInLine": 1, - "noteOrder": 1728, + "noteOrder": 3456, "time": 0.3599920650879635, "position": { "x": 4, @@ -2482,7 +2482,7 @@ { "lineGroupId": 67, "indexInLine": 2, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 4, @@ -2505,7 +2505,7 @@ { "lineGroupId": 67, "indexInLine": 3, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 4, @@ -2528,7 +2528,7 @@ { "lineGroupId": 68, "indexInLine": 1, - "noteOrder": 1776, + "noteOrder": 3552, "time": 0.36998738645725077, "position": { "x": 2, @@ -2551,7 +2551,7 @@ { "lineGroupId": 68, "indexInLine": 2, - "noteOrder": 1800, + "noteOrder": 3600, "time": 0.3749895053583839, "position": { "x": 7, @@ -2574,7 +2574,7 @@ { "lineGroupId": 76, "indexInLine": 1, - "noteOrder": 2016, + "noteOrder": 4032, "time": 0.41999074260262403, "position": { "x": 6, @@ -2597,7 +2597,7 @@ { "lineGroupId": 76, "indexInLine": 2, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.42248734383670117, "position": { "x": 6, @@ -2620,7 +2620,7 @@ { "lineGroupId": 76, "indexInLine": 3, - "noteOrder": 2028, + "noteOrder": 4056, "time": 0.42248734383670117, "position": { "x": 4, @@ -2643,7 +2643,7 @@ { "lineGroupId": 76, "indexInLine": 4, - "noteOrder": 2034.0, + "noteOrder": 4062.0, "time": 0.42248734383670117, "position": { "x": 4, @@ -2666,7 +2666,7 @@ { "lineGroupId": 77, "indexInLine": 1, - "noteOrder": 2040, + "noteOrder": 4080, "time": 0.42498394507077825, "position": { "x": 6, @@ -2689,7 +2689,7 @@ { "lineGroupId": 77, "indexInLine": 2, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.4274894627378343, "position": { "x": 6, @@ -2712,7 +2712,7 @@ { "lineGroupId": 77, "indexInLine": 3, - "noteOrder": 2052, + "noteOrder": 4104, "time": 0.4274894627378343, "position": { "x": 4, @@ -2735,7 +2735,7 @@ { "lineGroupId": 77, "indexInLine": 4, - "noteOrder": 2058.0, + "noteOrder": 4110.0, "time": 0.4274894627378343, "position": { "x": 4, @@ -2758,7 +2758,7 @@ { "lineGroupId": 80, "indexInLine": 1, - "noteOrder": 2112, + "noteOrder": 4224, "time": 0.43999030177417753, "position": { "x": 6, @@ -2781,7 +2781,7 @@ { "lineGroupId": 80, "indexInLine": 2, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.44248690300825466, "position": { "x": 6, @@ -2804,7 +2804,7 @@ { "lineGroupId": 80, "indexInLine": 3, - "noteOrder": 2124, + "noteOrder": 4248, "time": 0.44248690300825466, "position": { "x": 4, @@ -2827,7 +2827,7 @@ { "lineGroupId": 80, "indexInLine": 4, - "noteOrder": 2130.0, + "noteOrder": 4254.0, "time": 0.44248690300825466, "position": { "x": 4, @@ -2850,7 +2850,7 @@ { "lineGroupId": 81, "indexInLine": 1, - "noteOrder": 2136, + "noteOrder": 4272, "time": 0.4449835042423318, "position": { "x": 6, @@ -2873,7 +2873,7 @@ { "lineGroupId": 81, "indexInLine": 2, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.4474890219093878, "position": { "x": 6, @@ -2896,7 +2896,7 @@ { "lineGroupId": 81, "indexInLine": 3, - "noteOrder": 2148, + "noteOrder": 4296, "time": 0.4474890219093878, "position": { "x": 4, @@ -2919,7 +2919,7 @@ { "lineGroupId": 81, "indexInLine": 4, - "noteOrder": 2154.0, + "noteOrder": 4302.0, "time": 0.4474890219093878, "position": { "x": 4, @@ -2942,7 +2942,7 @@ { "lineGroupId": 84, "indexInLine": 1, - "noteOrder": 2208, + "noteOrder": 4416, "time": 0.4599898609457311, "position": { "x": 4, @@ -2965,7 +2965,7 @@ { "lineGroupId": 84, "indexInLine": 2, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624864621798082, "position": { "x": 4, @@ -2988,7 +2988,7 @@ { "lineGroupId": 84, "indexInLine": 3, - "noteOrder": 2220, + "noteOrder": 4440, "time": 0.4624864621798082, "position": { "x": 6, @@ -3011,7 +3011,7 @@ { "lineGroupId": 84, "indexInLine": 4, - "noteOrder": 2226.0, + "noteOrder": 4446.0, "time": 0.4624864621798082, "position": { "x": 6, @@ -3034,7 +3034,7 @@ { "lineGroupId": 85, "indexInLine": 1, - "noteOrder": 2232, + "noteOrder": 4464, "time": 0.46498306341388534, "position": { "x": 4, @@ -3057,7 +3057,7 @@ { "lineGroupId": 85, "indexInLine": 2, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 4, @@ -3080,7 +3080,7 @@ { "lineGroupId": 85, "indexInLine": 3, - "noteOrder": 2244, + "noteOrder": 4488, "time": 0.46748858108094127, "position": { "x": 6, @@ -3103,7 +3103,7 @@ { "lineGroupId": 85, "indexInLine": 4, - "noteOrder": 2250.0, + "noteOrder": 4494.0, "time": 0.46748858108094127, "position": { "x": 6, @@ -3126,7 +3126,7 @@ { "lineGroupId": 88, "indexInLine": 1, - "noteOrder": 2304, + "noteOrder": 4608, "time": 0.4799894201172846, "position": { "x": 4, @@ -3149,7 +3149,7 @@ { "lineGroupId": 88, "indexInLine": 2, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.48248602135136176, "position": { "x": 4, @@ -3172,7 +3172,7 @@ { "lineGroupId": 88, "indexInLine": 3, - "noteOrder": 2316, + "noteOrder": 4632, "time": 0.48248602135136176, "position": { "x": 6, @@ -3195,7 +3195,7 @@ { "lineGroupId": 88, "indexInLine": 4, - "noteOrder": 2322.0, + "noteOrder": 4638.0, "time": 0.48248602135136176, "position": { "x": 6, @@ -3218,7 +3218,7 @@ { "lineGroupId": 89, "indexInLine": 1, - "noteOrder": 2328, + "noteOrder": 4656, "time": 0.4849826225854389, "position": { "x": 4, @@ -3241,7 +3241,7 @@ { "lineGroupId": 89, "indexInLine": 2, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 4, @@ -3264,7 +3264,7 @@ { "lineGroupId": 89, "indexInLine": 3, - "noteOrder": 2340, + "noteOrder": 4680, "time": 0.4874881402524948, "position": { "x": 6, @@ -3287,7 +3287,7 @@ { "lineGroupId": 89, "indexInLine": 4, - "noteOrder": 2346.0, + "noteOrder": 4686.0, "time": 0.4874881402524948, "position": { "x": 6, @@ -3310,7 +3310,7 @@ { "lineGroupId": 108, "indexInLine": 1, - "noteOrder": 2784, + "noteOrder": 5568, "time": 0.5799872159750522, "position": { "x": 6, @@ -3333,7 +3333,7 @@ { "lineGroupId": 108, "indexInLine": 2, - "noteOrder": 2808, + "noteOrder": 5616, "time": 0.5849804184432065, "position": { "x": 6, @@ -3356,7 +3356,7 @@ { "lineGroupId": 110, "indexInLine": 1, - "noteOrder": 2832, + "noteOrder": 5664, "time": 0.5899825373443396, "position": { "x": 8, @@ -3379,7 +3379,7 @@ { "lineGroupId": 110, "indexInLine": 2, - "noteOrder": 2856, + "noteOrder": 5712, "time": 0.5949846562454727, "position": { "x": 8, @@ -3402,7 +3402,7 @@ { "lineGroupId": 112, "indexInLine": 1, - "noteOrder": 2880, + "noteOrder": 5760, "time": 0.5999867751466058, "position": { "x": 4, @@ -3425,7 +3425,7 @@ { "lineGroupId": 112, "indexInLine": 2, - "noteOrder": 2904, + "noteOrder": 5808, "time": 0.60497997761476, "position": { "x": 4, @@ -3448,7 +3448,7 @@ { "lineGroupId": 114, "indexInLine": 1, - "noteOrder": 2928, + "noteOrder": 5856, "time": 0.6099820965158931, "position": { "x": 2, @@ -3471,7 +3471,7 @@ { "lineGroupId": 114, "indexInLine": 2, - "noteOrder": 2952, + "noteOrder": 5904, "time": 0.6149842154170262, "position": { "x": 2, @@ -3494,7 +3494,7 @@ { "lineGroupId": 116, "indexInLine": 1, - "noteOrder": 2976, + "noteOrder": 5952, "time": 0.6199863343181593, "position": { "x": 6, @@ -3517,7 +3517,7 @@ { "lineGroupId": 116, "indexInLine": 2, - "noteOrder": 3000, + "noteOrder": 6000, "time": 0.6249795367863136, "position": { "x": 6, @@ -3540,7 +3540,7 @@ { "lineGroupId": 118, "indexInLine": 1, - "noteOrder": 3024, + "noteOrder": 6048, "time": 0.6299816556874466, "position": { "x": 8, @@ -3563,7 +3563,7 @@ { "lineGroupId": 118, "indexInLine": 2, - "noteOrder": 3048, + "noteOrder": 6096, "time": 0.6349837745885798, "position": { "x": 8, @@ -3586,7 +3586,7 @@ { "lineGroupId": 120, "indexInLine": 1, - "noteOrder": 3072, + "noteOrder": 6144, "time": 0.6399769770567341, "position": { "x": 4, @@ -3609,7 +3609,7 @@ { "lineGroupId": 120, "indexInLine": 2, - "noteOrder": 3096, + "noteOrder": 6192, "time": 0.6449790959578671, "position": { "x": 4, @@ -3632,7 +3632,7 @@ { "lineGroupId": 124, "indexInLine": 1, - "noteOrder": 3168, + "noteOrder": 6336, "time": 0.6599765362282874, "position": { "x": 6, @@ -3655,7 +3655,7 @@ { "lineGroupId": 124, "indexInLine": 2, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 6, @@ -3678,7 +3678,7 @@ { "lineGroupId": 126, "indexInLine": 1, - "noteOrder": 3216, + "noteOrder": 6432, "time": 0.6699807740305537, "position": { "x": 4, @@ -3701,7 +3701,7 @@ { "lineGroupId": 126, "indexInLine": 2, - "noteOrder": 3264, + "noteOrder": 6528, "time": 0.6799760953998409, "position": { "x": 4, @@ -3724,7 +3724,7 @@ { "lineGroupId": 135, "indexInLine": 1, - "noteOrder": 3456, + "noteOrder": 6912, "time": 0.719975213742948, "position": { "x": 6, @@ -3747,7 +3747,7 @@ { "lineGroupId": 135, "indexInLine": 2, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 6, @@ -3770,7 +3770,7 @@ { "lineGroupId": 135, "indexInLine": 3, - "noteOrder": 3468, + "noteOrder": 6936, "time": 0.7224807314100041, "position": { "x": 4, @@ -3793,7 +3793,7 @@ { "lineGroupId": 135, "indexInLine": 4, - "noteOrder": 3474.0, + "noteOrder": 6942.0, "time": 0.7224807314100041, "position": { "x": 4, @@ -3816,7 +3816,7 @@ { "lineGroupId": 136, "indexInLine": 1, - "noteOrder": 3480, + "noteOrder": 6960, "time": 0.7249773326440813, "position": { "x": 6, @@ -3839,7 +3839,7 @@ { "lineGroupId": 136, "indexInLine": 2, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 6, @@ -3862,7 +3862,7 @@ { "lineGroupId": 136, "indexInLine": 3, - "noteOrder": 3492, + "noteOrder": 6984, "time": 0.7274828503111371, "position": { "x": 4, @@ -3885,7 +3885,7 @@ { "lineGroupId": 136, "indexInLine": 4, - "noteOrder": 3498.0, + "noteOrder": 6990.0, "time": 0.7274828503111371, "position": { "x": 4, @@ -3908,7 +3908,7 @@ { "lineGroupId": 139, "indexInLine": 1, - "noteOrder": 3552, + "noteOrder": 7104, "time": 0.7399747729145015, "position": { "x": 6, @@ -3931,7 +3931,7 @@ { "lineGroupId": 139, "indexInLine": 2, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 6, @@ -3954,7 +3954,7 @@ { "lineGroupId": 139, "indexInLine": 3, - "noteOrder": 3564, + "noteOrder": 7128, "time": 0.7424802905815575, "position": { "x": 4, @@ -3977,7 +3977,7 @@ { "lineGroupId": 139, "indexInLine": 4, - "noteOrder": 3570.0, + "noteOrder": 7134.0, "time": 0.7424802905815575, "position": { "x": 4, @@ -4000,7 +4000,7 @@ { "lineGroupId": 140, "indexInLine": 1, - "noteOrder": 3576, + "noteOrder": 7152, "time": 0.7449768918156346, "position": { "x": 6, @@ -4023,7 +4023,7 @@ { "lineGroupId": 140, "indexInLine": 2, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.7474824094826906, "position": { "x": 6, @@ -4046,7 +4046,7 @@ { "lineGroupId": 140, "indexInLine": 3, - "noteOrder": 3588, + "noteOrder": 7176, "time": 0.7474824094826906, "position": { "x": 4, @@ -4069,7 +4069,7 @@ { "lineGroupId": 140, "indexInLine": 4, - "noteOrder": 3594.0, + "noteOrder": 7182.0, "time": 0.7474824094826906, "position": { "x": 4, @@ -4092,7 +4092,7 @@ { "lineGroupId": 143, "indexInLine": 1, - "noteOrder": 3648, + "noteOrder": 7296, "time": 0.7599743320860551, "position": { "x": 6, @@ -4115,7 +4115,7 @@ { "lineGroupId": 143, "indexInLine": 2, - "noteOrder": 3672, + "noteOrder": 7344, "time": 0.7649764509871881, "position": { "x": 6, @@ -4138,7 +4138,7 @@ { "lineGroupId": 145, "indexInLine": 1, - "noteOrder": 3696, + "noteOrder": 7392, "time": 0.7699785698883214, "position": { "x": 8, @@ -4161,7 +4161,7 @@ { "lineGroupId": 145, "indexInLine": 2, - "noteOrder": 3720, + "noteOrder": 7440, "time": 0.7749806887894544, "position": { "x": 8, @@ -4184,7 +4184,7 @@ { "lineGroupId": 147, "indexInLine": 1, - "noteOrder": 3744, + "noteOrder": 7488, "time": 0.7799738912576086, "position": { "x": 4, @@ -4207,7 +4207,7 @@ { "lineGroupId": 147, "indexInLine": 2, - "noteOrder": 3768, + "noteOrder": 7536, "time": 0.7849760101587417, "position": { "x": 4, @@ -4230,7 +4230,7 @@ { "lineGroupId": 149, "indexInLine": 1, - "noteOrder": 3792, + "noteOrder": 7584, "time": 0.7899781290598749, "position": { "x": 6, @@ -4253,7 +4253,7 @@ { "lineGroupId": 149, "indexInLine": 2, - "noteOrder": 3816, + "noteOrder": 7632, "time": 0.794980247961008, "position": { "x": 6, @@ -4276,7 +4276,7 @@ { "lineGroupId": 151, "indexInLine": 1, - "noteOrder": 3840, + "noteOrder": 7680, "time": 0.7999734504291621, "position": { "x": 4, @@ -4299,7 +4299,7 @@ { "lineGroupId": 151, "indexInLine": 2, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 4, @@ -4322,7 +4322,7 @@ { "lineGroupId": 151, "indexInLine": 3, - "noteOrder": 3852, + "noteOrder": 7704, "time": 0.8024789680962181, "position": { "x": 6, @@ -4345,7 +4345,7 @@ { "lineGroupId": 151, "indexInLine": 4, - "noteOrder": 3858.0, + "noteOrder": 7710.0, "time": 0.8024789680962181, "position": { "x": 6, @@ -4368,7 +4368,7 @@ { "lineGroupId": 152, "indexInLine": 1, - "noteOrder": 3864, + "noteOrder": 7728, "time": 0.8049755693302952, "position": { "x": 4, @@ -4391,7 +4391,7 @@ { "lineGroupId": 152, "indexInLine": 2, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 4, @@ -4414,7 +4414,7 @@ { "lineGroupId": 152, "indexInLine": 3, - "noteOrder": 3876, + "noteOrder": 7752, "time": 0.8074721705643724, "position": { "x": 6, @@ -4437,7 +4437,7 @@ { "lineGroupId": 152, "indexInLine": 4, - "noteOrder": 3882.0, + "noteOrder": 7758.0, "time": 0.8074721705643724, "position": { "x": 6, @@ -4460,7 +4460,7 @@ { "lineGroupId": 155, "indexInLine": 1, - "noteOrder": 3936, + "noteOrder": 7872, "time": 0.8199730096007157, "position": { "x": 4, @@ -4483,7 +4483,7 @@ { "lineGroupId": 155, "indexInLine": 2, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224785272677716, "position": { "x": 4, @@ -4506,7 +4506,7 @@ { "lineGroupId": 155, "indexInLine": 3, - "noteOrder": 3948, + "noteOrder": 7896, "time": 0.8224785272677716, "position": { "x": 6, @@ -4529,7 +4529,7 @@ { "lineGroupId": 155, "indexInLine": 4, - "noteOrder": 3954.0, + "noteOrder": 7902.0, "time": 0.8224785272677716, "position": { "x": 6, @@ -4552,7 +4552,7 @@ { "lineGroupId": 156, "indexInLine": 1, - "noteOrder": 3960, + "noteOrder": 7920, "time": 0.8249751285018487, "position": { "x": 4, @@ -4575,7 +4575,7 @@ { "lineGroupId": 156, "indexInLine": 2, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274717297359259, "position": { "x": 4, @@ -4598,7 +4598,7 @@ { "lineGroupId": 156, "indexInLine": 3, - "noteOrder": 3972, + "noteOrder": 7944, "time": 0.8274717297359259, "position": { "x": 6, @@ -4621,7 +4621,7 @@ { "lineGroupId": 156, "indexInLine": 4, - "noteOrder": 3978.0, + "noteOrder": 7950.0, "time": 0.8274717297359259, "position": { "x": 6, @@ -4644,7 +4644,7 @@ { "lineGroupId": 159, "indexInLine": 1, - "noteOrder": 4032, + "noteOrder": 8064, "time": 0.8399725687722692, "position": { "x": 6, @@ -4667,7 +4667,7 @@ { "lineGroupId": 159, "indexInLine": 2, - "noteOrder": 4056, + "noteOrder": 8112, "time": 0.8449746876734023, "position": { "x": 6, @@ -4690,7 +4690,7 @@ { "lineGroupId": 161, "indexInLine": 1, - "noteOrder": 4080, + "noteOrder": 8160, "time": 0.8499768065745353, "position": { "x": 8, @@ -4713,7 +4713,7 @@ { "lineGroupId": 161, "indexInLine": 2, - "noteOrder": 4104, + "noteOrder": 8208, "time": 0.8549789254756686, "position": { "x": 8, @@ -4736,7 +4736,7 @@ { "lineGroupId": 163, "indexInLine": 1, - "noteOrder": 4128, + "noteOrder": 8256, "time": 0.8599721279438227, "position": { "x": 4, @@ -4759,7 +4759,7 @@ { "lineGroupId": 163, "indexInLine": 2, - "noteOrder": 4152, + "noteOrder": 8304, "time": 0.8649742468449558, "position": { "x": 4, @@ -4782,7 +4782,7 @@ { "lineGroupId": 165, "indexInLine": 1, - "noteOrder": 4176, + "noteOrder": 8352, "time": 0.8699763657460888, "position": { "x": 4, @@ -4805,7 +4805,7 @@ { "lineGroupId": 165, "indexInLine": 2, - "noteOrder": 4200, + "noteOrder": 8400, "time": 0.874978484647222, "position": { "x": 4, @@ -4840,7 +4840,7 @@ "effectNodes": [], "trapNodes": [] }, - "BPM": 107, + "BPM": 214, "NPS": "2.39", "beatSubs": 1, "songStartOffset": 0.0, diff --git a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/info.json b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/info.json index c72b8625..1940a800 100644 --- a/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/info.json +++ b/tracks/DANCERUSH STARDOM (2022121400)/渚の小悪魔ラヴリィレイディオ (STARDOM Remix)/info.json @@ -3,7 +3,7 @@ "SongName": "\u2020\u6e1a\u306e\u5c0f\u60aa\u9b54\u30e9\u30f4\u30ea\u30a3\uff5e\u30ec\u30a4\u30c7\u30a3\u30aa\u2020 (STARDOM Remix)", "SongLength": "112.152472", "SongAuthorName": "kors k", - "Bpm": "107", + "Bpm": "214", "SongPath": "77.ogg", "CreateTicks": 636670368000000000, "CreateTime": "636670368000000000", -- 2.54.0